<div class="img-noblur">
<div class="img-blur"></div>
</div>
.img-noblur {
width:800px;
height: 500px;
background: url(...);
background-position: center;
background-size: cover;
position: relative;
}
.img-blur {
position: absolute;
filter: blur(10px);
width: 50%;
height: 500px;
top: 0;
right: 0;
}