Package | Description |
---|---|
net.sourceforge.jiu.color.analysis |
Contains classes that analyze pixel or sample values and thus determine
certain image properties.
|
net.sourceforge.jiu.color.data |
Provides classes to store images and data directly related to them.
|
net.sourceforge.jiu.color.io |
Classes to read and write color-related data from and to files.
|
net.sourceforge.jiu.color.quantization |
Classes to perform color image quantization, the reduction of the number of unique
colors in an image.
|
net.sourceforge.jiu.color.reduction |
Classes to convert images to a
lowercolor type. |
Modifier and Type | Field and Description |
---|---|
private Histogram3D |
Histogram3DCreator.hist |
Modifier and Type | Method and Description |
---|---|
Histogram3D |
Histogram3DCreator.getHistogram()
Returns the histogram initialized in this operation.
|
Modifier and Type | Method and Description |
---|---|
void |
Histogram3DCreator.setHistogram3D(Histogram3D histogram)
Sets the histogram object to be reused for this operation.
|
Modifier and Type | Class and Description |
---|---|
class |
NaiveHistogram3D
A class for a three-dimensional histogram that allocates one
int value
per counter at construction time. |
class |
OnDemandHistogram3D
A data class for a three-dimensional histogram, creating counters on demand only,
not allocating counters for all possible entries at the beginning.
|
Modifier and Type | Method and Description |
---|---|
static void |
HistogramSerialization.save(Histogram3D hist,
java.io.PrintStream out)
Saves a three-dimensional histogram to a text output stream.
|
Constructor and Description |
---|
RGBColorList(Histogram3D hist)
Creates a new list and initializes it with the argument histogram.
|
Modifier and Type | Field and Description |
---|---|
private Histogram3D |
AutoDetectColorType.hist |