blob: 97c893244dacab9273ad3d4db00364d5e5a6772b (
plain)
1
2
3
4
5
6
7
8
9
10
|
--- imagej-1.51k/work/source/ij/process/AutoThresholder.java.ori 2017-03-15 22:33:45.843801175 +0100
+++ imagej-1.51k/work/source/ij/process/AutoThresholder.java 2017-03-15 22:33:55.104053480 +0100
@@ -650,7 +650,6 @@
}
// The threshold is the minimum between the two peaks.
for (int i=1; i<255; i++) {
- //IJ.log(" "+i+" "+iHisto[i]);
if (iHisto[i-1] > iHisto[i] && iHisto[i+1] >= iHisto[i]) {
threshold = i;
break;
|