Hello,
i want to blur specific regions (ellipses) of an image with smooth edges. What i have done so far is:
- create mask for non blurring area (ellipse)
- create inverted mask for blurred area
- copy the original image and using bitwise_and with the mask get the specific areas
- blurred the image and using bitwise_and with inverted mask
- combined the to images
The edges are "hard" and i wanted to use a blur on the mask to feather the edges. But when i combine the blurred mask the edges become weired.
Is there a way to achieve this?
If code is needed ill provide.