imagej / ImageJ

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

the condition of guassian blur #239

Open Cute-Yang opened 5 months ago

Cute-Yang commented 5 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?