There is an error in the perform_convolution function the python module
perform_blurring.
On line 218, the array d should be converted to an integer type as its used for indexing.
Suggested fix:
d = np.floor((p-1)/2.).astype(int)
Thank you in advance!
There is an error in the
perform_convolutionfunction the python moduleperform_blurring.On line 218, the array
dshould be converted to an integer type as its used for indexing.Suggested fix:
Thank you in advance!