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)
| 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 |
no test coverage detected