(ImagePlus imp)
| 143 | } |
| 144 | |
| 145 | String getShortTitle(ImagePlus imp) { |
| 146 | String title = imp.getTitle(); |
| 147 | int index = title.lastIndexOf('.'); |
| 148 | if (index>0 && (title.length()-index)<=5) |
| 149 | title = title.substring(0, index); |
| 150 | return title; |
| 151 | } |
| 152 | |
| 153 | /** Returns the profile plot data. */ |
| 154 | public double[] getProfile() { |
no test coverage detected