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.
|
class |
SingleBandImage<Q extends Comparable<Q>,I extends SingleBandImage<Q,I>>
A base class for representing a single band image of any pixel type.
|
Modifier and Type | Class and Description |
---|---|
class |
FImage
Class representing a single-band floating-point image; that is an image where
each pixel is represented by a floating-point number.
|
Modifier and Type | Method and Description |
---|---|
I |
MultiBandImage.addInplace(SingleBandImage<?,?> im)
Adds to each pixel (in all bandS) the value of corresponding pixel in the
given image.
|
I |
MultiBandImage.divideInplace(SingleBandImage<?,?> im)
Divides the pixels in every band of this image by the corresponding pixel
in the given image.
|
I |
MultiBandImage.multiplyInplace(SingleBandImage<?,?> im)
Multiplies every pixel in this image by the corresponding pixel in the
given image.
|
I |
MultiBandImage.subtractInplace(SingleBandImage<?,?> im)
Subtracts from every pixel in every band the corresponding pixel value in
the given image.
|
Constructor and Description |
---|
MultiBandImage(ColourSpace colourSpace,
S... images)
Construct a multiband image using each of the given images as the bands
(in order).
|
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
ImageRenderer s that work on MultiBandImage
s. |