Package | Description |
---|---|
org.openimaj.image | |
org.openimaj.image.processing.convolution | |
org.openimaj.image.processing.morphology | |
org.openimaj.image.processor |
Modifier and Type | Method and Description |
---|---|
FImage |
FImage.process(KernelProcessor<Float,FImage> p)
Process this image with the given
KernelProcessor and return new
image containing the result. |
FImage |
FImage.process(KernelProcessor<Float,FImage> p,
boolean pad)
Process this image with the given
KernelProcessor and return new
image containing the result. |
I |
SingleBandImage.process(KernelProcessor<Q,I> p)
Process this image with the given
KernelProcessor and return new
image containing the result. |
I |
Image.process(KernelProcessor<Q,I> p)
Process this image with the given
KernelProcessor and return new
image containing the result. |
I |
SingleBandImage.process(KernelProcessor<Q,I> p,
boolean pad)
Process this image with the given
KernelProcessor and return new
image containing the result. |
I |
Image.process(KernelProcessor<Q,I> p,
boolean pad)
Process this image with the given
KernelProcessor and return new
image containing the result. |
I |
Image.processInplace(KernelProcessor<Q,I> p)
Process this image with the given
KernelProcessor side-affecting
this image. |
I |
Image.processInplace(KernelProcessor<Q,I> p,
boolean pad)
Process this image with the given
KernelProcessor side-affecting
this image. |
Modifier and Type | Class and Description |
---|---|
class |
FSobelMagnitude
Apply the sobel operator to an image.
|
Modifier and Type | Class and Description |
---|---|
class |
Dilate
Morphological dilation of connected components and (assumed binary) FImages.
|
class |
Erode
Morphological erosion of connected components and (assumed binary) FImages.
|
class |
HitAndMiss
Morphological hit-and-miss transform of connected
components and (assumed binary) FImages.
|
Modifier and Type | Interface and Description |
---|---|
interface |
SinglebandKernelProcessor<T,I extends Image<T,I>>
A KernelProcessor for single band images.
|