Get calibrated statistics for this image or ROI, including histogram, area, mean, min and max, standard deviation and mode. This code demonstrates how to get the area, mean max and median of the current image or selection: imp = IJ.getImage(); stats = imp.getStati
()
| 1199 | @see ij.process.ImageProcessor#getStats |
| 1200 | */ |
| 1201 | public ImageStatistics getStatistics() { |
| 1202 | return getStatistics(AREA+MEAN+STD_DEV+MODE+MIN_MAX+RECT); |
| 1203 | } |
| 1204 | |
| 1205 | /** This method returns complete calibrated statistics for this |
| 1206 | * image or ROI (with "Limit to threshold"), but it is up to 70 times |
no test coverage detected