This is a version of setThreshold() that uses raw (uncalibrated) values in the range 0-255 for 8-bit images and 0-65535 for 16-bit images and the "Red" LUT display mode.
(ImagePlus img, double lowerThreshold, double upperThreshold)
| 1536 | * images and the "Red" LUT display mode. |
| 1537 | */ |
| 1538 | public static void setRawThreshold(ImagePlus img, double lowerThreshold, double upperThreshold) { |
| 1539 | setRawThreshold(img, lowerThreshold, upperThreshold, null); |
| 1540 | } |
| 1541 | |
| 1542 | /** This is a version of setThreshold() that always uses raw (uncalibrated) values |
| 1543 | * in the range 0-255 for 8-bit images and 0-65535 for 16-bit images. |
no test coverage detected