| Package | Description |
|---|---|
| org.openimaj.image | |
| org.openimaj.image.renderer |
| Modifier and Type | Class and Description |
|---|---|
class |
MultiBandImage<T extends Comparable<T>,I extends MultiBandImage<T,I,S>,S extends SingleBandImage<T,S>>
A base class for multi-band images.
|
| Modifier and Type | Class and Description |
|---|---|
class |
MBFImage
A multiband floating-point image.
|
| Modifier and Type | Method and Description |
|---|---|
I |
MultiBandImage.addInplace(MultiBandImage<?,?,?> im)
Adds to each pixel the value of the corresponding pixel in the
corresponding band in the given image.
|
I |
MultiBandImage.divideInplace(MultiBandImage<?,?,?> im)
Divides the pixels in every band of this image by the corresponding pixel
in the corresponding band of the given image.
|
I |
MultiBandImage.multiplyInplace(MultiBandImage<?,?,?> im)
Multiplies every pixel in this image by the corresponding pixel in the
corresponding band in the given image.
|
I |
MultiBandImage.subtractInplace(MultiBandImage<?,?,?> im)
Subtracts from every pixel in every band the corresponding pixel value in
the corresponding band of the given image.
|
| Modifier and Type | Class and Description |
|---|---|
class |
MultiBandRenderer<T extends Comparable<T>,I extends MultiBandImage<T,I,S>,S extends SingleBandImage<T,S>>
Abstract base for
ImageRenderers that work on MultiBandImage
s. |