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

Method getLocalCalibration

ij/src/main/java/ij/ImagePlus.java:2885–2889  ·  view source on GitHub ↗

Returns this image's local calibration, ignoring the "Global" calibration flag.

()

Source from the content-addressed store, hash-verified

2883 /** Returns this image's local calibration, ignoring
2884 the "Global" calibration flag. */
2885 public Calibration getLocalCalibration() {
2886 if (calibration==null)
2887 calibration = new Calibration(this);
2888 return calibration;
2889 }
2890
2891 public void setIgnoreGlobalCalibration(boolean ignoreGlobalCalibration) {
2892 this.ignoreGlobalCalibration = ignoreGlobalCalibration;

Callers 5

setTypeMethod · 0.95
setColorMethod · 0.95
setHistogramMethod · 0.80
setImageMethod · 0.80
setCalibrationMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected