ij.gui.PlotMaker 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.gui;
import ij.ImagePlus;
/** Plugins that generate "Live" profile plots (Profiler and ZAxisProfiler)
displayed in PlotWindows implement this interface. */
public interface PlotMaker {
/** Returns a profile plot. */
public Plot getPlot();
/** Returns the ImagePlus used to generate the profile plots. */
public ImagePlus getSourceImage();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy