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 | Field and Description |
---|---|
private CoOccurrenceMatrix |
TextureAnalysis.matrix |
Modifier and Type | Method and Description |
---|---|
static CoOccurrenceMatrix |
MatrixCreator.createCoOccurrenceMatrix(Gray16Image image)
Create a co-occurrence matrix for a 16 bit grayscale image.
|
static CoOccurrenceMatrix |
MatrixCreator.createCoOccurrenceMatrix(Gray8Image image) |
static CoOccurrenceMatrix |
MatrixCreator.createCoOccurrenceMatrix(IntegerImage image,
int channelIndex) |
static CoOccurrenceMatrix |
MatrixCreator.createCoOccurrenceMatrix(Paletted8Image image) |
Modifier and Type | Method and Description |
---|---|
static TextureAnalysis |
TextureAnalysis.compute(CoOccurrenceMatrix matrix)
Create a TextureAnalysis operation with the results computed from a
given matrix.
|
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. |
static void |
MatrixCreator.initCoOccurrenceFrequencyMatrix(CoOccurrenceMatrix A,
CoOccurrenceFrequencyMatrix cofm)
Initializes a co-occurrence frequency matrix from a co-occurrence matrix.
|
static void |
MatrixCreator.initCoOccurrenceMatrix(IntegerImage image,
int channelIndex,
CoOccurrenceMatrix matrix)
Initializes a co-occurrence matrix from the input image, using the direct
four neighbor pixels.
|
void |
TextureAnalysis.setMatrix(CoOccurrenceMatrix m)
Sets the matrix to be used by this operation to the argument value.
|
Modifier and Type | Class and Description |
---|---|
class |
MemoryCoOccurrenceMatrix
This class stores a co-occurrence matrix, a two-dimensional array of int counters.
|
Modifier and Type | Method and Description |
---|---|
static void |
MatrixSerialization.save(CoOccurrenceMatrix matrix,
java.io.PrintStream out) |
Modifier and Type | Method and Description |
---|---|
private void |
MedianCutContourRemoval.findColorPairs(CoOccurrenceFrequencyMatrix matrix,
CoOccurrenceMatrix A) |