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
# # Since we are calling correlate, not convolve, revert the kernel
# # Since we are calling correlate, not convolve, revert the kernel
# weights = _gaussian_kernel1d(sigma, order, lw)[::-1]
weights = _gaussian_kernel1d(sigma, order, lw)
the kernel is not reverted or do I understand wrong?
The text was updated successfully, but these errors were encountered:
this was written a while ago and I do not remember exactly why the kernel was reverted at first, but in the released code the kernel is not reverted (the [::-1] is not in the uncommented line), and it is actually ndi.convolve that is used to build the pixel features with the kernel.
detectree/detectree/filters.py
Line 15 in 56e8f30
the kernel is not reverted or do I understand wrong?
The text was updated successfully, but these errors were encountered: