All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ij.ImageListener Maven / Gradle / Ivy

Go to download

ImageJ is an open source Java image processing program inspired by NIH Image for the Macintosh.

There is a newer version: 1.54m
Show newest version
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