See: Description
Interface | Description |
---|---|
CoOccurrenceFrequencyMatrix |
An interface for a co-occurrence frequency matrix.
|
CoOccurrenceMatrix |
An interface for co-occurrence matrices.
|
Histogram1D |
An interface for a one-dimensional histogram.
|
Histogram3D |
An interface for classes that store three-dimensional histograms.
|
Class | Description |
---|---|
ArrayHistogram1D |
A one-dimensional histogram data class that stores its counters in memory.
|
BaseCoOccurrenceFrequencyMatrix |
This abstract class encapsulates all data of a co-occurrence
frequency matrix except for the frequency values.
|
Histogram3DNode |
Internal data class for the on demand histogram.
|
MemoryCoOccurrenceFrequencyMatrix |
Implements the
CoOccurrenceFrequencyMatrix interface by using a large array
of values in memory. |
MemoryCoOccurrenceMatrix |
This class stores a co-occurrence matrix, a two-dimensional array of int counters.
|
NaiveHistogram3D |
A class for a three-dimensional histogram that allocates one
int value
per counter at construction time. |
OnDemandHistogram3D |
A data class for a three-dimensional histogram, creating counters on demand only,
not allocating counters for all possible entries at the beginning.
|
Provides classes to store images and data directly related to them.
The base interface for image data in JIU is PixelImage
.
The concept of a pixel image includes the following properties:
The interface IntegerImage
extends the
PixelImage
interface.
All sample values belonging to an object of a class implementing IntegerImage
are supposed to be integer values that can be stored in an int
value (a signed 32 bit value).