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

Method setDisplayRange

ij/src/main/java/ij/ImagePlus.java:3237–3240  ·  view source on GitHub ↗

Sets the display range of the current channel. With non-composite images it is identical to ip.setMinAndMax(min, max). Call updateAndDraw() to update the display.

(double min, double max)

Source from the content-addressed store, hash-verified

3235 * Call updateAndDraw() to update the display.
3236 */
3237 public void setDisplayRange(double min, double max) {
3238 if (ip!=null)
3239 ip.setMinAndMax(min, max);
3240 }
3241
3242 /** Returns the display range minimum of the current channel.
3243 * @see ij.process.ImageProcessor#getMin

Callers 15

updateVirtualSliceMethod · 0.95
resetDisplayRangeMethod · 0.95
runMethod · 0.95
runMethod · 0.95
zScaleMethod · 0.95
openMethod · 0.95
runMethod · 0.95
runMethod · 0.95
stackListMethod · 0.95
stackRangeMethod · 0.95
createNewStackMethod · 0.95
propagateMethod · 0.95

Calls 1

setMinAndMaxMethod · 0.45

Tested by

no test coverage detected