imagej / ImageJ

Public domain software for processing and analyzing scientific images
http://imagej.org
Other
577 stars 227 forks source link

the condition of guassian blur #239

Open Cute-Yang opened 9 months ago

Cute-Yang commented 9 months ago

guassian blur

if (i+kRadius>length) result += kernSum[length-i-1]*last;

hi,I think the code should be i + kRadius >= length,how do you think?