MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / getStatistics

Method getStatistics

ij/src/main/java/ij/ImagePlus.java:1201–1203  ·  view source on GitHub ↗

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

()

Source from the content-addressed store, hash-verified

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

Callers 8

getAllStatisticsMethod · 0.95
plotHistogramMethod · 0.95
getHistogramMethod · 0.95
setMeasurementsMethod · 0.95
showHistogramMethod · 0.95
RGBHistogramMethod · 0.95
drawMethod · 0.95
RGBHistogramMethod · 0.95

Calls 13

getBitDepthMethod · 0.95
resetRoiMethod · 0.95
isAreaMethod · 0.95
setRoiMethod · 0.95
sizeMethod · 0.95
getFloatPolygonMethod · 0.95
setHistogramSizeMethod · 0.95
getCalibrationMethod · 0.95
getTypeMethod · 0.95
getRawValueMethod · 0.95
setHistogramRangeMethod · 0.95
getStatisticsMethod · 0.95

Tested by

no test coverage detected