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
Thank you for your well-commented program. I learned a lot from them.
I have a question about a line of code. In ezsift.cpp, line 218 gaussian_coefs[i][j] = expf(tmp * tmp * -0.5f) * (1 + j / 1000.0f);
I notice you have multiplied the exponential with a factor (1 + j / 1000.0f). Why would we need that, it seems will cause the gaussian kernel asymmetric any more?
The text was updated successfully, but these errors were encountered:
Thank you for your well-commented program. I learned a lot from them.
I have a question about a line of code. In ezsift.cpp, line 218
gaussian_coefs[i][j] = expf(tmp * tmp * -0.5f) * (1 + j / 1000.0f);
I notice you have multiplied the exponential with a factor (1 + j / 1000.0f). Why would we need that, it seems will cause the gaussian kernel asymmetric any more?
The text was updated successfully, but these errors were encountered: