* @throws FormatIOException
*/
private BufferedImage open(ImagePlus imp) throws FormatIOException {
if (imp == null) {
LOGGER.error("Null ImagePlus Object.");
throw new FormatIOException("Null ImagePlus Object.");
}
ImageProcessor ip = imp.getProcessor();
int width = ip.getWidth();
int height = ip.getHeight();