
ij.ImageListener Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ij Show documentation
Show all versions of ij Show documentation
ImageJ is an open source Java image processing program inspired by NIH Image for the Macintosh.
package ij;
/** Plugins that implement this interface are notified when
an image is opened, closed or updated. The
Plugins/Utilities/Monitor Events command uses this interface.
*/
public interface ImageListener {
public void imageOpened(ImagePlus imp);
public void imageClosed(ImagePlus imp);
public void imageUpdated(ImagePlus imp);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy