Class OctreeColorQuantizer
- java.lang.Object
-
- net.sourceforge.jiu.ops.Operation
-
- net.sourceforge.jiu.ops.ImageToImageOperation
-
- net.sourceforge.jiu.color.quantization.OctreeColorQuantizer
-
- All Implemented Interfaces:
RGBQuantizer,RGBIndex
public class OctreeColorQuantizer extends ImageToImageOperation implements RGBIndex, RGBQuantizer
Performs the octree color quantization algorithm for a given RGB truecolor image. The quality is usually somewhat inferior to the results ofMedianCutQuantizer. Note that you can improve the quality by applying a dithering algorithm. SeeErrorDiffusionDithering.Usage example
This reduces some RGB24Image image to a 16 color paletted image:MemoryRGB24Image image = ...; // initialize OctreeColorQuantizer ocq = new OctreeColorQuantizer(); ocq.setInputImage(image); ocq.setPaletteSize(16); ocq.process(); PixelImage quantizedImage = ocq.getOutputImage();
Credits
- Since:
- 0.6.0
- Author:
- Marco Schmidt
-
-
Field Summary
Fields Modifier and Type Field Description private int[]blueValuesstatic intDEFAULT_PALETTE_SIZEThe default number of colors in the palette.private int[]greenValuesprivate Palettepaletteprivate intpaletteSizeprivate int[]redValuesprivate OctreeNoderoot-
Fields inherited from interface net.sourceforge.jiu.data.RGBIndex
INDEX_BLUE, INDEX_GREEN, INDEX_RED
-
-
Constructor Summary
Constructors Constructor Description OctreeColorQuantizer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description private intassignPaletteIndexValues(OctreeNode node, int index)If node is a leaf node, this method assigns palette index values and determines the representative color, otherwise it simply recursively calls itself for all child nodes.PalettecreatePalette()Return a Palette object with the list of colors to be used in the quantization process.voidinit()Creates an octree and prepares this quantizer so that colors can be mapped to palette index values.private intinitOctree()private voidinitPalette(OctreeNode node, Palette palette)intmap(int[] origRgb, int[] quantizedRgb)Maps an RGB colororigRgbto one of the colors in the color map; that color will be written toquantizedRgband its palette index will be returned.private voidmapImage()voidprocess()Initializes an octree, reduces it have as many leaves (or less) as the desired palette size and maps the original image to the newly-created palette.private voidpruneOctree()Reduces the octree until it has as many leaves (or less) than specified by thepaletteSizeargument in the constructor#OctreeColorQuantizer(int).voidsetPaletteSize(int newPaletteSize)-
Methods inherited from class net.sourceforge.jiu.ops.ImageToImageOperation
canInputAndOutputBeEqual, ensureImagesHaveSameResolution, ensureInputImageIsAvailable, ensureOutputImageResolution, getInputImage, getOutputImage, setCanInputAndOutputBeEqual, setInputImage, setOutputImage
-
Methods inherited from class net.sourceforge.jiu.ops.Operation
addProgressListener, addProgressListeners, getAbort, removeProgressListener, setAbort, setProgress, setProgress
-
-
-
-
Field Detail
-
DEFAULT_PALETTE_SIZE
public static final int DEFAULT_PALETTE_SIZE
The default number of colors in the palette. Will be used when no other value is specified viasetPaletteSize(int).- See Also:
- Constant Field Values
-
paletteSize
private int paletteSize
-
root
private OctreeNode root
-
palette
private Palette palette
-
redValues
private int[] redValues
-
greenValues
private int[] greenValues
-
blueValues
private int[] blueValues
-
-
Method Detail
-
assignPaletteIndexValues
private int assignPaletteIndexValues(OctreeNode node, int index)
If node is a leaf node, this method assigns palette index values and determines the representative color, otherwise it simply recursively calls itself for all child nodes. The updated index value is returned. It is increased whenever a leaf is assigned that index value.- Parameters:
node- the node of the octree that will itself (and its children) be processedindex- the current index in the palette index assignment procedure- Returns:
- updated index value; may have been increased while node or its child(ren) - were assigned index values
-
createPalette
public Palette createPalette()
Description copied from interface:RGBQuantizerReturn a Palette object with the list of colors to be used in the quantization process. That palette may be fixed or created specifically for a given input image.- Specified by:
createPalettein interfaceRGBQuantizer- Returns:
- Palette object for destination image
-
init
public void init() throws MissingParameterException, WrongParameterExceptionCreates an octree and prepares this quantizer so that colors can be mapped to palette index values. If you useprocess()you must not call this method. On the other hand, if you want to do the mapping yourself - maybe if you want to do mapping and dithering interchangeably - call this method first, then do the mapping yourself.- Throws:
MissingParameterException- if parameters like the input image are missingWrongParameterException- if parameters exist but are of the wrong type
-
initOctree
private int initOctree()
-
initPalette
private void initPalette(OctreeNode node, Palette palette)
-
map
public int map(int[] origRgb, int[] quantizedRgb)Maps an RGB colororigRgbto one of the colors in the color map; that color will be written toquantizedRgband its palette index will be returned.- Specified by:
mapin interfaceRGBQuantizer- Parameters:
origRgb- the color to be mapped to the best-possible counterpart in the palette; the array is indexed by the constants fromRGBIndexquantizedRgb- the resulting color from the palette will be written to this array; it is also indexed by the constants fromRGBIndex- Returns:
- index of the found color in the palette
-
mapImage
private void mapImage()
-
process
public void process() throws MissingParameterException, WrongParameterExceptionInitializes an octree, reduces it have as many leaves (or less) as the desired palette size and maps the original image to the newly-created palette.- Overrides:
processin classOperation- Throws:
MissingParameterException- if any mandatory parameter was not given to the operationWrongParameterException- if at least one of the input parameters was not initialized appropriately (values out of the valid interval, etc.)
-
pruneOctree
private void pruneOctree()
Reduces the octree until it has as many leaves (or less) than specified by thepaletteSizeargument in the constructor#OctreeColorQuantizer(int).
-
setPaletteSize
public void setPaletteSize(int newPaletteSize)
-
-