Package | Description |
---|---|
org.openimaj.image.processing.morphology |
Modifier and Type | Field and Description |
---|---|
static StructuringElement |
StructuringElement.BOX
Standard 3x3 box structuring element
|
static StructuringElement |
StructuringElement.CROSS
Standard 3x3 cross structuring element
|
static StructuringElement[] |
GolayAlphabet.E
The E elements of the Golay Alphabet
|
protected StructuringElement |
Dilate.element |
protected StructuringElement |
Erode.element |
protected StructuringElement[] |
HitAndMiss.elements |
static StructuringElement[] |
GolayAlphabet.H
The H elements of the Golay Alphabet
|
static StructuringElement |
StructuringElement.HPIT
Standard horizontal pit structuring element [x .
|
static StructuringElement[] |
GolayAlphabet.I
The I elements of the Golay Alphabet
|
static StructuringElement[] |
GolayAlphabet.L
The L elements of the Golay Alphabet
|
Modifier and Type | Method and Description |
---|---|
static StructuringElement |
StructuringElement.disk(int radius)
Build a disk shaped structuring element with the given radius.
|
static StructuringElement |
StructuringElement.parseElement(String ele,
int cx,
int cy)
Construct a structuring element from a @link{String} of the form produced
by @link{#toString()}.
|
Constructor and Description |
---|
Close(StructuringElement se)
Construct the close operator with the given structuring element
|
Dilate(StructuringElement se)
Construct the dilate operator with the given structuring element
|
Erode(StructuringElement se)
Construct the erode operator with the given structuring element
|
HitAndMiss(StructuringElement... ses)
Construct a hit and miss operator with the given
structuring elements.
|
Open(StructuringElement se)
Construct the open operator with the given structuring element
|
SequentialThin(int niter,
StructuringElement... se)
Construct the sequential thin operator with the given structuring elements
and number of iterations
|
SequentialThin(StructuringElement... se)
Construct the sequential thin operator with the given structuring elements
|
Skeleton(StructuringElement... se) |
Thicken(StructuringElement... se)
Construct the thickening operator with the given structuring element
|
Thin(StructuringElement... se)
Construct the thinning operator with the given structuring element
|