I have an RGB image and a binary mask of same dimensions. I want to blur only those portions of the RGB image where the value of mask is 255
(white). How to do this in OpenCV Python?
I tried implementing the method given in the answer of morotspaj in Smoothing Mat of float with mask but didn't quite get the result I was expecting. Can someone explain it?