Constructs an uninitialized ImagePlus.
()
| 175 | |
| 176 | /** Constructs an uninitialized ImagePlus. */ |
| 177 | public ImagePlus() { |
| 178 | title = (this instanceof CompositeImage)?"composite":"null"; |
| 179 | setID(); |
| 180 | } |
| 181 | |
| 182 | /** Constructs an ImagePlus from an Image or BufferedImage. The first |
| 183 | argument will be used as the title of the window that displays the image. |
nothing calls this directly
no test coverage detected