Sets the display range (minimum and maximum displayed pixel values) of the current image.
(double min, double max)
| 1461 | |
| 1462 | /** Sets the display range (minimum and maximum displayed pixel values) of the current image. */ |
| 1463 | public static void setMinAndMax(double min, double max) { |
| 1464 | setMinAndMax(getImage(), min, max, 7); |
| 1465 | } |
| 1466 | |
| 1467 | /** Sets the display range (minimum and maximum displayed pixel values) of the specified image. */ |
| 1468 | public static void setMinAndMax(ImagePlus img, double min, double max) { |
no test coverage detected