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.
|
Modifier and Type | Method and Description |
---|---|
static CoOccurrenceFrequencyMatrix |
MatrixCreator.createCoOccurrenceFrequencyMatrix(CoOccurrenceMatrix A)
Creates a new co-occurrence frequency with the same dimension as the argument co-occurrence
matrix, calls
MatrixCreator.initCoOccurrenceFrequencyMatrix(net.sourceforge.jiu.color.data.CoOccurrenceMatrix, net.sourceforge.jiu.color.data.CoOccurrenceFrequencyMatrix) with them to initialize the new matrix,
then returns it. |
Modifier and Type | Method and Description |
---|---|
static void |
MatrixCreator.initCoOccurrenceFrequencyMatrix(CoOccurrenceMatrix A,
CoOccurrenceFrequencyMatrix cofm)
Initializes a co-occurrence frequency matrix from a co-occurrence matrix.
|
Modifier and Type | Class and Description |
---|---|
class |
BaseCoOccurrenceFrequencyMatrix
This abstract class encapsulates all data of a co-occurrence
frequency matrix except for the frequency values.
|
class |
MemoryCoOccurrenceFrequencyMatrix
Implements the
CoOccurrenceFrequencyMatrix interface by using a large array
of values in memory. |
Modifier and Type | Method and Description |
---|---|
static void |
MatrixSerialization.save(CoOccurrenceFrequencyMatrix matrix,
java.io.PrintStream out) |
Modifier and Type | Method and Description |
---|---|
private void |
MedianCutContourRemoval.computeStatistics(CoOccurrenceFrequencyMatrix matrix)
Computes the mean and standard deviation (stddev) values and
from the argument matrix and initializes the mean / stddev
fields of this class with them.
|
private void |
MedianCutContourRemoval.findColorPairs(CoOccurrenceFrequencyMatrix matrix,
CoOccurrenceMatrix A) |