Package net.sourceforge.jiu.color
Interface YCbCrIndex
- All Known Implementing Classes:
PCDCodec
,PCDYCbCrConversion
public interface YCbCrIndex
This interface simply provides three integer constants as index
values for the three channels of an YCbCr image: gray,
blue chrominance and red chrominance.
The three values are guaranteed to lie in the interval 0 to 2.
Furthermore, all three values are different from each other, so
that the complete interval from 0 to 2 is used.
- Author:
- Marco Schmidt
- See Also:
-
Field Summary
Fields
-
Field Details
-
INDEX_Y
static final int INDEX_YIndex value for the luminance (gray) component.- See Also:
-
INDEX_CB
static final int INDEX_CBIndex value for the blue chrominance component.- See Also:
-
INDEX_CR
static final int INDEX_CRIndex value for the red chrominance component.- See Also:
-