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

Method setLut

ij/src/main/java/ij/ImagePlus.java:3477–3483  ·  view source on GitHub ↗

Assigns a LUT (lookup table) to this image. @see ij.io.Opener#openLut

(LUT lut)

Source from the content-addressed store, hash-verified

3475 * @see ij.io.Opener#openLut
3476 */
3477 public void setLut(LUT lut) {
3478 ImageProcessor ip2 = getProcessor();
3479 if (ip2!=null && lut!=null) {
3480 ip2.setLut(lut);
3481 setProcessor(ip2);
3482 }
3483 }
3484
3485 /** Installs a list of ROIs that will be drawn on this image as a non-destructive overlay.
3486 * @see ij.gui.Roi#setStrokeColor

Callers 6

zScaleMethod · 0.95
setImageMethod · 0.45
setSliceMethod · 0.45
setupMethod · 0.45
setChannelLutMethod · 0.45
setDisplayRangeMethod · 0.45

Calls 3

getProcessorMethod · 0.95
setLutMethod · 0.95
setProcessorMethod · 0.95

Tested by

no test coverage detected