Skip to content

Commit f75baf8

Browse files
author
jumpfunky
committed
Fix for getAreaConvexHull: The calibration was not used
1 parent 8cdca47 commit f75baf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/ij/blob/Blob.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -980,8 +980,8 @@ public double getAreaConvexHull(){
980980
Blob helpblob = new Blob(polyPoints, -1);
981981
ImagePlus imp = generateBlobImage(helpblob);
982982
areaConvexHull = imp.getStatistics().getHistogram()[0]*cal.pixelHeight*cal.pixelWidth;
983-
//areaConvexHull = getArea(polyPoints)*cal.pixelHeight*cal.pixelWidth;
984983
return areaConvexHull;
984+
985985
}
986986

987987
/**

0 commit comments

Comments
 (0)