File: PlotMaker.java

package info (click to toggle)
imagej 1.54g-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,520 kB
  • sloc: java: 132,209; sh: 286; xml: 255; makefile: 6
file content (15 lines) | stat: -rw-r--r-- 373 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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();

}