ij.plugin.filter
Class Analyzer

java.lang.Object
  extended by ij.plugin.filter.Analyzer
All Implemented Interfaces:
Measurements, PlugInFilter

public class Analyzer
extends java.lang.Object
implements PlugInFilter, Measurements

This plugin implements ImageJ's Analyze/Measure and Analyze/Set Measurements commands.


Field Summary
static java.awt.Color darkBlue
           
static int markWidth
           
static int precision
           
 
Fields inherited from interface ij.plugin.filter.PlugInFilter
DOES_16, DOES_32, DOES_8C, DOES_8G, DOES_ALL, DOES_RGB, DOES_STACKS, DONE, NO_CHANGES, NO_IMAGE_REQUIRED, NO_UNDO, ROI_REQUIRED, STACK_REQUIRED, SUPPORTS_MASKING
 
Fields inherited from interface ij.measure.Measurements
AREA, AREA_FRACTION, CENTER_OF_MASS, CENTROID, CIRCULARITY, ELLIPSE, FERET, INTEGRATED_DENSITY, INVERT_Y, KURTOSIS, LABELS, LIMIT, MAX_STANDARDS, MEAN, MEDIAN, MIN_MAX, MODE, PERIMETER, RECT, SKEWNESS, SLICE, STD_DEV
 
Constructor Summary
Analyzer()
           
Analyzer(ImagePlus imp)
          Constructs a new Analyzer using the specified ImagePlus object and the system-wide measurement options and results table.
Analyzer(ImagePlus imp, int measurements, ResultsTable rt)
          Construct a new Analyzer using an ImagePlus object and private measurement options and results table.
 
Method Summary
 void displayResults()
          Writes the last row in the results table to the ImageJ window.
static int getCounter()
          Returns the current measurement count.
static int getMeasurements()
           
static int getPrecision()
          Returns the number of digits displayed to the right of decimal point.
static ImagePlus getRedirectImage(ImagePlus currentImage)
          Returns the image selected in the "Redirect To:" popup menu of the Analyze/Set Measurements dialog or null if "None" is selected, the image was not found or the image is not the same size as currentImage.
static ResultsTable getResultsTable()
          Returns the ImageJ results table.
static float[] getUMeans()
          Returns an array containing the first 20 uncalibrated means.
static boolean isRedirectImage()
          Returns true if an image is selected in the "Redirect To:" popup menu of the Analyze/Set Measurements dialog box.
 java.lang.String n(double n)
          Converts a number to a formatted string with a tab at the end.
static boolean resetCounter()
          Sets the measurement counter to zero.
 void run(ImageProcessor ip)
          Filters use this method to process the image.
static void savePreferences(java.util.Properties prefs)
          Called once when ImageJ quits.
 void saveResults(ImageStatistics stats, Roi roi)
          Saves the measurements specified in the "Set Measurements" dialog, or by calling setMeasurments(), in the system results table.
static void setMeasurements(int measurements)
           
static void setPrecision(int decimalPlaces)
          Sets the number of digits displayed to the right of decimal point.
static void setUnsavedMeasurements(boolean b)
           
 int setup(java.lang.String arg, ImagePlus imp)
          This method is called once when the filter is loaded.
 void summarize()
           
 void updateHeadings()
          Updates the displayed column headings.
static double updateY(double y, int imageHeight)
          Returns an updated Y coordinate based on the current "Invert Y Coordinates" flag.
static int updateY(int y, int imageHeight)
          Returns an updated Y coordinate based on the current "Invert Y Coordinates" flag.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

darkBlue

public static java.awt.Color darkBlue

markWidth

public static int markWidth

precision

public static int precision
Constructor Detail

Analyzer

public Analyzer()

Analyzer

public Analyzer(ImagePlus imp)
Constructs a new Analyzer using the specified ImagePlus object and the system-wide measurement options and results table.


Analyzer

public Analyzer(ImagePlus imp,
                int measurements,
                ResultsTable rt)
Construct a new Analyzer using an ImagePlus object and private measurement options and results table.

Method Detail

setup

public int setup(java.lang.String arg,
                 ImagePlus imp)
Description copied from interface: PlugInFilter
This method is called once when the filter is loaded. 'arg', which may be blank, is the argument specified for this plugin in IJ_Props.txt. 'imp' is the currently active image. This method should return a flag word that specifies the filters capabilities.

Specified by:
setup in interface PlugInFilter

run

public void run(ImageProcessor ip)
Description copied from interface: PlugInFilter
Filters use this method to process the image. If the SUPPORTS_STACKS flag was set, it is called for each slice in a stack. ImageJ will lock the image before calling this method and unlock it when the filter is finished.

Specified by:
run in interface PlugInFilter

isRedirectImage

public static boolean isRedirectImage()
Returns true if an image is selected in the "Redirect To:" popup menu of the Analyze/Set Measurements dialog box.


getRedirectImage

public static ImagePlus getRedirectImage(ImagePlus currentImage)
Returns the image selected in the "Redirect To:" popup menu of the Analyze/Set Measurements dialog or null if "None" is selected, the image was not found or the image is not the same size as currentImage.


saveResults

public void saveResults(ImageStatistics stats,
                        Roi roi)
Saves the measurements specified in the "Set Measurements" dialog, or by calling setMeasurments(), in the system results table.


displayResults

public void displayResults()
Writes the last row in the results table to the ImageJ window.


updateHeadings

public void updateHeadings()
Updates the displayed column headings. Does nothing if the results table headings and the displayed headings are the same. Redisplays the results if the headings are different and the results table is not empty.


n

public java.lang.String n(double n)
Converts a number to a formatted string with a tab at the end.


summarize

public void summarize()

getCounter

public static int getCounter()
Returns the current measurement count.


resetCounter

public static boolean resetCounter()
Sets the measurement counter to zero. Displays a dialog that allows the user to save any existing measurements. Returns false if the user cancels the dialog.


setUnsavedMeasurements

public static void setUnsavedMeasurements(boolean b)

getMeasurements

public static int getMeasurements()

setMeasurements

public static void setMeasurements(int measurements)

savePreferences

public static void savePreferences(java.util.Properties prefs)
Called once when ImageJ quits.


getUMeans

public static float[] getUMeans()
Returns an array containing the first 20 uncalibrated means.


getResultsTable

public static ResultsTable getResultsTable()
Returns the ImageJ results table. This table should only be displayed in a the "Results" window.


getPrecision

public static int getPrecision()
Returns the number of digits displayed to the right of decimal point.


setPrecision

public static void setPrecision(int decimalPlaces)
Sets the number of digits displayed to the right of decimal point.


updateY

public static int updateY(int y,
                          int imageHeight)
Returns an updated Y coordinate based on the current "Invert Y Coordinates" flag.


updateY

public static double updateY(double y,
                             int imageHeight)
Returns an updated Y coordinate based on the current "Invert Y Coordinates" flag.