Click here to Skip to main content
15,880,725 members
Articles / Desktop Programming / MFC

CQuantizer

Rate me:
Please Sign up or sign in to vote.
4.69/5 (28 votes)
3 Sep 2003CPOL2 min read 151.3K   6.1K   56   17
Color quantization using the octree algorithm

Introduction

This article shows an implementation of the octree algorithm used to reduce the number of colors, finding the optimal palette of the image. The applications of the algorithm range from optimized drawing routines, to graphic tools, to file format conversion utilities.

For this purpose, I will use the CQuantizer class, developed in 1996-97 by Jeff Prosise, and described with two articles in the MSDN. The original code has been written to display images on 256-color display devices in the end of the 16-bit era; but nowadays some functions can be replaced, so I changed the memory allocation functions and removed the need of a device context, to make the class a bit more portable.

What's new

In this update, there are only two minor changes. The first is a small bug-fix in CQuantizer::ProcessImage which causes strange results in small images (let's say icons) with 8 bits per pixel or less, when you try to reduce the number of colors down to 16 or less.

The second change is an improvement to avoid a limit of the octree algorithm: the reduction comes on the leafs of the tree, each of them hold 8 colors, and for less than 16 colors, there are only 2 leafs; so the reduction for a really small number of colors needs a different process. This has been implemented in CQuantizer::SetColorTable, with the help of some additional information gathered by CQuantizer::GetPaletteColors.

original true-color image

reduction to 16 colors

reduction to 8 colors

reduction to 4 colors
all images are © Jairo Boudewyn [^]

The images above show some good results, achievable when the chromatic contents are not very complex, but don't pretend the same quality for all the kinds of images.

Class Members & Operations

CQuantizer (UINT nMaxColors, UINT nColorBits)Construction and initialization. nMaxColors = maximum number of colors permitted in the palette. nColorBits = number of significant bits in each 8-bit color component. For example, nColorBits = 6 tells the algorithm to ignore the lower two bits of each color component. A setting of 5 or 6 generally produces a palette that is pleasing to the eye while keeping the octree's memory requirements to a reasonable minimum. nColorBits = 8 is required for reduction to 16 colors or less, when the precision is very important.
ProcessImage (HANDLE hImage)Processes the image to find the optimal palette. hImage = DIB image handle.
SetColorTable (RGBQUAD* prgb)Transfers the optimized palette to a RGBQUAD structure. The size of the structure must be at least nMaxColors.
GetColorCount ()Returns the number of colors found in the optimized palette.

Example

This example shows an application of CQuantizer with the CxImage class:

C++
CxImage image("test.bmp",CXIMAGE_FORMAT_BMP);

CQuantizer q(16,8);
q.ProcessImage(image.GetDIB());
RGBQUAD* ppal=(RGBQUAD*)malloc(16*sizeof(RGBQUAD));
q.SetColorTable(ppal);
image.DecreaseBpp(4,ppal);
free(ppal);

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Italy Italy
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionIs there any way to quantize without dithering? Pin
JohnnyLightwave7-Feb-11 1:19
JohnnyLightwave7-Feb-11 1:19 
AnswerRe: Is there any way to quantize without dithering? Pin
Davide Pizzolato7-Feb-11 6:51
Davide Pizzolato7-Feb-11 6:51 
QuestionBetter than CxImage::Decrease? Pin
are_all_nicks_taken_or_what30-Nov-09 3:03
are_all_nicks_taken_or_what30-Nov-09 3:03 
AnswerRe: Better than CxImage::Decrease? Pin
Davide Pizzolato30-Nov-09 6:35
Davide Pizzolato30-Nov-09 6:35 
GeneralRe: Better than CxImage::Decrease? Pin
are_all_nicks_taken_or_what2-Dec-09 5:39
are_all_nicks_taken_or_what2-Dec-09 5:39 
Generalreally needs help .. can u provide Dll Pin
Pravat Maskey7-Mar-07 23:46
Pravat Maskey7-Mar-07 23:46 
Questionocttree-color-quantization in .net? Pin
benhold15-Nov-04 23:29
benhold15-Nov-04 23:29 
GeneralImprovements Pin
baze`4-Sep-03 23:17
baze`4-Sep-03 23:17 
GeneralRe: Improvements Pin
Davide Pizzolato5-Sep-03 12:12
Davide Pizzolato5-Sep-03 12:12 
GeneralCool Pin
NormDroid4-Sep-03 21:01
professionalNormDroid4-Sep-03 21:01 
GeneralNice Pin
Chris Maunder4-Sep-03 16:49
cofounderChris Maunder4-Sep-03 16:49 
Generalnumber of colors Pin
2-Jun-02 19:03
suss2-Jun-02 19:03 
Generalhelp Pin
1-Feb-02 22:22
suss1-Feb-02 22:22 
Questionhelp? Pin
31-Jan-02 17:45
suss31-Jan-02 17:45 
AnswerRe: help? Pin
Davide Pizzolato31-Jan-02 19:57
Davide Pizzolato31-Jan-02 19:57 
GeneralOctree Pin
17-Jan-02 14:34
suss17-Jan-02 14:34 
Can you describe the "octree" arithmetic for detailConfused | :confused:
GeneralRe: Octree Pin
Davide Pizzolato17-Jan-02 20:24
Davide Pizzolato17-Jan-02 20:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.