Can gSig be an even Number ? #1237
-
Hello, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
how about gSig_filt ? |
Beta Was this translation helpful? Give feedback.
-
All the We use opencv for gaussian blurring. The params are discussed here: Their Some places in the code |
Beta Was this translation helpful? Give feedback.
gSig
andgsig_filt
can be even,gSiz
is odd. But even if you don't make it odd, the code will force it to be odd on the back end.All the
sig
params are gaussian filter sigma (standard deviation) parameters. gSiz is a bit all over the place in the code, but in the context of initialization it is the size in pixels of the gaussian kernel that you convolve the images with -- you basically want to be sure that the kernel is large enough to contain all the energy in the convolution kernel.We use opencv for gaussian blurring. The params are discussed here:
https://docs.opencv.org/4.x/d4/d86/group__imgproc__filter.html#gaabe8c836e97159a9193fb0b11ac52cf1
Their
ksize
is ourgSiz
. TheirsigmaX
and…