()
| 3330 | } |
| 3331 | |
| 3332 | void getMinAndMax() { |
| 3333 | Variable min = getFirstVariable(); |
| 3334 | Variable max = getLastVariable(); |
| 3335 | ImagePlus imp = getImage(); |
| 3336 | double v1 = imp.getDisplayRangeMin(); |
| 3337 | double v2 = imp.getDisplayRangeMax(); |
| 3338 | Calibration cal = imp.getCalibration(); |
| 3339 | v1 = cal.getCValue(v1); |
| 3340 | v2 = cal.getCValue(v2); |
| 3341 | min.setValue(v1); |
| 3342 | max.setValue(v2); |
| 3343 | } |
| 3344 | |
| 3345 | void selectImage() { |
| 3346 | interp.getLeftParen(); |
no test coverage detected