Copies the calibration of the specified image to this image.
(ImagePlus imp)
| 2800 | |
| 2801 | /** Copies the calibration of the specified image to this image. */ |
| 2802 | public void copyScale(ImagePlus imp) { |
| 2803 | if (imp!=null && globalCalibration==null) |
| 2804 | setCalibration(imp.getCalibration()); |
| 2805 | } |
| 2806 | |
| 2807 | /** Used internally. */ |
| 2808 | public void copyAttributes(ImagePlus imp) { |
no test coverage detected