You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Gaussian blur : Most common blur. We prioritize the pixels in the middle here. The further away we get from the pixel of interest (the middle one), the lesser weights the pixels will have. (while all pixel has same value in mean blur)
eg :
1 2 1
2 4 2
1 2 1
Sobel operator : It's used to find the edges in an image.