Squiz Matrix
4.12.2
|
Public Member Functions | |
int | setup (String arg, ImagePlus imp) |
void | run (ImageProcessor ip) |
void | clear (ImageProcessor ip) |
void | fill (ImageProcessor ip) |
void | draw (ImageProcessor ip) |
void | label (ImageProcessor ip) |
synchronized void | clearOutside (ImageProcessor ip) |
void | makeMask (ImageProcessor ip, Rectangle r) |
Additional Inherited Members | |
![]() | |
int | DOES_8G = 1 |
int | DOES_8C = 2 |
int | DOES_16 = 4 |
int | DOES_32 = 8 |
int | DOES_RGB = 16 |
int | DOES_ALL = DOES_8G+DOES_8C+DOES_16+DOES_32+DOES_RGB |
int | DOES_STACKS = 32 |
int | SUPPORTS_MASKING = 64 |
int | NO_CHANGES = 128 |
int | NO_UNDO = 256 |
int | NO_IMAGE_REQUIRED = 512 |
int | ROI_REQUIRED = 1024 |
int | STACK_REQUIRED = 2048 |
int | DONE = 4096 |
![]() | |
static final int | AREA =1 |
static final int | MEAN =2 |
static final int | STD_DEV =4 |
static final int | MODE =8 |
static final int | MIN_MAX =16 |
static final int | CENTROID =32 |
static final int | CENTER_OF_MASS =64 |
static final int | PERIMETER =128 |
static final int | LIMIT = 256 |
static final int | RECT =512 |
static final int | LABELS =1024 |
static final int | ELLIPSE =2048 |
static final int | INVERT_Y =4096 |
static final int | CIRCULARITY =8192 |
static final int | FERET =16384 |
static final int | MAX_STANDARDS = 20 |
This plugin implements ImageJ's Fill, Clear, Clear Outside and Draw commands.
Definition at line 9 of file Filler.java.
|
inline |
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.
Implements PlugInFilter.
Definition at line 44 of file Filler.java.
|
inline |
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.
Implements PlugInFilter.
Definition at line 18 of file Filler.java.