Sets the lower and upper threshold levels and displays the image using red to highlight thresholded pixels. May not work correctly on 16 and 32 bit images unless the display range has been reset using IJ.resetMinAndMax().
(double lowerThreshold, double upperThresold)
| 1504 | 16 and 32 bit images unless the display range has been reset using IJ.resetMinAndMax(). |
| 1505 | */ |
| 1506 | public static void setThreshold(double lowerThreshold, double upperThresold) { |
| 1507 | setThreshold(lowerThreshold, upperThresold, null); |
| 1508 | } |
| 1509 | |
| 1510 | /** Sets the lower and upper threshold levels and displays the image using |
| 1511 | the specified <code>displayMode</code> ("Red", "Black & White", "Over/Under" or "No Update"). */ |
no test coverage detected