Assigns a LUT (lookup table) to this image. @see ij.io.Opener#openLut
(LUT lut)
| 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 |
no test coverage detected