|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectij.plugin.filter.MaximumFinder
This ImageJ plug-in filter creates a mask where the local maxima of the current image are marked (255; unmarked pixels 0). The plug-in can also create watershed-segmented particles (assume a landscape of inverted heights: maxima of the images are now water sinks. For each point in the image, the sink that the water goes to determines which particle it belongs to. Pixels with a level below the lower threshold can be left unprocessed. This plugin works with ROIs, including non-rectangular ROIs. Since this plug-in creates a separate output image it processes only single images or slices, no stacks. version 09-Nov-2006 Michael Schmid version 21-Nov-2006 Wayne Rasband. Adds "Display Point Selection" option and "Count" output type. version 28-May-2007 Michael Schmid. Preview added, bugfix: minima of calibrated images, uses Arrays.sort (Java2 required)
Field Summary | |
static int |
COUNT
Do not create an image, just count maxima and add count to Results table |
static int |
IN_TOLERANCE
Output type all points around the maximum within the tolerance |
static int |
POINT_SELECTION
Do not create image, only mark points |
static int |
SEGMENTED
Output type watershed-segmented image |
static int |
SINGLE_POINTS
Output type single points |
Fields inherited from interface ij.plugin.filter.ExtendedPlugInFilter |
KEEP_PREVIEW |
Fields inherited from interface ij.plugin.filter.PlugInFilter |
CONVERT_TO_FLOAT, DOES_16, DOES_32, DOES_8C, DOES_8G, DOES_ALL, DOES_RGB, DOES_STACKS, DONE, FINAL_PROCESSING, NO_CHANGES, NO_IMAGE_REQUIRED, NO_UNDO, PARALLELIZE_STACKS, ROI_REQUIRED, SNAPSHOT, STACK_REQUIRED, SUPPORTS_MASKING |
Constructor Summary | |
MaximumFinder()
|
Method Summary | |
boolean |
dialogItemChanged(GenericDialog gd,
java.awt.AWTEvent e)
Read the parameters (during preview or after showing the dialog) |
ByteProcessor |
findMaxima(ImageProcessor ip,
double tolerance,
double threshold,
int outputType,
boolean excludeOnEdges,
boolean isEDM)
Here the processing is done: Find the maxima of an image (does not find minima) |
void |
run(ImageProcessor ip)
The plugin is inferred from ImageJ by this method |
void |
setNPasses(int nPasses)
unused method required by interface ExtendedPlugInFilter |
int |
setup(java.lang.String arg,
ImagePlus imp)
Method to return types supported |
int |
showDialog(ImagePlus imp,
java.lang.String command,
PlugInFilterRunner pfr)
This method is called after setup(arg, imp) unless the
DONE flag has been set. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public static final int SINGLE_POINTS
public static final int IN_TOLERANCE
public static final int SEGMENTED
public static final int POINT_SELECTION
public static final int COUNT
Constructor Detail |
public MaximumFinder()
Method Detail |
public int setup(java.lang.String arg, ImagePlus imp)
setup
in interface PlugInFilter
arg
- Not used by this plugin-filterimp
- The image to be filtered
public int showDialog(ImagePlus imp, java.lang.String command, PlugInFilterRunner pfr)
ExtendedPlugInFilter
setup(arg, imp)
unless the
DONE
flag has been set.
showDialog
in interface ExtendedPlugInFilter
imp
- The active image already passed in the
setup(arg, imp)
call. It will be null, however, if
the NO_IMAGE_REQUIRED
flag has been set.command
- The command that has led to the invocation of
the plugin-filter. Useful as a title for the dialog.pfr
- The PlugInFilterRunner calling this plugin-filter.
It can be passed to a GenericDialog by addPreviewCheckbox
to enable preview by calling the run(ip)
method of this
plugin-filter. pfr
can be also used later for calling back
the PlugInFilterRunner, e.g., to obtain the slice number
currently processed by run(ip)
.
PlugInFilter
and
ExtendedPlugInFilter
.public boolean dialogItemChanged(GenericDialog gd, java.awt.AWTEvent e)
dialogItemChanged
in interface DialogListener
e
- The event that has been generated by the user action in the dialog.
Note that e
is null
if the
dialogItemChanged method is called after the user has pressed the
OK button or if the GenericDialog has read its parameters from a
macro.gd
- A reference to the GenericDialog.
public void setNPasses(int nPasses)
setNPasses
in interface ExtendedPlugInFilter
public void run(ImageProcessor ip)
run
in interface PlugInFilter
ip
- The image where maxima (or minima) should be foundpublic ByteProcessor findMaxima(ImageProcessor ip, double tolerance, double threshold, int outputType, boolean excludeOnEdges, boolean isEDM)
ip
- The input imagetolerance
- Height tolerance: maxima are accepted only if protruding more than this value from the ridge to a higher maximumthreshold
- minimum height of a maximum (uncalibrated); for no minimum height set it to ImageProcessor.NO_THRESHOLDoutputType
- What to mark in output image: SINGLE_POINTS, MAXIMA_EXACT, IN_TOLERANCE or SEGMENTEDexcludeOnEdges
- Whether to exclude edge maximaisEDM
- Whether the image is a 16-bit Euclidian Distance Map
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |