NoLand'sMan
NoLand'sMan

Reputation: 574

kernel size of 0,0 in cv gaussian blur?

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

Answers (1)

Peyman habibi
Peyman habibi

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

Related Questions