Package | Description |
---|---|
net.sourceforge.jiu.color.adjustment |
Contains operations that modify pixel colors independent from other pixels.
|
net.sourceforge.jiu.color.analysis |
Contains classes that analyze pixel or sample values and thus determine
certain image properties.
|
net.sourceforge.jiu.color.reduction |
Classes to convert images to a
lowercolor type. |
net.sourceforge.jiu.data |
Provides classes to store images and data directly related to them.
|
net.sourceforge.jiu.gui.awt |
Classes to interoperate with Java's first GUI toolkit, the AWT (Abstract Windowing Toolkit).
|
Modifier and Type | Method and Description |
---|---|
private void |
HueSaturationValue.process(RGBIntegerImage in,
RGBIntegerImage out) |
Modifier and Type | Method and Description |
---|---|
private void |
MeanDifference.process(RGBIntegerImage image1,
RGBIntegerImage image2) |
Modifier and Type | Method and Description |
---|---|
private boolean |
AutoDetectColorType.isRgbGray(RGBIntegerImage in)
Returns if the input RGB image can be losslessly converted to
a grayscale image.
|
private void |
RGBToGrayConversion.process(RGBIntegerImage in,
GrayIntegerImage out) |
Modifier and Type | Interface and Description |
---|---|
interface |
RGB24Image
An empty interface for RGB truecolor images with integer samples
that are each eight bits large (thus, 24 bits per pixel).
|
interface |
RGB48Image
An empty interface for RGB truecolor images with integer samples
that are each sixteen bits large (thus, 48 bits per pixel).
|
Modifier and Type | Class and Description |
---|---|
class |
MemoryRGB24Image
A class to store 24 bit RGB truecolor images in memory.
|
class |
MemoryRGB48Image
A class to store 48 bit RGB truecolor images in memory.
|
Modifier and Type | Class and Description |
---|---|
class |
BufferedRGB24Image
A bridge class to use
BufferedImage objects (class defined
in the standard runtime library, package java.awt.image ) as
RGB24Image objects within JIU. |