()
| 6200 | } |
| 6201 | |
| 6202 | void setMinAndMax() { |
| 6203 | double min = getFirstArg(); |
| 6204 | double max = getNextArg(); |
| 6205 | int channels = 7; |
| 6206 | if (interp.nextToken()==',') { |
| 6207 | channels = (int)getLastArg(); |
| 6208 | if (getImage().getBitDepth()!=24) |
| 6209 | interp.error("RGB image required"); |
| 6210 | } else |
| 6211 | interp.getRightParen(); |
| 6212 | IJ.setMinAndMax(min, max, channels); |
| 6213 | resetImage(); |
| 6214 | } |
| 6215 | |
| 6216 | String debug() { |
| 6217 | IJ.protectStatusBar(false); |
no test coverage detected