Please help me implement Surface blur (like Photoshop) in OpenCV, Python. I spent a lot of time to searching it, but I found nothing.
Please help me implement Surface blur (like Photoshop) in OpenCV, Python. I spent a lot of time to searching it, but I found nothing.
2
Answers
Try
cv2.filter2D
functionAccording to the description given here of the surface blur filter, you can use bilateral filtering.
I’m qouting from the above link.
Also check here and here for additional details and this opencv tutorial on filtering.
In the example below, I’m using the image given in the shellandslate site.
Result: