Package | Description |
---|---|
org.openimaj.image | |
org.openimaj.image.processing.algorithm | |
org.openimaj.image.processor |
Modifier and Type | Method and Description |
---|---|
I |
Image.process(PixelProcessor<Q> p)
Process this image with the given
PixelProcessor and return a new
image containing the result. |
FImage |
FImage.processInplace(PixelProcessor<Float> p)
Process this image with the given
PixelProcessor side-affecting
this image. |
I |
Image.processInplace(PixelProcessor<Q> p)
Process this image with the given
PixelProcessor side-affecting
this image. |
I |
Image.processMasked(FImage mask,
PixelProcessor<Q> p)
Process this image with the given
PixelProcessor only affecting
those pixels where the mask is non-zero. |
I |
Image.processMaskedInplace(FImage mask,
PixelProcessor<Q> p)
Process this image with the given
PixelProcessor , only affecting
those pixels where the mask is non-zero. |
Modifier and Type | Class and Description |
---|---|
class |
GammaCorrection
Class to perform Gamma correction on a grey-level image.
|
class |
Pow
Process pixels by raising there value to a value
|
Modifier and Type | Interface and Description |
---|---|
interface |
SinglebandPixelProcessor<Q>
A pixel processor for single band images.
|