Reputation: 574
I am trying to understand what setting ksize = 0,0
in cv2.GaussianBlur()
does. In the documentation, it says
they can be zero's and then they are computed from
sigma
What exactly does this mean?
Upvotes: 3
Views: 2240
Reputation: 810
In gaussian filter, we have to determine sigma or standarad deviation of filter. Sigma determines width of filter(say size of filter). The larger sigma, the more blure image. There are two way to specify width of filter, one is window size and second is sigma. With second way, size of window can be determined mathmatically. detaield info in this link: detailed
Upvotes: 2