Click here to Skip to main content
Licence CPOL
First Posted 5 Oct 2001
Views 111,164
Downloads 4,498
Bookmarked 47 times

CQuantizer

By | 3 Sep 2003 | Article
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:

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)

About the Author

Davide Pizzolato



Italy Italy

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionIs there any way to quantize without dithering? PinmemberJohnnyLightwave1:19 7 Feb '11  
AnswerRe: Is there any way to quantize without dithering? PinmemberDavide Pizzolato6:51 7 Feb '11  
QuestionBetter than CxImage::Decrease? Pinmemberare_all_nicks_taken_or_what3:03 30 Nov '09  
AnswerRe: Better than CxImage::Decrease? PinmemberDavide Pizzolato6:35 30 Nov '09  
GeneralRe: Better than CxImage::Decrease? Pinmemberare_all_nicks_taken_or_what5:39 2 Dec '09  
Generalreally needs help .. can u provide Dll Pinmemberpravat_sagun23:46 7 Mar '07  
Questionocttree-color-quantization in .net? Pinmemberbenhold23:29 15 Nov '04  
GeneralImprovements Pinmemberbaze`23:17 4 Sep '03  
GeneralRe: Improvements PinmemberDavide Pizzolato12:12 5 Sep '03  
GeneralCool PinmemberNormski21:01 4 Sep '03  
GeneralNice PinadminChris Maunder16:49 4 Sep '03  
Generalnumber of colors PinmemberAnonymous19:03 2 Jun '02  
Generalhelp PinmemberJordancode22:22 1 Feb '02  
Questionhelp? PinmemberJordancode17:45 31 Jan '02  
AnswerRe: help? PinmemberDavide Pizzolato19:57 31 Jan '02  
GeneralOctree Pinmemberjodon14:34 17 Jan '02  
GeneralRe: Octree PinmemberDavide Pizzolato20:24 17 Jan '02  
http://www.mactech.com/articles/develop/issue_10/Good_Othmer_final.html
http://alpha.mini.pw.edu.pl/~kotowski/Grafika/Light/Index.html

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

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120528.1 | Last Updated 4 Sep 2003
Article Copyright 2001 by Davide Pizzolato
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid