blob: a7fe9afaf148b330b70e2518045690826426ba85 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% QQQ U U AAA N N TTTTT IIIII ZZZZZ EEEEE %
7% Q Q U U A A NN N T I ZZ E %
8% Q Q U U AAAAA N N N T I ZZZ EEEEE %
9% Q QQ U U A A N NN T I ZZ E %
10% QQQQ UUU A A N N T IIIII ZZZZZ EEEEE %
11% %
12% %
13% MagickCore Methods to Reduce the Number of Unique Colors in an Image %
14% %
15% Software Design %
16% John Cristy %
17% July 1992 %
18% %
19% %
cristy45ef08f2012-12-07 13:13:34 +000020% Copyright 1999-2013 ImageMagick Studio LLC, a non-profit organization %
cristy3ed852e2009-09-05 21:47:34 +000021% dedicated to making software imaging solutions freely available. %
22% %
23% You may not use this file except in compliance with the License. You may %
24% obtain a copy of the License at %
25% %
26% http://www.imagemagick.org/script/license.php %
27% %
28% Unless required by applicable law or agreed to in writing, software %
29% distributed under the License is distributed on an "AS IS" BASIS, %
30% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. %
31% See the License for the specific language governing permissions and %
32% limitations under the License. %
33% %
34%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35%
36% Realism in computer graphics typically requires using 24 bits/pixel to
37% generate an image. Yet many graphic display devices do not contain the
38% amount of memory necessary to match the spatial and color resolution of
39% the human eye. The Quantize methods takes a 24 bit image and reduces
40% the number of colors so it can be displayed on raster device with less
41% bits per pixel. In most instances, the quantized image closely
42% resembles the original reference image.
43%
44% A reduction of colors in an image is also desirable for image
45% transmission and real-time animation.
46%
47% QuantizeImage() takes a standard RGB or monochrome images and quantizes
48% them down to some fixed number of colors.
49%
50% For purposes of color allocation, an image is a set of n pixels, where
51% each pixel is a point in RGB space. RGB space is a 3-dimensional
52% vector space, and each pixel, Pi, is defined by an ordered triple of
53% red, green, and blue coordinates, (Ri, Gi, Bi).
54%
55% Each primary color component (red, green, or blue) represents an
56% intensity which varies linearly from 0 to a maximum value, Cmax, which
57% corresponds to full saturation of that color. Color allocation is
58% defined over a domain consisting of the cube in RGB space with opposite
59% vertices at (0,0,0) and (Cmax, Cmax, Cmax). QUANTIZE requires Cmax =
60% 255.
61%
62% The algorithm maps this domain onto a tree in which each node
63% represents a cube within that domain. In the following discussion
64% these cubes are defined by the coordinate of two opposite vertices:
65% The vertex nearest the origin in RGB space and the vertex farthest from
66% the origin.
67%
68% The tree's root node represents the entire domain, (0,0,0) through
69% (Cmax,Cmax,Cmax). Each lower level in the tree is generated by
70% subdividing one node's cube into eight smaller cubes of equal size.
71% This corresponds to bisecting the parent cube with planes passing
72% through the midpoints of each edge.
73%
74% The basic algorithm operates in three phases: Classification,
75% Reduction, and Assignment. Classification builds a color description
76% tree for the image. Reduction collapses the tree until the number it
77% represents, at most, the number of colors desired in the output image.
78% Assignment defines the output image's color map and sets each pixel's
79% color by restorage_class in the reduced tree. Our goal is to minimize
80% the numerical discrepancies between the original colors and quantized
81% colors (quantization error).
82%
83% Classification begins by initializing a color description tree of
84% sufficient depth to represent each possible input color in a leaf.
85% However, it is impractical to generate a fully-formed color description
86% tree in the storage_class phase for realistic values of Cmax. If
87% colors components in the input image are quantized to k-bit precision,
88% so that Cmax= 2k-1, the tree would need k levels below the root node to
89% allow representing each possible input color in a leaf. This becomes
90% prohibitive because the tree's total number of nodes is 1 +
91% sum(i=1, k, 8k).
92%
93% A complete tree would require 19,173,961 nodes for k = 8, Cmax = 255.
94% Therefore, to avoid building a fully populated tree, QUANTIZE: (1)
95% Initializes data structures for nodes only as they are needed; (2)
96% Chooses a maximum depth for the tree as a function of the desired
97% number of colors in the output image (currently log2(colormap size)).
98%
99% For each pixel in the input image, storage_class scans downward from
100% the root of the color description tree. At each level of the tree it
101% identifies the single node which represents a cube in RGB space
102% containing the pixel's color. It updates the following data for each
103% such node:
104%
105% n1: Number of pixels whose color is contained in the RGB cube which
106% this node represents;
107%
108% n2: Number of pixels whose color is not represented in a node at
109% lower depth in the tree; initially, n2 = 0 for all nodes except
110% leaves of the tree.
111%
112% Sr, Sg, Sb: Sums of the red, green, and blue component values for all
113% pixels not classified at a lower depth. The combination of these sums
114% and n2 will ultimately characterize the mean color of a set of
115% pixels represented by this node.
116%
117% E: the distance squared in RGB space between each pixel contained
118% within a node and the nodes' center. This represents the
119% quantization error for a node.
120%
121% Reduction repeatedly prunes the tree until the number of nodes with n2
122% > 0 is less than or equal to the maximum number of colors allowed in
123% the output image. On any given iteration over the tree, it selects
124% those nodes whose E count is minimal for pruning and merges their color
125% statistics upward. It uses a pruning threshold, Ep, to govern node
126% selection as follows:
127%
128% Ep = 0
129% while number of nodes with (n2 > 0) > required maximum number of colors
130% prune all nodes such that E <= Ep
131% Set Ep to minimum E in remaining nodes
132%
133% This has the effect of minimizing any quantization error when merging
134% two nodes together.
135%
136% When a node to be pruned has offspring, the pruning procedure invokes
137% itself recursively in order to prune the tree from the leaves upward.
138% n2, Sr, Sg, and Sb in a node being pruned are always added to the
139% corresponding data in that node's parent. This retains the pruned
140% node's color characteristics for later averaging.
141%
142% For each node, n2 pixels exist for which that node represents the
143% smallest volume in RGB space containing those pixel's colors. When n2
144% > 0 the node will uniquely define a color in the output image. At the
145% beginning of reduction, n2 = 0 for all nodes except a the leaves of
146% the tree which represent colors present in the input image.
147%
148% The other pixel count, n1, indicates the total number of colors within
149% the cubic volume which the node represents. This includes n1 - n2
150% pixels whose colors should be defined by nodes at a lower level in the
151% tree.
152%
153% Assignment generates the output image from the pruned tree. The output
154% image consists of two parts: (1) A color map, which is an array of
155% color descriptions (RGB triples) for each color present in the output
156% image; (2) A pixel array, which represents each pixel as an index
157% into the color map array.
158%
159% First, the assignment phase makes one pass over the pruned color
160% description tree to establish the image's color map. For each node
161% with n2 > 0, it divides Sr, Sg, and Sb by n2 . This produces the mean
162% color of all pixels that classify no lower than this node. Each of
163% these colors becomes an entry in the color map.
164%
165% Finally, the assignment phase reclassifies each pixel in the pruned
166% tree to identify the deepest node containing the pixel's color. The
167% pixel's value in the pixel array becomes the index of this node's mean
168% color in the color map.
169%
170% This method is based on a similar algorithm written by Paul Raveling.
171%
172*/
173
174/*
175 Include declarations.
176*/
cristy4c08aed2011-07-01 19:47:50 +0000177#include "MagickCore/studio.h"
178#include "MagickCore/attribute.h"
179#include "MagickCore/cache-view.h"
180#include "MagickCore/color.h"
181#include "MagickCore/color-private.h"
182#include "MagickCore/colormap.h"
183#include "MagickCore/colorspace.h"
cristy510d06a2011-07-06 23:43:54 +0000184#include "MagickCore/colorspace-private.h"
cristy4c08aed2011-07-01 19:47:50 +0000185#include "MagickCore/enhance.h"
186#include "MagickCore/exception.h"
187#include "MagickCore/exception-private.h"
188#include "MagickCore/histogram.h"
189#include "MagickCore/image.h"
190#include "MagickCore/image-private.h"
191#include "MagickCore/list.h"
192#include "MagickCore/memory_.h"
193#include "MagickCore/monitor.h"
194#include "MagickCore/monitor-private.h"
195#include "MagickCore/option.h"
196#include "MagickCore/pixel-accessor.h"
cristy1d1b10f2012-06-02 20:02:55 +0000197#include "MagickCore/pixel-private.h"
cristy4c08aed2011-07-01 19:47:50 +0000198#include "MagickCore/quantize.h"
199#include "MagickCore/quantum.h"
200#include "MagickCore/quantum-private.h"
cristyac245f82012-05-05 17:13:57 +0000201#include "MagickCore/resource_.h"
cristy4c08aed2011-07-01 19:47:50 +0000202#include "MagickCore/string_.h"
203#include "MagickCore/thread-private.h"
cristy3ed852e2009-09-05 21:47:34 +0000204
205/*
206 Define declarations.
207*/
cristye1287512010-06-19 17:38:25 +0000208#if !defined(__APPLE__) && !defined(TARGET_OS_IPHONE)
cristy3ed852e2009-09-05 21:47:34 +0000209#define CacheShift 2
cristye1287512010-06-19 17:38:25 +0000210#else
211#define CacheShift 3
212#endif
cristy3ed852e2009-09-05 21:47:34 +0000213#define ErrorQueueLength 16
214#define MaxNodes 266817
215#define MaxTreeDepth 8
216#define NodesInAList 1920
217
218/*
219 Typdef declarations.
220*/
cristy101ab702011-10-13 13:06:32 +0000221typedef struct _RealPixelInfo
cristy3ed852e2009-09-05 21:47:34 +0000222{
cristya19f1d72012-08-07 18:24:38 +0000223 double
cristy3ed852e2009-09-05 21:47:34 +0000224 red,
225 green,
226 blue,
cristy4c08aed2011-07-01 19:47:50 +0000227 alpha;
cristy101ab702011-10-13 13:06:32 +0000228} RealPixelInfo;
cristy3ed852e2009-09-05 21:47:34 +0000229
230typedef struct _NodeInfo
231{
232 struct _NodeInfo
233 *parent,
234 *child[16];
235
236 MagickSizeType
237 number_unique;
238
cristy101ab702011-10-13 13:06:32 +0000239 RealPixelInfo
cristy3ed852e2009-09-05 21:47:34 +0000240 total_color;
241
cristya19f1d72012-08-07 18:24:38 +0000242 double
cristy3ed852e2009-09-05 21:47:34 +0000243 quantize_error;
244
cristybb503372010-05-27 20:51:26 +0000245 size_t
cristy3ed852e2009-09-05 21:47:34 +0000246 color_number,
247 id,
248 level;
249} NodeInfo;
250
251typedef struct _Nodes
252{
253 NodeInfo
254 *nodes;
255
256 struct _Nodes
257 *next;
258} Nodes;
259
260typedef struct _CubeInfo
261{
262 NodeInfo
263 *root;
264
cristybb503372010-05-27 20:51:26 +0000265 size_t
cristy3ed852e2009-09-05 21:47:34 +0000266 colors,
267 maximum_colors;
268
cristybb503372010-05-27 20:51:26 +0000269 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000270 transparent_index;
271
272 MagickSizeType
273 transparent_pixels;
274
cristy101ab702011-10-13 13:06:32 +0000275 RealPixelInfo
cristy3ed852e2009-09-05 21:47:34 +0000276 target;
277
cristya19f1d72012-08-07 18:24:38 +0000278 double
cristy3ed852e2009-09-05 21:47:34 +0000279 distance,
280 pruning_threshold,
281 next_threshold;
282
cristybb503372010-05-27 20:51:26 +0000283 size_t
cristy3ed852e2009-09-05 21:47:34 +0000284 nodes,
285 free_nodes,
286 color_number;
287
288 NodeInfo
289 *next_node;
290
291 Nodes
292 *node_queue;
293
cristya321eb72013-06-23 10:42:37 +0000294 MemoryInfo
295 *memory_info;
296
cristybb503372010-05-27 20:51:26 +0000297 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000298 *cache;
299
cristy101ab702011-10-13 13:06:32 +0000300 RealPixelInfo
cristy3ed852e2009-09-05 21:47:34 +0000301 error[ErrorQueueLength];
302
cristya19f1d72012-08-07 18:24:38 +0000303 double
cristy3ed852e2009-09-05 21:47:34 +0000304 weights[ErrorQueueLength];
305
306 QuantizeInfo
307 *quantize_info;
308
309 MagickBooleanType
310 associate_alpha;
311
cristybb503372010-05-27 20:51:26 +0000312 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000313 x,
314 y;
315
cristybb503372010-05-27 20:51:26 +0000316 size_t
cristy3ed852e2009-09-05 21:47:34 +0000317 depth;
318
319 MagickOffsetType
320 offset;
321
322 MagickSizeType
323 span;
324} CubeInfo;
325
326/*
327 Method prototypes.
328*/
329static CubeInfo
cristybb503372010-05-27 20:51:26 +0000330 *GetCubeInfo(const QuantizeInfo *,const size_t,const size_t);
cristy3ed852e2009-09-05 21:47:34 +0000331
332static NodeInfo
cristybb503372010-05-27 20:51:26 +0000333 *GetNodeInfo(CubeInfo *,const size_t,const size_t,NodeInfo *);
cristy3ed852e2009-09-05 21:47:34 +0000334
335static MagickBooleanType
cristy018f07f2011-09-04 21:15:19 +0000336 AssignImageColors(Image *,CubeInfo *,ExceptionInfo *),
cristy3ed852e2009-09-05 21:47:34 +0000337 ClassifyImageColors(CubeInfo *,const Image *,ExceptionInfo *),
cristy8a11cb12011-10-19 23:53:34 +0000338 DitherImage(Image *,CubeInfo *,ExceptionInfo *),
cristy018f07f2011-09-04 21:15:19 +0000339 SetGrayscaleImage(Image *,ExceptionInfo *);
cristy3ed852e2009-09-05 21:47:34 +0000340
cristybb503372010-05-27 20:51:26 +0000341static size_t
cristy3ed852e2009-09-05 21:47:34 +0000342 DefineImageColormap(Image *,CubeInfo *,NodeInfo *);
343
344static void
345 ClosestColor(const Image *,CubeInfo *,const NodeInfo *),
346 DestroyCubeInfo(CubeInfo *),
347 PruneLevel(const Image *,CubeInfo *,const NodeInfo *),
348 PruneToCubeDepth(const Image *,CubeInfo *,const NodeInfo *),
349 ReduceImageColors(const Image *,CubeInfo *);
350
351/*
352%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
353% %
354% %
355% %
356% A c q u i r e Q u a n t i z e I n f o %
357% %
358% %
359% %
360%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
361%
362% AcquireQuantizeInfo() allocates the QuantizeInfo structure.
363%
364% The format of the AcquireQuantizeInfo method is:
365%
366% QuantizeInfo *AcquireQuantizeInfo(const ImageInfo *image_info)
367%
368% A description of each parameter follows:
369%
370% o image_info: the image info.
371%
372*/
373MagickExport QuantizeInfo *AcquireQuantizeInfo(const ImageInfo *image_info)
374{
375 QuantizeInfo
376 *quantize_info;
377
cristy73bd4a52010-10-05 11:24:23 +0000378 quantize_info=(QuantizeInfo *) AcquireMagickMemory(sizeof(*quantize_info));
cristy3ed852e2009-09-05 21:47:34 +0000379 if (quantize_info == (QuantizeInfo *) NULL)
380 ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed");
381 GetQuantizeInfo(quantize_info);
382 if (image_info != (ImageInfo *) NULL)
383 {
384 const char
385 *option;
386
cristycbda6112012-05-27 20:57:16 +0000387 quantize_info->dither_method=image_info->dither == MagickFalse ?
388 NoDitherMethod : RiemersmaDitherMethod;
cristy3ed852e2009-09-05 21:47:34 +0000389 option=GetImageOption(image_info,"dither");
390 if (option != (const char *) NULL)
cristy042ee782011-04-22 18:48:30 +0000391 quantize_info->dither_method=(DitherMethod) ParseCommandOption(
cristy3ed852e2009-09-05 21:47:34 +0000392 MagickDitherOptions,MagickFalse,option);
393 quantize_info->measure_error=image_info->verbose;
394 }
395 return(quantize_info);
396}
397
398/*
399%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
400% %
401% %
402% %
403+ A s s i g n I m a g e C o l o r s %
404% %
405% %
406% %
407%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
408%
409% AssignImageColors() generates the output image from the pruned tree. The
410% output image consists of two parts: (1) A color map, which is an array
411% of color descriptions (RGB triples) for each color present in the
412% output image; (2) A pixel array, which represents each pixel as an
413% index into the color map array.
414%
415% First, the assignment phase makes one pass over the pruned color
416% description tree to establish the image's color map. For each node
417% with n2 > 0, it divides Sr, Sg, and Sb by n2 . This produces the mean
418% color of all pixels that classify no lower than this node. Each of
419% these colors becomes an entry in the color map.
420%
421% Finally, the assignment phase reclassifies each pixel in the pruned
422% tree to identify the deepest node containing the pixel's color. The
423% pixel's value in the pixel array becomes the index of this node's mean
424% color in the color map.
425%
426% The format of the AssignImageColors() method is:
427%
428% MagickBooleanType AssignImageColors(Image *image,CubeInfo *cube_info)
429%
430% A description of each parameter follows.
431%
432% o image: the image.
433%
434% o cube_info: A pointer to the Cube structure.
435%
436*/
437
cristy4c08aed2011-07-01 19:47:50 +0000438static inline void AssociateAlphaPixel(const Image *image,
cristy101ab702011-10-13 13:06:32 +0000439 const CubeInfo *cube_info,const Quantum *pixel,RealPixelInfo *alpha_pixel)
cristy3ed852e2009-09-05 21:47:34 +0000440{
cristya19f1d72012-08-07 18:24:38 +0000441 double
cristy3ed852e2009-09-05 21:47:34 +0000442 alpha;
443
444 if ((cube_info->associate_alpha == MagickFalse) ||
cristy4c08aed2011-07-01 19:47:50 +0000445 (GetPixelAlpha(image,pixel)== OpaqueAlpha))
cristy3ed852e2009-09-05 21:47:34 +0000446 {
cristya19f1d72012-08-07 18:24:38 +0000447 alpha_pixel->red=(double) GetPixelRed(image,pixel);
448 alpha_pixel->green=(double) GetPixelGreen(image,pixel);
449 alpha_pixel->blue=(double) GetPixelBlue(image,pixel);
450 alpha_pixel->alpha=(double) GetPixelAlpha(image,pixel);
cristy3ed852e2009-09-05 21:47:34 +0000451 return;
452 }
cristya19f1d72012-08-07 18:24:38 +0000453 alpha=(double) (QuantumScale*GetPixelAlpha(image,pixel));
cristy4c08aed2011-07-01 19:47:50 +0000454 alpha_pixel->red=alpha*GetPixelRed(image,pixel);
455 alpha_pixel->green=alpha*GetPixelGreen(image,pixel);
456 alpha_pixel->blue=alpha*GetPixelBlue(image,pixel);
cristya19f1d72012-08-07 18:24:38 +0000457 alpha_pixel->alpha=(double) GetPixelAlpha(image,pixel);
cristy4c08aed2011-07-01 19:47:50 +0000458}
459
cristyb0de93f2013-05-03 13:39:25 +0000460static inline void AssociateAlphaPixelInfo(const CubeInfo *cube_info,
461 const PixelInfo *pixel,RealPixelInfo *alpha_pixel)
cristy4c08aed2011-07-01 19:47:50 +0000462{
cristya19f1d72012-08-07 18:24:38 +0000463 double
cristy4c08aed2011-07-01 19:47:50 +0000464 alpha;
465
466 if ((cube_info->associate_alpha == MagickFalse) ||
467 (pixel->alpha == OpaqueAlpha))
468 {
cristya19f1d72012-08-07 18:24:38 +0000469 alpha_pixel->red=(double) pixel->red;
470 alpha_pixel->green=(double) pixel->green;
471 alpha_pixel->blue=(double) pixel->blue;
472 alpha_pixel->alpha=(double) pixel->alpha;
cristy4c08aed2011-07-01 19:47:50 +0000473 return;
474 }
cristya19f1d72012-08-07 18:24:38 +0000475 alpha=(double) (QuantumScale*pixel->alpha);
cristy4c08aed2011-07-01 19:47:50 +0000476 alpha_pixel->red=alpha*pixel->red;
477 alpha_pixel->green=alpha*pixel->green;
478 alpha_pixel->blue=alpha*pixel->blue;
cristya19f1d72012-08-07 18:24:38 +0000479 alpha_pixel->alpha=(double) pixel->alpha;
cristy3ed852e2009-09-05 21:47:34 +0000480}
481
cristy6f7e0422012-12-25 20:04:53 +0000482static inline Quantum ClampPixel(const MagickRealType value)
cristy3ed852e2009-09-05 21:47:34 +0000483{
cristy6f7e0422012-12-25 20:04:53 +0000484 if (value < 0.0f)
cristy1aeeff32013-02-21 21:51:24 +0000485 return(0);
cristy6f7e0422012-12-25 20:04:53 +0000486 if (value >= (MagickRealType) QuantumRange)
487 return((Quantum) QuantumRange);
488#if !defined(MAGICKCORE_HDRI_SUPPORT)
489 return((Quantum) (value+0.5f));
490#else
491 return(value);
492#endif
cristy3ed852e2009-09-05 21:47:34 +0000493}
494
cristybb503372010-05-27 20:51:26 +0000495static inline size_t ColorToNodeId(const CubeInfo *cube_info,
cristy101ab702011-10-13 13:06:32 +0000496 const RealPixelInfo *pixel,size_t index)
cristy3ed852e2009-09-05 21:47:34 +0000497{
cristybb503372010-05-27 20:51:26 +0000498 size_t
cristy3ed852e2009-09-05 21:47:34 +0000499 id;
500
cristy6f7e0422012-12-25 20:04:53 +0000501 id=(size_t) (((ScaleQuantumToChar(ClampPixel(pixel->red)) >> index) & 0x01) |
502 ((ScaleQuantumToChar(ClampPixel(pixel->green)) >> index) & 0x01) << 1 |
503 ((ScaleQuantumToChar(ClampPixel(pixel->blue)) >> index) & 0x01) << 2);
cristy3ed852e2009-09-05 21:47:34 +0000504 if (cube_info->associate_alpha != MagickFalse)
cristy6f7e0422012-12-25 20:04:53 +0000505 id|=((ScaleQuantumToChar(ClampPixel(pixel->alpha)) >> index) & 0x1) << 3;
cristy3ed852e2009-09-05 21:47:34 +0000506 return(id);
507}
508
cristy018f07f2011-09-04 21:15:19 +0000509static MagickBooleanType AssignImageColors(Image *image,CubeInfo *cube_info,
510 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000511{
512#define AssignImageTag "Assign/Image"
513
cristyecc31b12011-02-13 00:32:29 +0000514 ssize_t
cristyecc31b12011-02-13 00:32:29 +0000515 y;
516
cristy3ed852e2009-09-05 21:47:34 +0000517 /*
518 Allocate image colormap.
519 */
520 if ((cube_info->quantize_info->colorspace != UndefinedColorspace) &&
521 (cube_info->quantize_info->colorspace != CMYKColorspace))
522 (void) TransformImageColorspace((Image *) image,
cristye941a752011-10-15 01:52:48 +0000523 cube_info->quantize_info->colorspace,exception);
cristy3ed852e2009-09-05 21:47:34 +0000524 else
cristy3d9f5ba2012-06-26 13:37:31 +0000525 if (IssRGBCompatibleColorspace(image->colorspace) == MagickFalse)
cristyc511e882012-04-16 21:11:14 +0000526 (void) TransformImageColorspace((Image *) image,sRGBColorspace,exception);
cristy018f07f2011-09-04 21:15:19 +0000527 if (AcquireImageColormap(image,cube_info->colors,exception) == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +0000528 ThrowBinaryException(ResourceLimitError,"MemoryAllocationFailed",
529 image->filename);
530 image->colors=0;
531 cube_info->transparent_pixels=0;
532 cube_info->transparent_index=(-1);
533 (void) DefineImageColormap(image,cube_info,cube_info->root);
534 /*
535 Create a reduced color image.
536 */
cristycbda6112012-05-27 20:57:16 +0000537 if ((cube_info->quantize_info->dither_method != NoDitherMethod) &&
cristyd5acfd12010-06-15 00:11:38 +0000538 (cube_info->quantize_info->dither_method != NoDitherMethod))
cristy8a11cb12011-10-19 23:53:34 +0000539 (void) DitherImage(image,cube_info,exception);
cristy3ed852e2009-09-05 21:47:34 +0000540 else
541 {
cristy3ed852e2009-09-05 21:47:34 +0000542 CacheView
543 *image_view;
544
cristye9717ac2011-02-20 16:17:17 +0000545 MagickBooleanType
546 status;
547
548 status=MagickTrue;
cristy46ff2672012-12-14 15:32:26 +0000549 image_view=AcquireAuthenticCacheView(image,exception);
cristye9717ac2011-02-20 16:17:17 +0000550#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristyac245f82012-05-05 17:13:57 +0000551 #pragma omp parallel for schedule(static,4) shared(status) \
cristy5e6b2592012-12-19 14:08:11 +0000552 magick_threads(image,image,image->rows,1)
cristye9717ac2011-02-20 16:17:17 +0000553#endif
cristybb503372010-05-27 20:51:26 +0000554 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000555 {
cristye9717ac2011-02-20 16:17:17 +0000556 CubeInfo
557 cube;
558
cristy4c08aed2011-07-01 19:47:50 +0000559 register Quantum
cristyc47d1f82009-11-26 01:44:43 +0000560 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +0000561
cristye9717ac2011-02-20 16:17:17 +0000562 register ssize_t
563 x;
564
565 ssize_t
566 count;
567
568 if (status == MagickFalse)
569 continue;
cristy3ed852e2009-09-05 21:47:34 +0000570 q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,
571 exception);
cristyacd2ed22011-08-30 01:44:23 +0000572 if (q == (Quantum *) NULL)
cristye9717ac2011-02-20 16:17:17 +0000573 {
574 status=MagickFalse;
575 continue;
576 }
cristye9717ac2011-02-20 16:17:17 +0000577 cube=(*cube_info);
cristybb503372010-05-27 20:51:26 +0000578 for (x=0; x < (ssize_t) image->columns; x+=count)
cristy3ed852e2009-09-05 21:47:34 +0000579 {
cristy101ab702011-10-13 13:06:32 +0000580 RealPixelInfo
cristye9717ac2011-02-20 16:17:17 +0000581 pixel;
582
583 register const NodeInfo
584 *node_info;
585
586 register ssize_t
587 i;
588
589 size_t
590 id,
591 index;
592
cristy3ed852e2009-09-05 21:47:34 +0000593 /*
594 Identify the deepest node containing the pixel's color.
595 */
cristybb503372010-05-27 20:51:26 +0000596 for (count=1; (x+count) < (ssize_t) image->columns; count++)
cristy4c08aed2011-07-01 19:47:50 +0000597 {
cristy101ab702011-10-13 13:06:32 +0000598 PixelInfo
cristy4c08aed2011-07-01 19:47:50 +0000599 packet;
600
cristy101ab702011-10-13 13:06:32 +0000601 GetPixelInfoPixel(image,q+count*GetPixelChannels(image),&packet);
cristy4c08aed2011-07-01 19:47:50 +0000602 if (IsPixelEquivalent(image,q,&packet) == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +0000603 break;
cristy4c08aed2011-07-01 19:47:50 +0000604 }
605 AssociateAlphaPixel(image,&cube,q,&pixel);
cristye9717ac2011-02-20 16:17:17 +0000606 node_info=cube.root;
cristybb503372010-05-27 20:51:26 +0000607 for (index=MaxTreeDepth-1; (ssize_t) index > 0; index--)
cristy3ed852e2009-09-05 21:47:34 +0000608 {
cristye9717ac2011-02-20 16:17:17 +0000609 id=ColorToNodeId(&cube,&pixel,index);
cristy3ed852e2009-09-05 21:47:34 +0000610 if (node_info->child[id] == (NodeInfo *) NULL)
611 break;
612 node_info=node_info->child[id];
613 }
614 /*
615 Find closest color among siblings and their children.
616 */
cristye9717ac2011-02-20 16:17:17 +0000617 cube.target=pixel;
cristya19f1d72012-08-07 18:24:38 +0000618 cube.distance=(double) (4.0*(QuantumRange+1.0)*
cristy3ed852e2009-09-05 21:47:34 +0000619 (QuantumRange+1.0)+1.0);
cristye9717ac2011-02-20 16:17:17 +0000620 ClosestColor(image,&cube,node_info->parent);
621 index=cube.color_number;
cristybb503372010-05-27 20:51:26 +0000622 for (i=0; i < (ssize_t) count; i++)
cristy3ed852e2009-09-05 21:47:34 +0000623 {
624 if (image->storage_class == PseudoClass)
cristy4c08aed2011-07-01 19:47:50 +0000625 SetPixelIndex(image,(Quantum) index,q);
cristye9717ac2011-02-20 16:17:17 +0000626 if (cube.quantize_info->measure_error == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +0000627 {
cristye42f6582012-02-11 17:59:50 +0000628 SetPixelRed(image,ClampToQuantum(
629 image->colormap[index].red),q);
630 SetPixelGreen(image,ClampToQuantum(
631 image->colormap[index].green),q);
632 SetPixelBlue(image,ClampToQuantum(
633 image->colormap[index].blue),q);
cristye9717ac2011-02-20 16:17:17 +0000634 if (cube.associate_alpha != MagickFalse)
cristye42f6582012-02-11 17:59:50 +0000635 SetPixelAlpha(image,ClampToQuantum(
636 image->colormap[index].alpha),q);
cristy3ed852e2009-09-05 21:47:34 +0000637 }
cristyed231572011-07-14 02:18:59 +0000638 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000639 }
640 }
641 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
cristye9717ac2011-02-20 16:17:17 +0000642 status=MagickFalse;
643 if (image->progress_monitor != (MagickProgressMonitor) NULL)
644 {
645 MagickBooleanType
646 proceed;
647
648#if defined(MAGICKCORE_OPENMP_SUPPORT)
649 #pragma omp critical (MagickCore_AssignImageColors)
650#endif
651 proceed=SetImageProgress(image,AssignImageTag,(MagickOffsetType) y,
652 image->rows);
653 if (proceed == MagickFalse)
654 status=MagickFalse;
655 }
cristy3ed852e2009-09-05 21:47:34 +0000656 }
657 image_view=DestroyCacheView(image_view);
658 }
659 if (cube_info->quantize_info->measure_error != MagickFalse)
cristy8a11cb12011-10-19 23:53:34 +0000660 (void) GetImageQuantizeError(image,exception);
cristy3ed852e2009-09-05 21:47:34 +0000661 if ((cube_info->quantize_info->number_colors == 2) &&
662 (cube_info->quantize_info->colorspace == GRAYColorspace))
663 {
cristye42f6582012-02-11 17:59:50 +0000664 double
cristy3ed852e2009-09-05 21:47:34 +0000665 intensity;
666
cristy101ab702011-10-13 13:06:32 +0000667 register PixelInfo
cristyc47d1f82009-11-26 01:44:43 +0000668 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +0000669
cristye9717ac2011-02-20 16:17:17 +0000670 register ssize_t
671 i;
672
cristy3ed852e2009-09-05 21:47:34 +0000673 /*
674 Monochrome image.
675 */
676 q=image->colormap;
cristybb503372010-05-27 20:51:26 +0000677 for (i=0; i < (ssize_t) image->colors; i++)
cristy3ed852e2009-09-05 21:47:34 +0000678 {
cristya19f1d72012-08-07 18:24:38 +0000679 intensity=(double) ((double) GetPixelInfoIntensity(q) <
680 ((double) QuantumRange/2.0) ? 0 : QuantumRange);
cristy4c08aed2011-07-01 19:47:50 +0000681 q->red=intensity;
682 q->green=intensity;
683 q->blue=intensity;
cristy3ed852e2009-09-05 21:47:34 +0000684 q++;
685 }
686 }
cristyea1a8aa2011-10-20 13:24:06 +0000687 (void) SyncImage(image,exception);
cristy3ed852e2009-09-05 21:47:34 +0000688 if ((cube_info->quantize_info->colorspace != UndefinedColorspace) &&
689 (cube_info->quantize_info->colorspace != CMYKColorspace))
cristyc511e882012-04-16 21:11:14 +0000690 (void) TransformImageColorspace((Image *) image,sRGBColorspace,exception);
cristy3ed852e2009-09-05 21:47:34 +0000691 return(MagickTrue);
692}
693
694/*
695%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
696% %
697% %
698% %
699+ C l a s s i f y I m a g e C o l o r s %
700% %
701% %
702% %
703%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
704%
705% ClassifyImageColors() begins by initializing a color description tree
706% of sufficient depth to represent each possible input color in a leaf.
707% However, it is impractical to generate a fully-formed color
708% description tree in the storage_class phase for realistic values of
709% Cmax. If colors components in the input image are quantized to k-bit
710% precision, so that Cmax= 2k-1, the tree would need k levels below the
711% root node to allow representing each possible input color in a leaf.
712% This becomes prohibitive because the tree's total number of nodes is
713% 1 + sum(i=1,k,8k).
714%
715% A complete tree would require 19,173,961 nodes for k = 8, Cmax = 255.
716% Therefore, to avoid building a fully populated tree, QUANTIZE: (1)
717% Initializes data structures for nodes only as they are needed; (2)
718% Chooses a maximum depth for the tree as a function of the desired
719% number of colors in the output image (currently log2(colormap size)).
720%
721% For each pixel in the input image, storage_class scans downward from
722% the root of the color description tree. At each level of the tree it
723% identifies the single node which represents a cube in RGB space
724% containing It updates the following data for each such node:
725%
726% n1 : Number of pixels whose color is contained in the RGB cube
727% which this node represents;
728%
729% n2 : Number of pixels whose color is not represented in a node at
730% lower depth in the tree; initially, n2 = 0 for all nodes except
731% leaves of the tree.
732%
733% Sr, Sg, Sb : Sums of the red, green, and blue component values for
734% all pixels not classified at a lower depth. The combination of
735% these sums and n2 will ultimately characterize the mean color of a
736% set of pixels represented by this node.
737%
738% E: the distance squared in RGB space between each pixel contained
739% within a node and the nodes' center. This represents the quantization
740% error for a node.
741%
742% The format of the ClassifyImageColors() method is:
743%
744% MagickBooleanType ClassifyImageColors(CubeInfo *cube_info,
745% const Image *image,ExceptionInfo *exception)
746%
747% A description of each parameter follows.
748%
749% o cube_info: A pointer to the Cube structure.
750%
751% o image: the image.
752%
753*/
754
755static inline void SetAssociatedAlpha(const Image *image,CubeInfo *cube_info)
756{
757 MagickBooleanType
758 associate_alpha;
759
cristyb0a657e2012-08-29 00:45:37 +0000760 associate_alpha=image->alpha_trait == BlendPixelTrait ? MagickTrue :
761 MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +0000762 if (cube_info->quantize_info->colorspace == TransparentColorspace)
763 associate_alpha=MagickFalse;
764 if ((cube_info->quantize_info->number_colors == 2) &&
765 (cube_info->quantize_info->colorspace == GRAYColorspace))
766 associate_alpha=MagickFalse;
767 cube_info->associate_alpha=associate_alpha;
768}
769
770static MagickBooleanType ClassifyImageColors(CubeInfo *cube_info,
771 const Image *image,ExceptionInfo *exception)
772{
773#define ClassifyImageTag "Classify/Image"
774
cristyc4c8d132010-01-07 01:58:38 +0000775 CacheView
776 *image_view;
777
cristy3ed852e2009-09-05 21:47:34 +0000778 MagickBooleanType
779 proceed;
780
cristya19f1d72012-08-07 18:24:38 +0000781 double
cristy3ed852e2009-09-05 21:47:34 +0000782 bisect;
783
784 NodeInfo
785 *node_info;
786
cristy101ab702011-10-13 13:06:32 +0000787 RealPixelInfo
cristy3ed852e2009-09-05 21:47:34 +0000788 error,
789 mid,
790 midpoint,
791 pixel;
792
793 size_t
cristyecc31b12011-02-13 00:32:29 +0000794 count,
cristy3ed852e2009-09-05 21:47:34 +0000795 id,
796 index,
797 level;
798
cristyecc31b12011-02-13 00:32:29 +0000799 ssize_t
800 y;
801
cristy3ed852e2009-09-05 21:47:34 +0000802 /*
803 Classify the first cube_info->maximum_colors colors to a tree depth of 8.
804 */
805 SetAssociatedAlpha(image,cube_info);
806 if ((cube_info->quantize_info->colorspace != UndefinedColorspace) &&
807 (cube_info->quantize_info->colorspace != CMYKColorspace))
808 (void) TransformImageColorspace((Image *) image,
cristye941a752011-10-15 01:52:48 +0000809 cube_info->quantize_info->colorspace,exception);
cristy3ed852e2009-09-05 21:47:34 +0000810 else
cristy3d9f5ba2012-06-26 13:37:31 +0000811 if (IssRGBCompatibleColorspace(image->colorspace) == MagickFalse)
cristyc511e882012-04-16 21:11:14 +0000812 (void) TransformImageColorspace((Image *) image,sRGBColorspace,exception);
cristya19f1d72012-08-07 18:24:38 +0000813 midpoint.red=(double) QuantumRange/2.0;
814 midpoint.green=(double) QuantumRange/2.0;
815 midpoint.blue=(double) QuantumRange/2.0;
816 midpoint.alpha=(double) QuantumRange/2.0;
cristy4c08aed2011-07-01 19:47:50 +0000817 error.alpha=0.0;
cristy46ff2672012-12-14 15:32:26 +0000818 image_view=AcquireVirtualCacheView(image,exception);
cristybb503372010-05-27 20:51:26 +0000819 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000820 {
cristy4c08aed2011-07-01 19:47:50 +0000821 register const Quantum
cristyc47d1f82009-11-26 01:44:43 +0000822 *restrict p;
cristy3ed852e2009-09-05 21:47:34 +0000823
cristybb503372010-05-27 20:51:26 +0000824 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000825 x;
826
827 p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000828 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000829 break;
830 if (cube_info->nodes > MaxNodes)
831 {
832 /*
833 Prune one level if the color tree is too large.
834 */
835 PruneLevel(image,cube_info,cube_info->root);
836 cube_info->depth--;
837 }
cristybb503372010-05-27 20:51:26 +0000838 for (x=0; x < (ssize_t) image->columns; x+=(ssize_t) count)
cristy3ed852e2009-09-05 21:47:34 +0000839 {
840 /*
841 Start at the root and descend the color cube tree.
842 */
cristybb66d9c2010-10-09 01:40:31 +0000843 for (count=1; (x+(ssize_t) count) < (ssize_t) image->columns; count++)
cristy4c08aed2011-07-01 19:47:50 +0000844 {
cristy101ab702011-10-13 13:06:32 +0000845 PixelInfo
cristy4c08aed2011-07-01 19:47:50 +0000846 packet;
847
cristy101ab702011-10-13 13:06:32 +0000848 GetPixelInfoPixel(image,p+count*GetPixelChannels(image),&packet);
cristy4c08aed2011-07-01 19:47:50 +0000849 if (IsPixelEquivalent(image,p,&packet) == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +0000850 break;
cristy4c08aed2011-07-01 19:47:50 +0000851 }
852 AssociateAlphaPixel(image,cube_info,p,&pixel);
cristy3ed852e2009-09-05 21:47:34 +0000853 index=MaxTreeDepth-1;
cristya19f1d72012-08-07 18:24:38 +0000854 bisect=((double) QuantumRange+1.0)/2.0;
cristy3ed852e2009-09-05 21:47:34 +0000855 mid=midpoint;
856 node_info=cube_info->root;
857 for (level=1; level <= MaxTreeDepth; level++)
858 {
859 bisect*=0.5;
860 id=ColorToNodeId(cube_info,&pixel,index);
861 mid.red+=(id & 1) != 0 ? bisect : -bisect;
862 mid.green+=(id & 2) != 0 ? bisect : -bisect;
863 mid.blue+=(id & 4) != 0 ? bisect : -bisect;
cristy4c08aed2011-07-01 19:47:50 +0000864 mid.alpha+=(id & 8) != 0 ? bisect : -bisect;
cristy3ed852e2009-09-05 21:47:34 +0000865 if (node_info->child[id] == (NodeInfo *) NULL)
866 {
867 /*
868 Set colors of new node to contain pixel.
869 */
870 node_info->child[id]=GetNodeInfo(cube_info,id,level,node_info);
871 if (node_info->child[id] == (NodeInfo *) NULL)
872 (void) ThrowMagickException(exception,GetMagickModule(),
cristyefe601c2013-01-05 17:51:12 +0000873 ResourceLimitError,"MemoryAllocationFailed","`%s'",
cristy3ed852e2009-09-05 21:47:34 +0000874 image->filename);
875 if (level == MaxTreeDepth)
876 cube_info->colors++;
877 }
878 /*
879 Approximate the quantization error represented by this node.
880 */
881 node_info=node_info->child[id];
882 error.red=QuantumScale*(pixel.red-mid.red);
883 error.green=QuantumScale*(pixel.green-mid.green);
884 error.blue=QuantumScale*(pixel.blue-mid.blue);
885 if (cube_info->associate_alpha != MagickFalse)
cristy4c08aed2011-07-01 19:47:50 +0000886 error.alpha=QuantumScale*(pixel.alpha-mid.alpha);
cristy3ed852e2009-09-05 21:47:34 +0000887 node_info->quantize_error+=sqrt((double) (count*error.red*error.red+
cristy2b06e672013-02-21 21:59:11 +0000888 count*error.green*error.green+count*error.blue*error.blue+count*
889 error.alpha*error.alpha));
cristy3ed852e2009-09-05 21:47:34 +0000890 cube_info->root->quantize_error+=node_info->quantize_error;
891 index--;
892 }
893 /*
894 Sum RGB for this leaf for later derivation of the mean cube color.
895 */
896 node_info->number_unique+=count;
cristy1aeeff32013-02-21 21:51:24 +0000897 node_info->total_color.red+=count*QuantumScale*ClampPixel(pixel.red);
898 node_info->total_color.green+=count*QuantumScale*ClampPixel(pixel.green);
899 node_info->total_color.blue+=count*QuantumScale*ClampPixel(pixel.blue);
cristy3ed852e2009-09-05 21:47:34 +0000900 if (cube_info->associate_alpha != MagickFalse)
cristy2b06e672013-02-21 21:59:11 +0000901 node_info->total_color.alpha+=count*QuantumScale*ClampPixel(
902 pixel.alpha);
cristyed231572011-07-14 02:18:59 +0000903 p+=count*GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000904 }
905 if (cube_info->colors > cube_info->maximum_colors)
906 {
907 PruneToCubeDepth(image,cube_info,cube_info->root);
908 break;
909 }
cristycee97112010-05-28 00:44:52 +0000910 proceed=SetImageProgress(image,ClassifyImageTag,(MagickOffsetType) y,
911 image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000912 if (proceed == MagickFalse)
913 break;
914 }
cristybb503372010-05-27 20:51:26 +0000915 for (y++; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000916 {
cristy4c08aed2011-07-01 19:47:50 +0000917 register const Quantum
cristyc47d1f82009-11-26 01:44:43 +0000918 *restrict p;
cristy3ed852e2009-09-05 21:47:34 +0000919
cristybb503372010-05-27 20:51:26 +0000920 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000921 x;
922
923 p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000924 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000925 break;
926 if (cube_info->nodes > MaxNodes)
927 {
928 /*
929 Prune one level if the color tree is too large.
930 */
931 PruneLevel(image,cube_info,cube_info->root);
932 cube_info->depth--;
933 }
cristybb503372010-05-27 20:51:26 +0000934 for (x=0; x < (ssize_t) image->columns; x+=(ssize_t) count)
cristy3ed852e2009-09-05 21:47:34 +0000935 {
936 /*
937 Start at the root and descend the color cube tree.
938 */
cristybb66d9c2010-10-09 01:40:31 +0000939 for (count=1; (x+(ssize_t) count) < (ssize_t) image->columns; count++)
cristy4c08aed2011-07-01 19:47:50 +0000940 {
cristy101ab702011-10-13 13:06:32 +0000941 PixelInfo
cristy4c08aed2011-07-01 19:47:50 +0000942 packet;
943
cristy101ab702011-10-13 13:06:32 +0000944 GetPixelInfoPixel(image,p+count*GetPixelChannels(image),&packet);
cristy4c08aed2011-07-01 19:47:50 +0000945 if (IsPixelEquivalent(image,p,&packet) == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +0000946 break;
cristy4c08aed2011-07-01 19:47:50 +0000947 }
948 AssociateAlphaPixel(image,cube_info,p,&pixel);
cristy3ed852e2009-09-05 21:47:34 +0000949 index=MaxTreeDepth-1;
cristya19f1d72012-08-07 18:24:38 +0000950 bisect=((double) QuantumRange+1.0)/2.0;
cristy3ed852e2009-09-05 21:47:34 +0000951 mid=midpoint;
952 node_info=cube_info->root;
953 for (level=1; level <= cube_info->depth; level++)
954 {
955 bisect*=0.5;
956 id=ColorToNodeId(cube_info,&pixel,index);
957 mid.red+=(id & 1) != 0 ? bisect : -bisect;
958 mid.green+=(id & 2) != 0 ? bisect : -bisect;
959 mid.blue+=(id & 4) != 0 ? bisect : -bisect;
cristy4c08aed2011-07-01 19:47:50 +0000960 mid.alpha+=(id & 8) != 0 ? bisect : -bisect;
cristy3ed852e2009-09-05 21:47:34 +0000961 if (node_info->child[id] == (NodeInfo *) NULL)
962 {
963 /*
964 Set colors of new node to contain pixel.
965 */
966 node_info->child[id]=GetNodeInfo(cube_info,id,level,node_info);
967 if (node_info->child[id] == (NodeInfo *) NULL)
968 (void) ThrowMagickException(exception,GetMagickModule(),
969 ResourceLimitError,"MemoryAllocationFailed","%s",
970 image->filename);
971 if (level == cube_info->depth)
972 cube_info->colors++;
973 }
974 /*
975 Approximate the quantization error represented by this node.
976 */
977 node_info=node_info->child[id];
978 error.red=QuantumScale*(pixel.red-mid.red);
979 error.green=QuantumScale*(pixel.green-mid.green);
980 error.blue=QuantumScale*(pixel.blue-mid.blue);
981 if (cube_info->associate_alpha != MagickFalse)
cristy4c08aed2011-07-01 19:47:50 +0000982 error.alpha=QuantumScale*(pixel.alpha-mid.alpha);
cristy3ed852e2009-09-05 21:47:34 +0000983 node_info->quantize_error+=sqrt((double) (count*error.red*error.red+
cristy2b06e672013-02-21 21:59:11 +0000984 count*error.green*error.green+count*error.blue*error.blue+count*
985 error.alpha*error.alpha));
cristy3ed852e2009-09-05 21:47:34 +0000986 cube_info->root->quantize_error+=node_info->quantize_error;
987 index--;
988 }
989 /*
990 Sum RGB for this leaf for later derivation of the mean cube color.
991 */
992 node_info->number_unique+=count;
cristy1aeeff32013-02-21 21:51:24 +0000993 node_info->total_color.red+=count*QuantumScale*ClampPixel(pixel.red);
994 node_info->total_color.green+=count*QuantumScale*ClampPixel(pixel.green);
995 node_info->total_color.blue+=count*QuantumScale*ClampPixel(pixel.blue);
cristy3ed852e2009-09-05 21:47:34 +0000996 if (cube_info->associate_alpha != MagickFalse)
cristy2b06e672013-02-21 21:59:11 +0000997 node_info->total_color.alpha+=count*QuantumScale*ClampPixel(
998 pixel.alpha);
cristyed231572011-07-14 02:18:59 +0000999 p+=count*GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +00001000 }
cristycee97112010-05-28 00:44:52 +00001001 proceed=SetImageProgress(image,ClassifyImageTag,(MagickOffsetType) y,
1002 image->rows);
cristy3ed852e2009-09-05 21:47:34 +00001003 if (proceed == MagickFalse)
1004 break;
1005 }
1006 image_view=DestroyCacheView(image_view);
1007 if ((cube_info->quantize_info->colorspace != UndefinedColorspace) &&
1008 (cube_info->quantize_info->colorspace != CMYKColorspace))
cristyc511e882012-04-16 21:11:14 +00001009 (void) TransformImageColorspace((Image *) image,sRGBColorspace,exception);
cristy3ed852e2009-09-05 21:47:34 +00001010 return(MagickTrue);
1011}
1012
1013/*
1014%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1015% %
1016% %
1017% %
1018% C l o n e Q u a n t i z e I n f o %
1019% %
1020% %
1021% %
1022%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1023%
1024% CloneQuantizeInfo() makes a duplicate of the given quantize info structure,
1025% or if quantize info is NULL, a new one.
1026%
1027% The format of the CloneQuantizeInfo method is:
1028%
1029% QuantizeInfo *CloneQuantizeInfo(const QuantizeInfo *quantize_info)
1030%
1031% A description of each parameter follows:
1032%
1033% o clone_info: Method CloneQuantizeInfo returns a duplicate of the given
1034% quantize info, or if image info is NULL a new one.
1035%
1036% o quantize_info: a structure of type info.
1037%
1038*/
1039MagickExport QuantizeInfo *CloneQuantizeInfo(const QuantizeInfo *quantize_info)
1040{
1041 QuantizeInfo
1042 *clone_info;
1043
cristy73bd4a52010-10-05 11:24:23 +00001044 clone_info=(QuantizeInfo *) AcquireMagickMemory(sizeof(*clone_info));
cristy3ed852e2009-09-05 21:47:34 +00001045 if (clone_info == (QuantizeInfo *) NULL)
1046 ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed");
1047 GetQuantizeInfo(clone_info);
1048 if (quantize_info == (QuantizeInfo *) NULL)
1049 return(clone_info);
1050 clone_info->number_colors=quantize_info->number_colors;
1051 clone_info->tree_depth=quantize_info->tree_depth;
cristy3ed852e2009-09-05 21:47:34 +00001052 clone_info->dither_method=quantize_info->dither_method;
1053 clone_info->colorspace=quantize_info->colorspace;
1054 clone_info->measure_error=quantize_info->measure_error;
1055 return(clone_info);
1056}
1057
1058/*
1059%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1060% %
1061% %
1062% %
1063+ C l o s e s t C o l o r %
1064% %
1065% %
1066% %
1067%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1068%
1069% ClosestColor() traverses the color cube tree at a particular node and
1070% determines which colormap entry best represents the input color.
1071%
1072% The format of the ClosestColor method is:
1073%
1074% void ClosestColor(const Image *image,CubeInfo *cube_info,
1075% const NodeInfo *node_info)
1076%
1077% A description of each parameter follows.
1078%
1079% o image: the image.
1080%
1081% o cube_info: A pointer to the Cube structure.
1082%
1083% o node_info: the address of a structure of type NodeInfo which points to a
1084% node in the color cube tree that is to be pruned.
1085%
1086*/
1087static void ClosestColor(const Image *image,CubeInfo *cube_info,
1088 const NodeInfo *node_info)
1089{
cristybb503372010-05-27 20:51:26 +00001090 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001091 i;
1092
cristybb503372010-05-27 20:51:26 +00001093 size_t
cristy3ed852e2009-09-05 21:47:34 +00001094 number_children;
1095
1096 /*
1097 Traverse any children.
1098 */
1099 number_children=cube_info->associate_alpha == MagickFalse ? 8UL : 16UL;
cristybb503372010-05-27 20:51:26 +00001100 for (i=0; i < (ssize_t) number_children; i++)
cristy3ed852e2009-09-05 21:47:34 +00001101 if (node_info->child[i] != (NodeInfo *) NULL)
1102 ClosestColor(image,cube_info,node_info->child[i]);
1103 if (node_info->number_unique != 0)
1104 {
cristya19f1d72012-08-07 18:24:38 +00001105 double
cristy3ed852e2009-09-05 21:47:34 +00001106 pixel;
1107
cristya19f1d72012-08-07 18:24:38 +00001108 register double
cristy3ed852e2009-09-05 21:47:34 +00001109 alpha,
1110 beta,
1111 distance;
1112
cristy101ab702011-10-13 13:06:32 +00001113 register PixelInfo
cristyc47d1f82009-11-26 01:44:43 +00001114 *restrict p;
cristy3ed852e2009-09-05 21:47:34 +00001115
cristy101ab702011-10-13 13:06:32 +00001116 register RealPixelInfo
cristyc47d1f82009-11-26 01:44:43 +00001117 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +00001118
1119 /*
1120 Determine if this color is "closest".
1121 */
1122 p=image->colormap+node_info->color_number;
1123 q=(&cube_info->target);
1124 alpha=1.0;
1125 beta=1.0;
cristy847620f2011-02-09 02:24:21 +00001126 if (cube_info->associate_alpha != MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +00001127 {
cristya19f1d72012-08-07 18:24:38 +00001128 alpha=(double) (QuantumScale*p->alpha);
1129 beta=(double) (QuantumScale*q->alpha);
cristy3ed852e2009-09-05 21:47:34 +00001130 }
cristy4c08aed2011-07-01 19:47:50 +00001131 pixel=alpha*p->red-beta*q->red;
cristy3ed852e2009-09-05 21:47:34 +00001132 distance=pixel*pixel;
cristy36fbc3b2011-02-09 02:30:04 +00001133 if (distance <= cube_info->distance)
cristy3ed852e2009-09-05 21:47:34 +00001134 {
cristy4c08aed2011-07-01 19:47:50 +00001135 pixel=alpha*p->green-beta*q->green;
cristy3ed852e2009-09-05 21:47:34 +00001136 distance+=pixel*pixel;
cristy36fbc3b2011-02-09 02:30:04 +00001137 if (distance <= cube_info->distance)
cristy3ed852e2009-09-05 21:47:34 +00001138 {
cristy4c08aed2011-07-01 19:47:50 +00001139 pixel=alpha*p->blue-beta*q->blue;
cristy3ed852e2009-09-05 21:47:34 +00001140 distance+=pixel*pixel;
cristy36fbc3b2011-02-09 02:30:04 +00001141 if (distance <= cube_info->distance)
cristy3ed852e2009-09-05 21:47:34 +00001142 {
1143 pixel=alpha-beta;
1144 distance+=pixel*pixel;
cristyc4080402011-02-09 02:55:58 +00001145 if (distance <= cube_info->distance)
cristy3ed852e2009-09-05 21:47:34 +00001146 {
1147 cube_info->distance=distance;
1148 cube_info->color_number=node_info->color_number;
1149 }
1150 }
1151 }
1152 }
1153 }
1154}
1155
1156/*
1157%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1158% %
1159% %
1160% %
1161% C o m p r e s s I m a g e C o l o r m a p %
1162% %
1163% %
1164% %
1165%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1166%
1167% CompressImageColormap() compresses an image colormap by removing any
1168% duplicate or unused color entries.
1169%
1170% The format of the CompressImageColormap method is:
1171%
cristy018f07f2011-09-04 21:15:19 +00001172% MagickBooleanType CompressImageColormap(Image *image,
1173% ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001174%
1175% A description of each parameter follows:
1176%
1177% o image: the image.
1178%
cristy018f07f2011-09-04 21:15:19 +00001179% o exception: return any errors or warnings in this structure.
1180%
cristy3ed852e2009-09-05 21:47:34 +00001181*/
cristy018f07f2011-09-04 21:15:19 +00001182MagickExport MagickBooleanType CompressImageColormap(Image *image,
1183 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001184{
1185 QuantizeInfo
1186 quantize_info;
1187
1188 assert(image != (Image *) NULL);
1189 assert(image->signature == MagickSignature);
1190 if (image->debug != MagickFalse)
1191 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
cristy8a11cb12011-10-19 23:53:34 +00001192 if (IsPaletteImage(image,exception) == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +00001193 return(MagickFalse);
1194 GetQuantizeInfo(&quantize_info);
1195 quantize_info.number_colors=image->colors;
1196 quantize_info.tree_depth=MaxTreeDepth;
cristy018f07f2011-09-04 21:15:19 +00001197 return(QuantizeImage(&quantize_info,image,exception));
cristy3ed852e2009-09-05 21:47:34 +00001198}
1199
1200/*
1201%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1202% %
1203% %
1204% %
1205+ D e f i n e I m a g e C o l o r m a p %
1206% %
1207% %
1208% %
1209%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1210%
1211% DefineImageColormap() traverses the color cube tree and notes each colormap
1212% entry. A colormap entry is any node in the color cube tree where the
1213% of unique colors is not zero. DefineImageColormap() returns the number of
1214% colors in the image colormap.
1215%
1216% The format of the DefineImageColormap method is:
1217%
cristybb503372010-05-27 20:51:26 +00001218% size_t DefineImageColormap(Image *image,CubeInfo *cube_info,
cristy3ed852e2009-09-05 21:47:34 +00001219% NodeInfo *node_info)
1220%
1221% A description of each parameter follows.
1222%
1223% o image: the image.
1224%
1225% o cube_info: A pointer to the Cube structure.
1226%
1227% o node_info: the address of a structure of type NodeInfo which points to a
1228% node in the color cube tree that is to be pruned.
1229%
1230*/
cristybb503372010-05-27 20:51:26 +00001231static size_t DefineImageColormap(Image *image,CubeInfo *cube_info,
cristy3ed852e2009-09-05 21:47:34 +00001232 NodeInfo *node_info)
1233{
cristybb503372010-05-27 20:51:26 +00001234 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001235 i;
1236
cristybb503372010-05-27 20:51:26 +00001237 size_t
cristy3ed852e2009-09-05 21:47:34 +00001238 number_children;
1239
1240 /*
1241 Traverse any children.
1242 */
1243 number_children=cube_info->associate_alpha == MagickFalse ? 8UL : 16UL;
cristybb503372010-05-27 20:51:26 +00001244 for (i=0; i < (ssize_t) number_children; i++)
cristy3ed852e2009-09-05 21:47:34 +00001245 if (node_info->child[i] != (NodeInfo *) NULL)
cristycee97112010-05-28 00:44:52 +00001246 (void) DefineImageColormap(image,cube_info,node_info->child[i]);
cristy3ed852e2009-09-05 21:47:34 +00001247 if (node_info->number_unique != 0)
1248 {
cristya19f1d72012-08-07 18:24:38 +00001249 register double
cristy3ed852e2009-09-05 21:47:34 +00001250 alpha;
1251
cristy101ab702011-10-13 13:06:32 +00001252 register PixelInfo
cristyc47d1f82009-11-26 01:44:43 +00001253 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +00001254
1255 /*
1256 Colormap entry is defined by the mean color in this cube.
1257 */
1258 q=image->colormap+image->colors;
cristya19f1d72012-08-07 18:24:38 +00001259 alpha=(double) ((MagickOffsetType) node_info->number_unique);
cristy3e3ec3a2012-11-03 23:11:06 +00001260 alpha=PerceptibleReciprocal(alpha);
cristy3ed852e2009-09-05 21:47:34 +00001261 if (cube_info->associate_alpha == MagickFalse)
1262 {
cristy1aeeff32013-02-21 21:51:24 +00001263 q->red=(double) ClampToQuantum(alpha*QuantumRange*
1264 node_info->total_color.red);
1265 q->green=(double) ClampToQuantum(alpha*QuantumRange*
1266 node_info->total_color.green);
1267 q->blue=(double) ClampToQuantum(alpha*QuantumRange*
1268 node_info->total_color.blue);
1269 q->alpha=(double) OpaqueAlpha;
cristy3ed852e2009-09-05 21:47:34 +00001270 }
1271 else
1272 {
cristya19f1d72012-08-07 18:24:38 +00001273 double
cristy3ed852e2009-09-05 21:47:34 +00001274 opacity;
1275
cristy1aeeff32013-02-21 21:51:24 +00001276 opacity=(double) (alpha*QuantumRange*node_info->total_color.alpha);
1277 q->alpha=(double) ClampToQuantum((opacity));
cristy4c08aed2011-07-01 19:47:50 +00001278 if (q->alpha == OpaqueAlpha)
cristy3ed852e2009-09-05 21:47:34 +00001279 {
cristy1aeeff32013-02-21 21:51:24 +00001280 q->red=(double) ClampToQuantum(alpha*QuantumRange*
1281 node_info->total_color.red);
1282 q->green=(double) ClampToQuantum(alpha*QuantumRange*
1283 node_info->total_color.green);
1284 q->blue=(double) ClampToQuantum(alpha*QuantumRange*
1285 node_info->total_color.blue);
cristy3ed852e2009-09-05 21:47:34 +00001286 }
1287 else
1288 {
cristya19f1d72012-08-07 18:24:38 +00001289 double
cristy3ed852e2009-09-05 21:47:34 +00001290 gamma;
1291
cristya19f1d72012-08-07 18:24:38 +00001292 gamma=(double) (QuantumScale*q->alpha);
cristy3e3ec3a2012-11-03 23:11:06 +00001293 gamma=PerceptibleReciprocal(gamma);
cristy1aeeff32013-02-21 21:51:24 +00001294 q->red=(double) ClampToQuantum(alpha*gamma*QuantumRange*
1295 node_info->total_color.red);
1296 q->green=(double) ClampToQuantum(alpha*gamma*QuantumRange*
1297 node_info->total_color.green);
1298 q->blue=(double) ClampToQuantum(alpha*gamma*QuantumRange*
1299 node_info->total_color.blue);
cristy3ed852e2009-09-05 21:47:34 +00001300 if (node_info->number_unique > cube_info->transparent_pixels)
1301 {
1302 cube_info->transparent_pixels=node_info->number_unique;
cristybb503372010-05-27 20:51:26 +00001303 cube_info->transparent_index=(ssize_t) image->colors;
cristy3ed852e2009-09-05 21:47:34 +00001304 }
1305 }
1306 }
1307 node_info->color_number=image->colors++;
1308 }
1309 return(image->colors);
1310}
1311
1312/*
1313%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1314% %
1315% %
1316% %
1317+ D e s t r o y C u b e I n f o %
1318% %
1319% %
1320% %
1321%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1322%
1323% DestroyCubeInfo() deallocates memory associated with an image.
1324%
1325% The format of the DestroyCubeInfo method is:
1326%
1327% DestroyCubeInfo(CubeInfo *cube_info)
1328%
1329% A description of each parameter follows:
1330%
1331% o cube_info: the address of a structure of type CubeInfo.
1332%
1333*/
1334static void DestroyCubeInfo(CubeInfo *cube_info)
1335{
1336 register Nodes
1337 *nodes;
1338
1339 /*
1340 Release color cube tree storage.
1341 */
1342 do
1343 {
1344 nodes=cube_info->node_queue->next;
1345 cube_info->node_queue->nodes=(NodeInfo *) RelinquishMagickMemory(
1346 cube_info->node_queue->nodes);
1347 cube_info->node_queue=(Nodes *) RelinquishMagickMemory(
1348 cube_info->node_queue);
1349 cube_info->node_queue=nodes;
1350 } while (cube_info->node_queue != (Nodes *) NULL);
cristya321eb72013-06-23 10:42:37 +00001351 if (cube_info->memory_info != (MemoryInfo *) NULL)
1352 cube_info->memory_info=RelinquishVirtualMemory(cube_info->memory_info);
cristy3ed852e2009-09-05 21:47:34 +00001353 cube_info->quantize_info=DestroyQuantizeInfo(cube_info->quantize_info);
1354 cube_info=(CubeInfo *) RelinquishMagickMemory(cube_info);
1355}
1356
1357/*
1358%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1359% %
1360% %
1361% %
1362% D e s t r o y Q u a n t i z e I n f o %
1363% %
1364% %
1365% %
1366%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1367%
1368% DestroyQuantizeInfo() deallocates memory associated with an QuantizeInfo
1369% structure.
1370%
1371% The format of the DestroyQuantizeInfo method is:
1372%
1373% QuantizeInfo *DestroyQuantizeInfo(QuantizeInfo *quantize_info)
1374%
1375% A description of each parameter follows:
1376%
1377% o quantize_info: Specifies a pointer to an QuantizeInfo structure.
1378%
1379*/
1380MagickExport QuantizeInfo *DestroyQuantizeInfo(QuantizeInfo *quantize_info)
1381{
1382 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
1383 assert(quantize_info != (QuantizeInfo *) NULL);
1384 assert(quantize_info->signature == MagickSignature);
1385 quantize_info->signature=(~MagickSignature);
1386 quantize_info=(QuantizeInfo *) RelinquishMagickMemory(quantize_info);
1387 return(quantize_info);
1388}
1389
1390/*
1391%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1392% %
1393% %
1394% %
1395+ D i t h e r I m a g e %
1396% %
1397% %
1398% %
1399%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1400%
1401% DitherImage() distributes the difference between an original image and
1402% the corresponding color reduced algorithm to neighboring pixels using
1403% serpentine-scan Floyd-Steinberg error diffusion. DitherImage returns
1404% MagickTrue if the image is dithered otherwise MagickFalse.
1405%
1406% The format of the DitherImage method is:
1407%
cristy8a11cb12011-10-19 23:53:34 +00001408% MagickBooleanType DitherImage(Image *image,CubeInfo *cube_info,
1409% ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001410%
1411% A description of each parameter follows.
1412%
1413% o image: the image.
1414%
1415% o cube_info: A pointer to the Cube structure.
1416%
cristy8a11cb12011-10-19 23:53:34 +00001417% o exception: return any errors or warnings in this structure.
1418%
cristy3ed852e2009-09-05 21:47:34 +00001419*/
1420
cristy101ab702011-10-13 13:06:32 +00001421static RealPixelInfo **DestroyPixelThreadSet(RealPixelInfo **pixels)
cristye9717ac2011-02-20 16:17:17 +00001422{
1423 register ssize_t
1424 i;
1425
cristy101ab702011-10-13 13:06:32 +00001426 assert(pixels != (RealPixelInfo **) NULL);
cristyac245f82012-05-05 17:13:57 +00001427 for (i=0; i < (ssize_t) GetMagickResourceLimit(ThreadResource); i++)
cristy101ab702011-10-13 13:06:32 +00001428 if (pixels[i] != (RealPixelInfo *) NULL)
1429 pixels[i]=(RealPixelInfo *) RelinquishMagickMemory(pixels[i]);
1430 pixels=(RealPixelInfo **) RelinquishMagickMemory(pixels);
cristye9717ac2011-02-20 16:17:17 +00001431 return(pixels);
1432}
1433
cristy101ab702011-10-13 13:06:32 +00001434static RealPixelInfo **AcquirePixelThreadSet(const size_t count)
cristye9717ac2011-02-20 16:17:17 +00001435{
cristy101ab702011-10-13 13:06:32 +00001436 RealPixelInfo
cristye9717ac2011-02-20 16:17:17 +00001437 **pixels;
1438
1439 register ssize_t
1440 i;
1441
1442 size_t
1443 number_threads;
1444
cristy9357bdd2012-07-30 12:28:34 +00001445 number_threads=(size_t) GetMagickResourceLimit(ThreadResource);
cristy101ab702011-10-13 13:06:32 +00001446 pixels=(RealPixelInfo **) AcquireQuantumMemory(number_threads,
cristye9717ac2011-02-20 16:17:17 +00001447 sizeof(*pixels));
cristy101ab702011-10-13 13:06:32 +00001448 if (pixels == (RealPixelInfo **) NULL)
1449 return((RealPixelInfo **) NULL);
cristye9717ac2011-02-20 16:17:17 +00001450 (void) ResetMagickMemory(pixels,0,number_threads*sizeof(*pixels));
1451 for (i=0; i < (ssize_t) number_threads; i++)
1452 {
cristy7bdaee52013-02-21 21:29:02 +00001453 pixels[i]=(RealPixelInfo *) AcquireQuantumMemory(count,2*sizeof(**pixels));
cristy101ab702011-10-13 13:06:32 +00001454 if (pixels[i] == (RealPixelInfo *) NULL)
cristye9717ac2011-02-20 16:17:17 +00001455 return(DestroyPixelThreadSet(pixels));
1456 }
1457 return(pixels);
1458}
1459
cristyca972de2010-06-20 23:37:02 +00001460static inline ssize_t CacheOffset(CubeInfo *cube_info,
cristy101ab702011-10-13 13:06:32 +00001461 const RealPixelInfo *pixel)
cristyca972de2010-06-20 23:37:02 +00001462{
1463#define RedShift(pixel) (((pixel) >> CacheShift) << (0*(8-CacheShift)))
1464#define GreenShift(pixel) (((pixel) >> CacheShift) << (1*(8-CacheShift)))
1465#define BlueShift(pixel) (((pixel) >> CacheShift) << (2*(8-CacheShift)))
1466#define AlphaShift(pixel) (((pixel) >> CacheShift) << (3*(8-CacheShift)))
1467
1468 ssize_t
1469 offset;
1470
cristy6f7e0422012-12-25 20:04:53 +00001471 offset=(ssize_t) (RedShift(ScaleQuantumToChar(ClampPixel(pixel->red))) |
1472 GreenShift(ScaleQuantumToChar(ClampPixel(pixel->green))) |
1473 BlueShift(ScaleQuantumToChar(ClampPixel(pixel->blue))));
cristyca972de2010-06-20 23:37:02 +00001474 if (cube_info->associate_alpha != MagickFalse)
cristy6f7e0422012-12-25 20:04:53 +00001475 offset|=AlphaShift(ScaleQuantumToChar(ClampPixel(pixel->alpha)));
cristyca972de2010-06-20 23:37:02 +00001476 return(offset);
1477}
1478
cristy8a11cb12011-10-19 23:53:34 +00001479static MagickBooleanType FloydSteinbergDither(Image *image,CubeInfo *cube_info,
1480 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001481{
1482#define DitherImageTag "Dither/Image"
1483
cristyc4c8d132010-01-07 01:58:38 +00001484 CacheView
1485 *image_view;
1486
cristy3ed852e2009-09-05 21:47:34 +00001487 MagickBooleanType
cristye9717ac2011-02-20 16:17:17 +00001488 status;
cristy3ed852e2009-09-05 21:47:34 +00001489
cristy101ab702011-10-13 13:06:32 +00001490 RealPixelInfo
cristye9717ac2011-02-20 16:17:17 +00001491 **pixels;
cristy3ed852e2009-09-05 21:47:34 +00001492
cristy847620f2011-02-09 02:24:21 +00001493 ssize_t
cristy847620f2011-02-09 02:24:21 +00001494 y;
1495
cristy3ed852e2009-09-05 21:47:34 +00001496 /*
1497 Distribute quantization error using Floyd-Steinberg.
1498 */
cristye9717ac2011-02-20 16:17:17 +00001499 pixels=AcquirePixelThreadSet(image->columns);
cristy101ab702011-10-13 13:06:32 +00001500 if (pixels == (RealPixelInfo **) NULL)
cristy3ed852e2009-09-05 21:47:34 +00001501 return(MagickFalse);
cristye9717ac2011-02-20 16:17:17 +00001502 status=MagickTrue;
cristy46ff2672012-12-14 15:32:26 +00001503 image_view=AcquireAuthenticCacheView(image,exception);
cristybb503372010-05-27 20:51:26 +00001504 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +00001505 {
cristye9717ac2011-02-20 16:17:17 +00001506 const int
1507 id = GetOpenMPThreadId();
1508
1509 CubeInfo
1510 cube;
1511
cristy101ab702011-10-13 13:06:32 +00001512 RealPixelInfo
cristye9717ac2011-02-20 16:17:17 +00001513 *current,
1514 *previous;
1515
cristy4c08aed2011-07-01 19:47:50 +00001516 register Quantum
cristyecc31b12011-02-13 00:32:29 +00001517 *restrict q;
1518
cristybb503372010-05-27 20:51:26 +00001519 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001520 x;
1521
cristye9717ac2011-02-20 16:17:17 +00001522 size_t
1523 index;
1524
1525 ssize_t
1526 v;
1527
1528 if (status == MagickFalse)
1529 continue;
cristy3ed852e2009-09-05 21:47:34 +00001530 q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception);
cristyacd2ed22011-08-30 01:44:23 +00001531 if (q == (Quantum *) NULL)
cristye9717ac2011-02-20 16:17:17 +00001532 {
1533 status=MagickFalse;
cristy00cbdd62011-02-20 17:29:26 +00001534 continue;
cristye9717ac2011-02-20 16:17:17 +00001535 }
cristyed231572011-07-14 02:18:59 +00001536 q+=(y & 0x01)*image->columns*GetPixelChannels(image);
cristye9717ac2011-02-20 16:17:17 +00001537 cube=(*cube_info);
1538 current=pixels[id]+(y & 0x01)*image->columns;
1539 previous=pixels[id]+((y+1) & 0x01)*image->columns;
cristy4c08aed2011-07-01 19:47:50 +00001540 v=(ssize_t) ((y & 0x01) != 0 ? -1 : 1);
cristybb503372010-05-27 20:51:26 +00001541 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +00001542 {
cristy101ab702011-10-13 13:06:32 +00001543 RealPixelInfo
cristye9717ac2011-02-20 16:17:17 +00001544 color,
1545 pixel;
1546
1547 register ssize_t
1548 i;
1549
1550 ssize_t
1551 u;
1552
cristyed231572011-07-14 02:18:59 +00001553 q-=(y & 0x01)*GetPixelChannels(image);
cristy4c08aed2011-07-01 19:47:50 +00001554 u=(y & 0x01) != 0 ? (ssize_t) image->columns-1-x : x;
1555 AssociateAlphaPixel(image,&cube,q,&pixel);
cristy3ed852e2009-09-05 21:47:34 +00001556 if (x > 0)
1557 {
1558 pixel.red+=7*current[u-v].red/16;
1559 pixel.green+=7*current[u-v].green/16;
1560 pixel.blue+=7*current[u-v].blue/16;
cristye9717ac2011-02-20 16:17:17 +00001561 if (cube.associate_alpha != MagickFalse)
cristy4c08aed2011-07-01 19:47:50 +00001562 pixel.alpha+=7*current[u-v].alpha/16;
cristy3ed852e2009-09-05 21:47:34 +00001563 }
1564 if (y > 0)
1565 {
cristybb503372010-05-27 20:51:26 +00001566 if (x < (ssize_t) (image->columns-1))
cristy3ed852e2009-09-05 21:47:34 +00001567 {
1568 pixel.red+=previous[u+v].red/16;
1569 pixel.green+=previous[u+v].green/16;
1570 pixel.blue+=previous[u+v].blue/16;
cristye9717ac2011-02-20 16:17:17 +00001571 if (cube.associate_alpha != MagickFalse)
cristy4c08aed2011-07-01 19:47:50 +00001572 pixel.alpha+=previous[u+v].alpha/16;
cristy3ed852e2009-09-05 21:47:34 +00001573 }
1574 pixel.red+=5*previous[u].red/16;
1575 pixel.green+=5*previous[u].green/16;
1576 pixel.blue+=5*previous[u].blue/16;
cristye9717ac2011-02-20 16:17:17 +00001577 if (cube.associate_alpha != MagickFalse)
cristy4c08aed2011-07-01 19:47:50 +00001578 pixel.alpha+=5*previous[u].alpha/16;
cristy3ed852e2009-09-05 21:47:34 +00001579 if (x > 0)
1580 {
1581 pixel.red+=3*previous[u-v].red/16;
1582 pixel.green+=3*previous[u-v].green/16;
1583 pixel.blue+=3*previous[u-v].blue/16;
cristye9717ac2011-02-20 16:17:17 +00001584 if (cube.associate_alpha != MagickFalse)
cristy4c08aed2011-07-01 19:47:50 +00001585 pixel.alpha+=3*previous[u-v].alpha/16;
cristy3ed852e2009-09-05 21:47:34 +00001586 }
1587 }
cristy6f7e0422012-12-25 20:04:53 +00001588 pixel.red=(double) ClampPixel(pixel.red);
1589 pixel.green=(double) ClampPixel(pixel.green);
1590 pixel.blue=(double) ClampPixel(pixel.blue);
cristye9717ac2011-02-20 16:17:17 +00001591 if (cube.associate_alpha != MagickFalse)
cristy6f7e0422012-12-25 20:04:53 +00001592 pixel.alpha=(double) ClampPixel(pixel.alpha);
cristye9717ac2011-02-20 16:17:17 +00001593 i=CacheOffset(&cube,&pixel);
1594 if (cube.cache[i] < 0)
cristy3ed852e2009-09-05 21:47:34 +00001595 {
1596 register NodeInfo
1597 *node_info;
1598
cristybb503372010-05-27 20:51:26 +00001599 register size_t
cristy3ed852e2009-09-05 21:47:34 +00001600 id;
1601
1602 /*
1603 Identify the deepest node containing the pixel's color.
1604 */
cristye9717ac2011-02-20 16:17:17 +00001605 node_info=cube.root;
cristybb503372010-05-27 20:51:26 +00001606 for (index=MaxTreeDepth-1; (ssize_t) index > 0; index--)
cristy3ed852e2009-09-05 21:47:34 +00001607 {
cristye9717ac2011-02-20 16:17:17 +00001608 id=ColorToNodeId(&cube,&pixel,index);
cristy3ed852e2009-09-05 21:47:34 +00001609 if (node_info->child[id] == (NodeInfo *) NULL)
1610 break;
1611 node_info=node_info->child[id];
1612 }
1613 /*
1614 Find closest color among siblings and their children.
1615 */
cristye9717ac2011-02-20 16:17:17 +00001616 cube.target=pixel;
cristy7bdaee52013-02-21 21:29:02 +00001617 cube.distance=(double) (4.0*(QuantumRange+1.0)*(QuantumRange+1.0)+
1618 1.0);
cristye9717ac2011-02-20 16:17:17 +00001619 ClosestColor(image,&cube,node_info->parent);
1620 cube.cache[i]=(ssize_t) cube.color_number;
cristy3ed852e2009-09-05 21:47:34 +00001621 }
1622 /*
1623 Assign pixel to closest colormap entry.
1624 */
cristye9717ac2011-02-20 16:17:17 +00001625 index=(size_t) cube.cache[i];
cristy3ed852e2009-09-05 21:47:34 +00001626 if (image->storage_class == PseudoClass)
cristy4c08aed2011-07-01 19:47:50 +00001627 SetPixelIndex(image,(Quantum) index,q);
cristye9717ac2011-02-20 16:17:17 +00001628 if (cube.quantize_info->measure_error == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +00001629 {
cristye42f6582012-02-11 17:59:50 +00001630 SetPixelRed(image,ClampToQuantum(image->colormap[index].red),q);
1631 SetPixelGreen(image,ClampToQuantum(image->colormap[index].green),q);
1632 SetPixelBlue(image,ClampToQuantum(image->colormap[index].blue),q);
cristye9717ac2011-02-20 16:17:17 +00001633 if (cube.associate_alpha != MagickFalse)
cristye42f6582012-02-11 17:59:50 +00001634 SetPixelAlpha(image,ClampToQuantum(image->colormap[index].alpha),q);
cristy3ed852e2009-09-05 21:47:34 +00001635 }
1636 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
cristye9717ac2011-02-20 16:17:17 +00001637 status=MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00001638 /*
1639 Store the error.
1640 */
cristyb0de93f2013-05-03 13:39:25 +00001641 AssociateAlphaPixelInfo(&cube,image->colormap+index,&color);
cristy3ed852e2009-09-05 21:47:34 +00001642 current[u].red=pixel.red-color.red;
1643 current[u].green=pixel.green-color.green;
1644 current[u].blue=pixel.blue-color.blue;
cristye9717ac2011-02-20 16:17:17 +00001645 if (cube.associate_alpha != MagickFalse)
cristy4c08aed2011-07-01 19:47:50 +00001646 current[u].alpha=pixel.alpha-color.alpha;
cristye9717ac2011-02-20 16:17:17 +00001647 if (image->progress_monitor != (MagickProgressMonitor) NULL)
1648 {
1649 MagickBooleanType
1650 proceed;
1651
1652#if defined(MAGICKCORE_OPENMP_SUPPORT)
1653 #pragma omp critical (MagickCore_FloydSteinbergDither)
1654#endif
1655 proceed=SetImageProgress(image,DitherImageTag,(MagickOffsetType) y,
1656 image->rows);
1657 if (proceed == MagickFalse)
1658 status=MagickFalse;
1659 }
cristyed231572011-07-14 02:18:59 +00001660 q+=((y+1) & 0x01)*GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +00001661 }
1662 }
cristy3ed852e2009-09-05 21:47:34 +00001663 image_view=DestroyCacheView(image_view);
cristye9717ac2011-02-20 16:17:17 +00001664 pixels=DestroyPixelThreadSet(pixels);
cristy3ed852e2009-09-05 21:47:34 +00001665 return(MagickTrue);
1666}
1667
1668static MagickBooleanType
cristy8a11cb12011-10-19 23:53:34 +00001669 RiemersmaDither(Image *,CacheView *,CubeInfo *,const unsigned int,
1670 ExceptionInfo *exception);
cristy3ed852e2009-09-05 21:47:34 +00001671
1672static void Riemersma(Image *image,CacheView *image_view,CubeInfo *cube_info,
cristy8a11cb12011-10-19 23:53:34 +00001673 const size_t level,const unsigned int direction,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001674{
1675 if (level == 1)
1676 switch (direction)
1677 {
1678 case WestGravity:
1679 {
cristy8a11cb12011-10-19 23:53:34 +00001680 (void) RiemersmaDither(image,image_view,cube_info,EastGravity,
1681 exception);
1682 (void) RiemersmaDither(image,image_view,cube_info,SouthGravity,
1683 exception);
1684 (void) RiemersmaDither(image,image_view,cube_info,WestGravity,
1685 exception);
cristy3ed852e2009-09-05 21:47:34 +00001686 break;
1687 }
1688 case EastGravity:
1689 {
cristy8a11cb12011-10-19 23:53:34 +00001690 (void) RiemersmaDither(image,image_view,cube_info,WestGravity,
1691 exception);
1692 (void) RiemersmaDither(image,image_view,cube_info,NorthGravity,
1693 exception);
1694 (void) RiemersmaDither(image,image_view,cube_info,EastGravity,
1695 exception);
cristy3ed852e2009-09-05 21:47:34 +00001696 break;
1697 }
1698 case NorthGravity:
1699 {
cristy8a11cb12011-10-19 23:53:34 +00001700 (void) RiemersmaDither(image,image_view,cube_info,SouthGravity,
1701 exception);
1702 (void) RiemersmaDither(image,image_view,cube_info,EastGravity,
1703 exception);
1704 (void) RiemersmaDither(image,image_view,cube_info,NorthGravity,
1705 exception);
cristy3ed852e2009-09-05 21:47:34 +00001706 break;
1707 }
1708 case SouthGravity:
1709 {
cristy8a11cb12011-10-19 23:53:34 +00001710 (void) RiemersmaDither(image,image_view,cube_info,NorthGravity,
1711 exception);
1712 (void) RiemersmaDither(image,image_view,cube_info,WestGravity,
1713 exception);
1714 (void) RiemersmaDither(image,image_view,cube_info,SouthGravity,
1715 exception);
cristy3ed852e2009-09-05 21:47:34 +00001716 break;
1717 }
1718 default:
1719 break;
1720 }
1721 else
1722 switch (direction)
1723 {
1724 case WestGravity:
1725 {
cristy8a11cb12011-10-19 23:53:34 +00001726 Riemersma(image,image_view,cube_info,level-1,NorthGravity,
1727 exception);
1728 (void) RiemersmaDither(image,image_view,cube_info,EastGravity,
1729 exception);
1730 Riemersma(image,image_view,cube_info,level-1,WestGravity,
1731 exception);
1732 (void) RiemersmaDither(image,image_view,cube_info,SouthGravity,
1733 exception);
1734 Riemersma(image,image_view,cube_info,level-1,WestGravity,
1735 exception);
1736 (void) RiemersmaDither(image,image_view,cube_info,WestGravity,
1737 exception);
1738 Riemersma(image,image_view,cube_info,level-1,SouthGravity,
1739 exception);
cristy3ed852e2009-09-05 21:47:34 +00001740 break;
1741 }
1742 case EastGravity:
1743 {
cristy8a11cb12011-10-19 23:53:34 +00001744 Riemersma(image,image_view,cube_info,level-1,SouthGravity,
1745 exception);
1746 (void) RiemersmaDither(image,image_view,cube_info,WestGravity,
1747 exception);
1748 Riemersma(image,image_view,cube_info,level-1,EastGravity,
1749 exception);
1750 (void) RiemersmaDither(image,image_view,cube_info,NorthGravity,
1751 exception);
1752 Riemersma(image,image_view,cube_info,level-1,EastGravity,
1753 exception);
1754 (void) RiemersmaDither(image,image_view,cube_info,EastGravity,
1755 exception);
1756 Riemersma(image,image_view,cube_info,level-1,NorthGravity,
1757 exception);
cristy3ed852e2009-09-05 21:47:34 +00001758 break;
1759 }
1760 case NorthGravity:
1761 {
cristy8a11cb12011-10-19 23:53:34 +00001762 Riemersma(image,image_view,cube_info,level-1,WestGravity,
1763 exception);
1764 (void) RiemersmaDither(image,image_view,cube_info,SouthGravity,
1765 exception);
1766 Riemersma(image,image_view,cube_info,level-1,NorthGravity,
1767 exception);
1768 (void) RiemersmaDither(image,image_view,cube_info,EastGravity,
1769 exception);
1770 Riemersma(image,image_view,cube_info,level-1,NorthGravity,
1771 exception);
1772 (void) RiemersmaDither(image,image_view,cube_info,NorthGravity,
1773 exception);
1774 Riemersma(image,image_view,cube_info,level-1,EastGravity,
1775 exception);
cristy3ed852e2009-09-05 21:47:34 +00001776 break;
1777 }
1778 case SouthGravity:
1779 {
cristy8a11cb12011-10-19 23:53:34 +00001780 Riemersma(image,image_view,cube_info,level-1,EastGravity,
1781 exception);
1782 (void) RiemersmaDither(image,image_view,cube_info,NorthGravity,
1783 exception);
1784 Riemersma(image,image_view,cube_info,level-1,SouthGravity,
1785 exception);
1786 (void) RiemersmaDither(image,image_view,cube_info,WestGravity,
1787 exception);
1788 Riemersma(image,image_view,cube_info,level-1,SouthGravity,
1789 exception);
1790 (void) RiemersmaDither(image,image_view,cube_info,SouthGravity,
1791 exception);
1792 Riemersma(image,image_view,cube_info,level-1,WestGravity,
1793 exception);
cristy3ed852e2009-09-05 21:47:34 +00001794 break;
1795 }
1796 default:
1797 break;
1798 }
1799}
1800
1801static MagickBooleanType RiemersmaDither(Image *image,CacheView *image_view,
cristy8a11cb12011-10-19 23:53:34 +00001802 CubeInfo *cube_info,const unsigned int direction,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001803{
1804#define DitherImageTag "Dither/Image"
1805
1806 MagickBooleanType
1807 proceed;
1808
cristy101ab702011-10-13 13:06:32 +00001809 RealPixelInfo
cristy3ed852e2009-09-05 21:47:34 +00001810 color,
1811 pixel;
1812
1813 register CubeInfo
1814 *p;
1815
cristybb503372010-05-27 20:51:26 +00001816 size_t
cristy3ed852e2009-09-05 21:47:34 +00001817 index;
1818
1819 p=cube_info;
cristybb503372010-05-27 20:51:26 +00001820 if ((p->x >= 0) && (p->x < (ssize_t) image->columns) &&
1821 (p->y >= 0) && (p->y < (ssize_t) image->rows))
cristy3ed852e2009-09-05 21:47:34 +00001822 {
cristy4c08aed2011-07-01 19:47:50 +00001823 register Quantum
cristyc47d1f82009-11-26 01:44:43 +00001824 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +00001825
cristyecc31b12011-02-13 00:32:29 +00001826 register ssize_t
1827 i;
1828
cristy3ed852e2009-09-05 21:47:34 +00001829 /*
1830 Distribute error.
1831 */
cristy3ed852e2009-09-05 21:47:34 +00001832 q=GetCacheViewAuthenticPixels(image_view,p->x,p->y,1,1,exception);
cristyacd2ed22011-08-30 01:44:23 +00001833 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00001834 return(MagickFalse);
cristy4c08aed2011-07-01 19:47:50 +00001835 AssociateAlphaPixel(image,cube_info,q,&pixel);
cristy3ed852e2009-09-05 21:47:34 +00001836 for (i=0; i < ErrorQueueLength; i++)
1837 {
1838 pixel.red+=p->weights[i]*p->error[i].red;
1839 pixel.green+=p->weights[i]*p->error[i].green;
1840 pixel.blue+=p->weights[i]*p->error[i].blue;
1841 if (cube_info->associate_alpha != MagickFalse)
cristy4c08aed2011-07-01 19:47:50 +00001842 pixel.alpha+=p->weights[i]*p->error[i].alpha;
cristy3ed852e2009-09-05 21:47:34 +00001843 }
cristy6f7e0422012-12-25 20:04:53 +00001844 pixel.red=(double) ClampPixel(pixel.red);
1845 pixel.green=(double) ClampPixel(pixel.green);
1846 pixel.blue=(double) ClampPixel(pixel.blue);
cristy3ed852e2009-09-05 21:47:34 +00001847 if (cube_info->associate_alpha != MagickFalse)
cristy6f7e0422012-12-25 20:04:53 +00001848 pixel.alpha=(double) ClampPixel(pixel.alpha);
cristyca972de2010-06-20 23:37:02 +00001849 i=CacheOffset(cube_info,&pixel);
cristy3ed852e2009-09-05 21:47:34 +00001850 if (p->cache[i] < 0)
1851 {
1852 register NodeInfo
1853 *node_info;
1854
cristybb503372010-05-27 20:51:26 +00001855 register size_t
cristy3ed852e2009-09-05 21:47:34 +00001856 id;
1857
1858 /*
1859 Identify the deepest node containing the pixel's color.
1860 */
1861 node_info=p->root;
cristybb503372010-05-27 20:51:26 +00001862 for (index=MaxTreeDepth-1; (ssize_t) index > 0; index--)
cristy3ed852e2009-09-05 21:47:34 +00001863 {
1864 id=ColorToNodeId(cube_info,&pixel,index);
1865 if (node_info->child[id] == (NodeInfo *) NULL)
1866 break;
1867 node_info=node_info->child[id];
1868 }
cristyecc31b12011-02-13 00:32:29 +00001869 node_info=node_info->parent;
cristy3ed852e2009-09-05 21:47:34 +00001870 /*
1871 Find closest color among siblings and their children.
1872 */
1873 p->target=pixel;
cristya19f1d72012-08-07 18:24:38 +00001874 p->distance=(double) (4.0*(QuantumRange+1.0)*((double)
cristy3ed852e2009-09-05 21:47:34 +00001875 QuantumRange+1.0)+1.0);
1876 ClosestColor(image,p,node_info->parent);
cristybb503372010-05-27 20:51:26 +00001877 p->cache[i]=(ssize_t) p->color_number;
cristy3ed852e2009-09-05 21:47:34 +00001878 }
1879 /*
1880 Assign pixel to closest colormap entry.
1881 */
cristy4c08aed2011-07-01 19:47:50 +00001882 index=(size_t) p->cache[i];
cristy3ed852e2009-09-05 21:47:34 +00001883 if (image->storage_class == PseudoClass)
cristy4c08aed2011-07-01 19:47:50 +00001884 SetPixelIndex(image,(Quantum) index,q);
cristy3ed852e2009-09-05 21:47:34 +00001885 if (cube_info->quantize_info->measure_error == MagickFalse)
1886 {
cristye42f6582012-02-11 17:59:50 +00001887 SetPixelRed(image,ClampToQuantum(image->colormap[index].red),q);
1888 SetPixelGreen(image,ClampToQuantum(image->colormap[index].green),q);
1889 SetPixelBlue(image,ClampToQuantum(image->colormap[index].blue),q);
cristy3ed852e2009-09-05 21:47:34 +00001890 if (cube_info->associate_alpha != MagickFalse)
cristye42f6582012-02-11 17:59:50 +00001891 SetPixelAlpha(image,ClampToQuantum(image->colormap[index].alpha),q);
cristy3ed852e2009-09-05 21:47:34 +00001892 }
1893 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
1894 return(MagickFalse);
1895 /*
1896 Propagate the error as the last entry of the error queue.
1897 */
1898 (void) CopyMagickMemory(p->error,p->error+1,(ErrorQueueLength-1)*
1899 sizeof(p->error[0]));
cristyb0de93f2013-05-03 13:39:25 +00001900 AssociateAlphaPixelInfo(cube_info,image->colormap+index,&color);
cristy3ed852e2009-09-05 21:47:34 +00001901 p->error[ErrorQueueLength-1].red=pixel.red-color.red;
1902 p->error[ErrorQueueLength-1].green=pixel.green-color.green;
1903 p->error[ErrorQueueLength-1].blue=pixel.blue-color.blue;
1904 if (cube_info->associate_alpha != MagickFalse)
cristy4c08aed2011-07-01 19:47:50 +00001905 p->error[ErrorQueueLength-1].alpha=pixel.alpha-color.alpha;
cristy3ed852e2009-09-05 21:47:34 +00001906 proceed=SetImageProgress(image,DitherImageTag,p->offset,p->span);
1907 if (proceed == MagickFalse)
1908 return(MagickFalse);
1909 p->offset++;
1910 }
1911 switch (direction)
1912 {
1913 case WestGravity: p->x--; break;
1914 case EastGravity: p->x++; break;
1915 case NorthGravity: p->y--; break;
1916 case SouthGravity: p->y++; break;
1917 }
1918 return(MagickTrue);
1919}
1920
cristybb503372010-05-27 20:51:26 +00001921static inline ssize_t MagickMax(const ssize_t x,const ssize_t y)
cristy3ed852e2009-09-05 21:47:34 +00001922{
1923 if (x > y)
1924 return(x);
1925 return(y);
1926}
1927
cristybb503372010-05-27 20:51:26 +00001928static inline ssize_t MagickMin(const ssize_t x,const ssize_t y)
cristy3ed852e2009-09-05 21:47:34 +00001929{
1930 if (x < y)
1931 return(x);
1932 return(y);
1933}
1934
cristy8a11cb12011-10-19 23:53:34 +00001935static MagickBooleanType DitherImage(Image *image,CubeInfo *cube_info,
1936 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001937{
cristyc4c8d132010-01-07 01:58:38 +00001938 CacheView
1939 *image_view;
1940
cristy3ed852e2009-09-05 21:47:34 +00001941 MagickBooleanType
1942 status;
1943
cristybb503372010-05-27 20:51:26 +00001944 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001945 i;
1946
cristybb503372010-05-27 20:51:26 +00001947 size_t
cristy3ed852e2009-09-05 21:47:34 +00001948 depth;
1949
cristyfb7e9cd2011-02-20 16:26:15 +00001950 if (cube_info->quantize_info->dither_method != RiemersmaDitherMethod)
cristy8a11cb12011-10-19 23:53:34 +00001951 return(FloydSteinbergDither(image,cube_info,exception));
cristy3ed852e2009-09-05 21:47:34 +00001952 /*
cristycee97112010-05-28 00:44:52 +00001953 Distribute quantization error along a Hilbert curve.
cristy3ed852e2009-09-05 21:47:34 +00001954 */
1955 (void) ResetMagickMemory(cube_info->error,0,ErrorQueueLength*
1956 sizeof(*cube_info->error));
1957 cube_info->x=0;
1958 cube_info->y=0;
cristybb503372010-05-27 20:51:26 +00001959 i=MagickMax((ssize_t) image->columns,(ssize_t) image->rows);
cristy3ed852e2009-09-05 21:47:34 +00001960 for (depth=1; i != 0; depth++)
1961 i>>=1;
cristybb503372010-05-27 20:51:26 +00001962 if ((ssize_t) (1L << depth) < MagickMax((ssize_t) image->columns,(ssize_t) image->rows))
cristy3ed852e2009-09-05 21:47:34 +00001963 depth++;
1964 cube_info->offset=0;
1965 cube_info->span=(MagickSizeType) image->columns*image->rows;
cristy46ff2672012-12-14 15:32:26 +00001966 image_view=AcquireAuthenticCacheView(image,exception);
cristy3ed852e2009-09-05 21:47:34 +00001967 if (depth > 1)
cristy8a11cb12011-10-19 23:53:34 +00001968 Riemersma(image,image_view,cube_info,depth-1,NorthGravity,exception);
1969 status=RiemersmaDither(image,image_view,cube_info,ForgetGravity,exception);
cristy3ed852e2009-09-05 21:47:34 +00001970 image_view=DestroyCacheView(image_view);
1971 return(status);
1972}
1973
1974/*
1975%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1976% %
1977% %
1978% %
1979+ G e t C u b e I n f o %
1980% %
1981% %
1982% %
1983%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1984%
1985% GetCubeInfo() initialize the Cube data structure.
1986%
1987% The format of the GetCubeInfo method is:
1988%
1989% CubeInfo GetCubeInfo(const QuantizeInfo *quantize_info,
cristybb503372010-05-27 20:51:26 +00001990% const size_t depth,const size_t maximum_colors)
cristy3ed852e2009-09-05 21:47:34 +00001991%
1992% A description of each parameter follows.
1993%
1994% o quantize_info: Specifies a pointer to an QuantizeInfo structure.
1995%
1996% o depth: Normally, this integer value is zero or one. A zero or
1997% one tells Quantize to choose a optimal tree depth of Log4(number_colors).
1998% A tree of this depth generally allows the best representation of the
1999% reference image with the least amount of memory and the fastest
2000% computational speed. In some cases, such as an image with low color
2001% dispersion (a few number of colors), a value other than
2002% Log4(number_colors) is required. To expand the color tree completely,
2003% use a value of 8.
2004%
2005% o maximum_colors: maximum colors.
2006%
2007*/
2008static CubeInfo *GetCubeInfo(const QuantizeInfo *quantize_info,
cristybb503372010-05-27 20:51:26 +00002009 const size_t depth,const size_t maximum_colors)
cristy3ed852e2009-09-05 21:47:34 +00002010{
2011 CubeInfo
2012 *cube_info;
2013
cristya19f1d72012-08-07 18:24:38 +00002014 double
cristy3ed852e2009-09-05 21:47:34 +00002015 sum,
2016 weight;
2017
cristybb503372010-05-27 20:51:26 +00002018 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00002019 i;
2020
cristyecc31b12011-02-13 00:32:29 +00002021 size_t
2022 length;
2023
cristy3ed852e2009-09-05 21:47:34 +00002024 /*
2025 Initialize tree to describe color cube_info.
2026 */
cristy73bd4a52010-10-05 11:24:23 +00002027 cube_info=(CubeInfo *) AcquireMagickMemory(sizeof(*cube_info));
cristy3ed852e2009-09-05 21:47:34 +00002028 if (cube_info == (CubeInfo *) NULL)
2029 return((CubeInfo *) NULL);
2030 (void) ResetMagickMemory(cube_info,0,sizeof(*cube_info));
2031 cube_info->depth=depth;
2032 if (cube_info->depth > MaxTreeDepth)
2033 cube_info->depth=MaxTreeDepth;
2034 if (cube_info->depth < 2)
2035 cube_info->depth=2;
2036 cube_info->maximum_colors=maximum_colors;
2037 /*
2038 Initialize root node.
2039 */
2040 cube_info->root=GetNodeInfo(cube_info,0,0,(NodeInfo *) NULL);
2041 if (cube_info->root == (NodeInfo *) NULL)
2042 return((CubeInfo *) NULL);
2043 cube_info->root->parent=cube_info->root;
2044 cube_info->quantize_info=CloneQuantizeInfo(quantize_info);
cristycbda6112012-05-27 20:57:16 +00002045 if (cube_info->quantize_info->dither_method == NoDitherMethod)
cristy3ed852e2009-09-05 21:47:34 +00002046 return(cube_info);
2047 /*
2048 Initialize dither resources.
2049 */
2050 length=(size_t) (1UL << (4*(8-CacheShift)));
cristya321eb72013-06-23 10:42:37 +00002051 cube_info->memory_info=AcquireVirtualMemory(length,sizeof(*cube_info->cache));
2052 if (cube_info->memory_info == (MemoryInfo *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00002053 return((CubeInfo *) NULL);
cristya321eb72013-06-23 10:42:37 +00002054 cube_info->cache=(ssize_t *) GetVirtualMemoryBlob(cube_info->memory_info);
cristy3ed852e2009-09-05 21:47:34 +00002055 /*
2056 Initialize color cache.
2057 */
cristybb503372010-05-27 20:51:26 +00002058 for (i=0; i < (ssize_t) length; i++)
cristy3ed852e2009-09-05 21:47:34 +00002059 cube_info->cache[i]=(-1);
2060 /*
cristycee97112010-05-28 00:44:52 +00002061 Distribute weights along a curve of exponential decay.
cristy3ed852e2009-09-05 21:47:34 +00002062 */
2063 weight=1.0;
2064 for (i=0; i < ErrorQueueLength; i++)
2065 {
cristy3e3ec3a2012-11-03 23:11:06 +00002066 cube_info->weights[ErrorQueueLength-i-1]=PerceptibleReciprocal(weight);
cristy3ed852e2009-09-05 21:47:34 +00002067 weight*=exp(log(((double) QuantumRange+1.0))/(ErrorQueueLength-1.0));
2068 }
2069 /*
2070 Normalize the weighting factors.
2071 */
2072 weight=0.0;
2073 for (i=0; i < ErrorQueueLength; i++)
2074 weight+=cube_info->weights[i];
2075 sum=0.0;
2076 for (i=0; i < ErrorQueueLength; i++)
2077 {
2078 cube_info->weights[i]/=weight;
2079 sum+=cube_info->weights[i];
2080 }
2081 cube_info->weights[0]+=1.0-sum;
2082 return(cube_info);
2083}
2084
2085/*
2086%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2087% %
2088% %
2089% %
2090+ G e t N o d e I n f o %
2091% %
2092% %
2093% %
2094%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2095%
2096% GetNodeInfo() allocates memory for a new node in the color cube tree and
2097% presets all fields to zero.
2098%
2099% The format of the GetNodeInfo method is:
2100%
cristybb503372010-05-27 20:51:26 +00002101% NodeInfo *GetNodeInfo(CubeInfo *cube_info,const size_t id,
2102% const size_t level,NodeInfo *parent)
cristy3ed852e2009-09-05 21:47:34 +00002103%
2104% A description of each parameter follows.
2105%
2106% o node: The GetNodeInfo method returns a pointer to a queue of nodes.
2107%
2108% o id: Specifies the child number of the node.
2109%
2110% o level: Specifies the level in the storage_class the node resides.
2111%
2112*/
cristybb503372010-05-27 20:51:26 +00002113static NodeInfo *GetNodeInfo(CubeInfo *cube_info,const size_t id,
2114 const size_t level,NodeInfo *parent)
cristy3ed852e2009-09-05 21:47:34 +00002115{
2116 NodeInfo
2117 *node_info;
2118
2119 if (cube_info->free_nodes == 0)
2120 {
2121 Nodes
2122 *nodes;
2123
2124 /*
2125 Allocate a new queue of nodes.
2126 */
cristy73bd4a52010-10-05 11:24:23 +00002127 nodes=(Nodes *) AcquireMagickMemory(sizeof(*nodes));
cristy3ed852e2009-09-05 21:47:34 +00002128 if (nodes == (Nodes *) NULL)
2129 return((NodeInfo *) NULL);
2130 nodes->nodes=(NodeInfo *) AcquireQuantumMemory(NodesInAList,
2131 sizeof(*nodes->nodes));
2132 if (nodes->nodes == (NodeInfo *) NULL)
2133 return((NodeInfo *) NULL);
2134 nodes->next=cube_info->node_queue;
2135 cube_info->node_queue=nodes;
2136 cube_info->next_node=nodes->nodes;
2137 cube_info->free_nodes=NodesInAList;
2138 }
2139 cube_info->nodes++;
2140 cube_info->free_nodes--;
2141 node_info=cube_info->next_node++;
2142 (void) ResetMagickMemory(node_info,0,sizeof(*node_info));
2143 node_info->parent=parent;
2144 node_info->id=id;
2145 node_info->level=level;
2146 return(node_info);
2147}
2148
2149/*
2150%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2151% %
2152% %
2153% %
2154% G e t I m a g e Q u a n t i z e E r r o r %
2155% %
2156% %
2157% %
2158%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2159%
2160% GetImageQuantizeError() measures the difference between the original
2161% and quantized images. This difference is the total quantization error.
2162% The error is computed by summing over all pixels in an image the distance
2163% squared in RGB space between each reference pixel value and its quantized
2164% value. These values are computed:
2165%
2166% o mean_error_per_pixel: This value is the mean error for any single
2167% pixel in the image.
2168%
2169% o normalized_mean_square_error: This value is the normalized mean
2170% quantization error for any single pixel in the image. This distance
2171% measure is normalized to a range between 0 and 1. It is independent
2172% of the range of red, green, and blue values in the image.
2173%
2174% o normalized_maximum_square_error: Thsi value is the normalized
2175% maximum quantization error for any single pixel in the image. This
2176% distance measure is normalized to a range between 0 and 1. It is
2177% independent of the range of red, green, and blue values in your image.
2178%
2179% The format of the GetImageQuantizeError method is:
2180%
cristy8a11cb12011-10-19 23:53:34 +00002181% MagickBooleanType GetImageQuantizeError(Image *image,
2182% ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00002183%
2184% A description of each parameter follows.
2185%
2186% o image: the image.
2187%
cristy8a11cb12011-10-19 23:53:34 +00002188% o exception: return any errors or warnings in this structure.
2189%
cristy3ed852e2009-09-05 21:47:34 +00002190*/
cristy8a11cb12011-10-19 23:53:34 +00002191MagickExport MagickBooleanType GetImageQuantizeError(Image *image,
2192 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00002193{
cristyc4c8d132010-01-07 01:58:38 +00002194 CacheView
2195 *image_view;
2196
cristya19f1d72012-08-07 18:24:38 +00002197 double
cristy3ed852e2009-09-05 21:47:34 +00002198 alpha,
2199 area,
2200 beta,
2201 distance,
2202 maximum_error,
2203 mean_error,
2204 mean_error_per_pixel;
2205
cristybb503372010-05-27 20:51:26 +00002206 size_t
cristy3ed852e2009-09-05 21:47:34 +00002207 index;
2208
cristyecc31b12011-02-13 00:32:29 +00002209 ssize_t
2210 y;
2211
cristy3ed852e2009-09-05 21:47:34 +00002212 assert(image != (Image *) NULL);
2213 assert(image->signature == MagickSignature);
2214 if (image->debug != MagickFalse)
2215 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
cristy8a11cb12011-10-19 23:53:34 +00002216 image->total_colors=GetNumberColors(image,(FILE *) NULL,exception);
cristy3ed852e2009-09-05 21:47:34 +00002217 (void) ResetMagickMemory(&image->error,0,sizeof(image->error));
2218 if (image->storage_class == DirectClass)
2219 return(MagickTrue);
2220 alpha=1.0;
2221 beta=1.0;
2222 area=3.0*image->columns*image->rows;
2223 maximum_error=0.0;
2224 mean_error_per_pixel=0.0;
2225 mean_error=0.0;
cristy46ff2672012-12-14 15:32:26 +00002226 image_view=AcquireVirtualCacheView(image,exception);
cristybb503372010-05-27 20:51:26 +00002227 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +00002228 {
cristy4c08aed2011-07-01 19:47:50 +00002229 register const Quantum
cristyc47d1f82009-11-26 01:44:43 +00002230 *restrict p;
cristy3ed852e2009-09-05 21:47:34 +00002231
cristybb503372010-05-27 20:51:26 +00002232 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00002233 x;
2234
2235 p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +00002236 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00002237 break;
cristybb503372010-05-27 20:51:26 +00002238 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +00002239 {
cristy4c08aed2011-07-01 19:47:50 +00002240 index=1UL*GetPixelIndex(image,p);
cristy8a46d822012-08-28 23:32:39 +00002241 if (image->alpha_trait == BlendPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +00002242 {
cristya19f1d72012-08-07 18:24:38 +00002243 alpha=(double) (QuantumScale*GetPixelAlpha(image,p));
2244 beta=(double) (QuantumScale*image->colormap[index].alpha);
cristy3ed852e2009-09-05 21:47:34 +00002245 }
cristy4c08aed2011-07-01 19:47:50 +00002246 distance=fabs(alpha*GetPixelRed(image,p)-beta*
cristy01e4e7d2011-05-01 23:00:41 +00002247 image->colormap[index].red);
cristy3ed852e2009-09-05 21:47:34 +00002248 mean_error_per_pixel+=distance;
2249 mean_error+=distance*distance;
2250 if (distance > maximum_error)
2251 maximum_error=distance;
cristy4c08aed2011-07-01 19:47:50 +00002252 distance=fabs(alpha*GetPixelGreen(image,p)-beta*
cristy01e4e7d2011-05-01 23:00:41 +00002253 image->colormap[index].green);
cristy3ed852e2009-09-05 21:47:34 +00002254 mean_error_per_pixel+=distance;
2255 mean_error+=distance*distance;
2256 if (distance > maximum_error)
2257 maximum_error=distance;
cristy4c08aed2011-07-01 19:47:50 +00002258 distance=fabs(alpha*GetPixelBlue(image,p)-beta*
cristy01e4e7d2011-05-01 23:00:41 +00002259 image->colormap[index].blue);
cristy3ed852e2009-09-05 21:47:34 +00002260 mean_error_per_pixel+=distance;
2261 mean_error+=distance*distance;
2262 if (distance > maximum_error)
2263 maximum_error=distance;
cristyed231572011-07-14 02:18:59 +00002264 p+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +00002265 }
2266 }
2267 image_view=DestroyCacheView(image_view);
2268 image->error.mean_error_per_pixel=(double) mean_error_per_pixel/area;
2269 image->error.normalized_mean_error=(double) QuantumScale*QuantumScale*
2270 mean_error/area;
2271 image->error.normalized_maximum_error=(double) QuantumScale*maximum_error;
2272 return(MagickTrue);
2273}
2274
2275/*
2276%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2277% %
2278% %
2279% %
2280% G e t Q u a n t i z e I n f o %
2281% %
2282% %
2283% %
2284%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2285%
2286% GetQuantizeInfo() initializes the QuantizeInfo structure.
2287%
2288% The format of the GetQuantizeInfo method is:
2289%
2290% GetQuantizeInfo(QuantizeInfo *quantize_info)
2291%
2292% A description of each parameter follows:
2293%
2294% o quantize_info: Specifies a pointer to a QuantizeInfo structure.
2295%
2296*/
2297MagickExport void GetQuantizeInfo(QuantizeInfo *quantize_info)
2298{
2299 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
2300 assert(quantize_info != (QuantizeInfo *) NULL);
2301 (void) ResetMagickMemory(quantize_info,0,sizeof(*quantize_info));
2302 quantize_info->number_colors=256;
cristy3ed852e2009-09-05 21:47:34 +00002303 quantize_info->dither_method=RiemersmaDitherMethod;
2304 quantize_info->colorspace=UndefinedColorspace;
2305 quantize_info->measure_error=MagickFalse;
2306 quantize_info->signature=MagickSignature;
2307}
2308
2309/*
2310%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2311% %
2312% %
2313% %
cristy018f07f2011-09-04 21:15:19 +00002314% P o s t e r i z e I m a g e %
cristy3ed852e2009-09-05 21:47:34 +00002315% %
2316% %
2317% %
2318%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2319%
2320% PosterizeImage() reduces the image to a limited number of colors for a
2321% "poster" effect.
2322%
2323% The format of the PosterizeImage method is:
2324%
cristybb503372010-05-27 20:51:26 +00002325% MagickBooleanType PosterizeImage(Image *image,const size_t levels,
cristycbda6112012-05-27 20:57:16 +00002326% const DitherMethod dither_method,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00002327%
2328% A description of each parameter follows:
2329%
2330% o image: Specifies a pointer to an Image structure.
2331%
2332% o levels: Number of color levels allowed in each channel. Very low values
2333% (2, 3, or 4) have the most visible effect.
2334%
cristycbda6112012-05-27 20:57:16 +00002335% o dither_method: choose from UndefinedDitherMethod, NoDitherMethod,
2336% RiemersmaDitherMethod, FloydSteinbergDitherMethod.
cristy3ed852e2009-09-05 21:47:34 +00002337%
cristy018f07f2011-09-04 21:15:19 +00002338% o exception: return any errors or warnings in this structure.
2339%
cristy3ed852e2009-09-05 21:47:34 +00002340*/
cristyd1a2c0f2011-02-09 14:14:50 +00002341
cristy72844f12013-04-28 23:52:36 +00002342static inline double MagickRound(double x)
cristy4d727152011-02-10 19:57:21 +00002343{
2344 /*
cristyecc31b12011-02-13 00:32:29 +00002345 Round the fraction to nearest integer.
cristy4d727152011-02-10 19:57:21 +00002346 */
cristyae0a3fc2013-04-29 08:29:35 +00002347 if ((x-floor(x)) < (ceil(x)-x))
cristy72844f12013-04-28 23:52:36 +00002348 return(floor(x));
2349 return(ceil(x));
cristy4d727152011-02-10 19:57:21 +00002350}
2351
cristyd1a2c0f2011-02-09 14:14:50 +00002352MagickExport MagickBooleanType PosterizeImage(Image *image,const size_t levels,
cristycbda6112012-05-27 20:57:16 +00002353 const DitherMethod dither_method,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00002354{
cristyd1a2c0f2011-02-09 14:14:50 +00002355#define PosterizeImageTag "Posterize/Image"
cristy4d727152011-02-10 19:57:21 +00002356#define PosterizePixel(pixel) (Quantum) (QuantumRange*(MagickRound( \
cristy3e9cad02011-02-20 01:42:00 +00002357 QuantumScale*pixel*(levels-1)))/MagickMax((ssize_t) levels-1,1))
cristyd1a2c0f2011-02-09 14:14:50 +00002358
cristyc4c8d132010-01-07 01:58:38 +00002359 CacheView
cristyd1a2c0f2011-02-09 14:14:50 +00002360 *image_view;
cristyc4c8d132010-01-07 01:58:38 +00002361
cristy3ed852e2009-09-05 21:47:34 +00002362 MagickBooleanType
2363 status;
2364
cristyd1a2c0f2011-02-09 14:14:50 +00002365 MagickOffsetType
2366 progress;
2367
cristy3ed852e2009-09-05 21:47:34 +00002368 QuantizeInfo
2369 *quantize_info;
2370
cristy847620f2011-02-09 02:24:21 +00002371 register ssize_t
2372 i;
2373
cristy847620f2011-02-09 02:24:21 +00002374 ssize_t
cristyd1a2c0f2011-02-09 14:14:50 +00002375 y;
cristy847620f2011-02-09 02:24:21 +00002376
cristy3ed852e2009-09-05 21:47:34 +00002377 assert(image != (Image *) NULL);
2378 assert(image->signature == MagickSignature);
2379 if (image->debug != MagickFalse)
2380 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
cristyd1a2c0f2011-02-09 14:14:50 +00002381 if (image->storage_class == PseudoClass)
2382#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristyac245f82012-05-05 17:13:57 +00002383 #pragma omp parallel for schedule(static,4) shared(progress,status) \
cristycb7dfcc2013-01-06 18:34:59 +00002384 magick_threads(image,image,1,1)
cristyd1a2c0f2011-02-09 14:14:50 +00002385#endif
2386 for (i=0; i < (ssize_t) image->colors; i++)
cristy3ed852e2009-09-05 21:47:34 +00002387 {
cristyd1a2c0f2011-02-09 14:14:50 +00002388 /*
2389 Posterize colormap.
2390 */
cristyed231572011-07-14 02:18:59 +00002391 if ((GetPixelRedTraits(image) & UpdatePixelTrait) != 0)
cristye42f6582012-02-11 17:59:50 +00002392 image->colormap[i].red=(double)
2393 PosterizePixel(image->colormap[i].red);
cristyed231572011-07-14 02:18:59 +00002394 if ((GetPixelGreenTraits(image) & UpdatePixelTrait) != 0)
cristye42f6582012-02-11 17:59:50 +00002395 image->colormap[i].green=(double)
2396 PosterizePixel(image->colormap[i].green);
cristyed231572011-07-14 02:18:59 +00002397 if ((GetPixelBlueTraits(image) & UpdatePixelTrait) != 0)
cristye42f6582012-02-11 17:59:50 +00002398 image->colormap[i].blue=(double)
2399 PosterizePixel(image->colormap[i].blue);
cristyed231572011-07-14 02:18:59 +00002400 if ((GetPixelAlphaTraits(image) & UpdatePixelTrait) != 0)
cristye42f6582012-02-11 17:59:50 +00002401 image->colormap[i].alpha=(double)
2402 PosterizePixel(image->colormap[i].alpha);
cristy3ed852e2009-09-05 21:47:34 +00002403 }
cristyd1a2c0f2011-02-09 14:14:50 +00002404 /*
2405 Posterize image.
2406 */
2407 status=MagickTrue;
2408 progress=0;
cristy46ff2672012-12-14 15:32:26 +00002409 image_view=AcquireAuthenticCacheView(image,exception);
cristyd1a2c0f2011-02-09 14:14:50 +00002410#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristyac245f82012-05-05 17:13:57 +00002411 #pragma omp parallel for schedule(static,4) shared(progress,status) \
cristy5e6b2592012-12-19 14:08:11 +00002412 magick_threads(image,image,image->rows,1)
cristyd1a2c0f2011-02-09 14:14:50 +00002413#endif
2414 for (y=0; y < (ssize_t) image->rows; y++)
2415 {
cristy4c08aed2011-07-01 19:47:50 +00002416 register Quantum
cristyd1a2c0f2011-02-09 14:14:50 +00002417 *restrict q;
2418
2419 register ssize_t
2420 x;
2421
2422 if (status == MagickFalse)
2423 continue;
2424 q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception);
cristyacd2ed22011-08-30 01:44:23 +00002425 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00002426 {
cristyd1a2c0f2011-02-09 14:14:50 +00002427 status=MagickFalse;
2428 continue;
cristy3ed852e2009-09-05 21:47:34 +00002429 }
cristyd1a2c0f2011-02-09 14:14:50 +00002430 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +00002431 {
cristyed231572011-07-14 02:18:59 +00002432 if ((GetPixelRedTraits(image) & UpdatePixelTrait) != 0)
cristy4c08aed2011-07-01 19:47:50 +00002433 SetPixelRed(image,PosterizePixel(GetPixelRed(image,q)),q);
cristyed231572011-07-14 02:18:59 +00002434 if ((GetPixelGreenTraits(image) & UpdatePixelTrait) != 0)
cristy4c08aed2011-07-01 19:47:50 +00002435 SetPixelGreen(image,PosterizePixel(GetPixelGreen(image,q)),q);
cristyed231572011-07-14 02:18:59 +00002436 if ((GetPixelBlueTraits(image) & UpdatePixelTrait) != 0)
cristy4c08aed2011-07-01 19:47:50 +00002437 SetPixelBlue(image,PosterizePixel(GetPixelBlue(image,q)),q);
cristyed231572011-07-14 02:18:59 +00002438 if (((GetPixelBlackTraits(image) & UpdatePixelTrait) != 0) &&
cristy4c08aed2011-07-01 19:47:50 +00002439 (image->colorspace == CMYKColorspace))
2440 SetPixelBlack(image,PosterizePixel(GetPixelBlack(image,q)),q);
cristyed231572011-07-14 02:18:59 +00002441 if (((GetPixelAlphaTraits(image) & UpdatePixelTrait) != 0) &&
cristy8a46d822012-08-28 23:32:39 +00002442 (image->alpha_trait == BlendPixelTrait))
cristy4c08aed2011-07-01 19:47:50 +00002443 SetPixelAlpha(image,PosterizePixel(GetPixelAlpha(image,q)),q);
cristyed231572011-07-14 02:18:59 +00002444 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +00002445 }
cristyd1a2c0f2011-02-09 14:14:50 +00002446 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
2447 status=MagickFalse;
2448 if (image->progress_monitor != (MagickProgressMonitor) NULL)
2449 {
2450 MagickBooleanType
2451 proceed;
2452
2453#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy13020672011-07-08 02:33:26 +00002454 #pragma omp critical (MagickCore_PosterizeImage)
cristyd1a2c0f2011-02-09 14:14:50 +00002455#endif
2456 proceed=SetImageProgress(image,PosterizeImageTag,progress++,
2457 image->rows);
2458 if (proceed == MagickFalse)
2459 status=MagickFalse;
2460 }
2461 }
2462 image_view=DestroyCacheView(image_view);
cristy3ed852e2009-09-05 21:47:34 +00002463 quantize_info=AcquireQuantizeInfo((ImageInfo *) NULL);
cristyd1a2c0f2011-02-09 14:14:50 +00002464 quantize_info->number_colors=(size_t) MagickMin((ssize_t) levels*levels*
2465 levels,MaxColormapSize+1);
cristycbda6112012-05-27 20:57:16 +00002466 quantize_info->dither_method=dither_method;
cristy3e9cad02011-02-20 01:42:00 +00002467 quantize_info->tree_depth=MaxTreeDepth;
cristy018f07f2011-09-04 21:15:19 +00002468 status=QuantizeImage(quantize_info,image,exception);
cristy3ed852e2009-09-05 21:47:34 +00002469 quantize_info=DestroyQuantizeInfo(quantize_info);
cristy3ed852e2009-09-05 21:47:34 +00002470 return(status);
2471}
2472
2473/*
2474%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2475% %
2476% %
2477% %
2478+ P r u n e C h i l d %
2479% %
2480% %
2481% %
2482%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2483%
2484% PruneChild() deletes the given node and merges its statistics into its
2485% parent.
2486%
2487% The format of the PruneSubtree method is:
2488%
2489% PruneChild(const Image *image,CubeInfo *cube_info,
2490% const NodeInfo *node_info)
2491%
2492% A description of each parameter follows.
2493%
2494% o image: the image.
2495%
2496% o cube_info: A pointer to the Cube structure.
2497%
2498% o node_info: pointer to node in color cube tree that is to be pruned.
2499%
2500*/
2501static void PruneChild(const Image *image,CubeInfo *cube_info,
2502 const NodeInfo *node_info)
2503{
2504 NodeInfo
2505 *parent;
2506
cristybb503372010-05-27 20:51:26 +00002507 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00002508 i;
2509
cristybb503372010-05-27 20:51:26 +00002510 size_t
cristy3ed852e2009-09-05 21:47:34 +00002511 number_children;
2512
2513 /*
2514 Traverse any children.
2515 */
2516 number_children=cube_info->associate_alpha == MagickFalse ? 8UL : 16UL;
cristybb503372010-05-27 20:51:26 +00002517 for (i=0; i < (ssize_t) number_children; i++)
cristy3ed852e2009-09-05 21:47:34 +00002518 if (node_info->child[i] != (NodeInfo *) NULL)
2519 PruneChild(image,cube_info,node_info->child[i]);
2520 /*
2521 Merge color statistics into parent.
2522 */
2523 parent=node_info->parent;
2524 parent->number_unique+=node_info->number_unique;
2525 parent->total_color.red+=node_info->total_color.red;
2526 parent->total_color.green+=node_info->total_color.green;
2527 parent->total_color.blue+=node_info->total_color.blue;
cristy4c08aed2011-07-01 19:47:50 +00002528 parent->total_color.alpha+=node_info->total_color.alpha;
cristy3ed852e2009-09-05 21:47:34 +00002529 parent->child[node_info->id]=(NodeInfo *) NULL;
2530 cube_info->nodes--;
2531}
2532
2533/*
2534%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2535% %
2536% %
2537% %
2538+ P r u n e L e v e l %
2539% %
2540% %
2541% %
2542%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2543%
2544% PruneLevel() deletes all nodes at the bottom level of the color tree merging
2545% their color statistics into their parent node.
2546%
2547% The format of the PruneLevel method is:
2548%
2549% PruneLevel(const Image *image,CubeInfo *cube_info,
2550% const NodeInfo *node_info)
2551%
2552% A description of each parameter follows.
2553%
2554% o image: the image.
2555%
2556% o cube_info: A pointer to the Cube structure.
2557%
2558% o node_info: pointer to node in color cube tree that is to be pruned.
2559%
2560*/
2561static void PruneLevel(const Image *image,CubeInfo *cube_info,
2562 const NodeInfo *node_info)
2563{
cristybb503372010-05-27 20:51:26 +00002564 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00002565 i;
2566
cristybb503372010-05-27 20:51:26 +00002567 size_t
cristy3ed852e2009-09-05 21:47:34 +00002568 number_children;
2569
2570 /*
2571 Traverse any children.
2572 */
2573 number_children=cube_info->associate_alpha == MagickFalse ? 8UL : 16UL;
cristybb503372010-05-27 20:51:26 +00002574 for (i=0; i < (ssize_t) number_children; i++)
cristy3ed852e2009-09-05 21:47:34 +00002575 if (node_info->child[i] != (NodeInfo *) NULL)
2576 PruneLevel(image,cube_info,node_info->child[i]);
2577 if (node_info->level == cube_info->depth)
2578 PruneChild(image,cube_info,node_info);
2579}
2580
2581/*
2582%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2583% %
2584% %
2585% %
2586+ P r u n e T o C u b e D e p t h %
2587% %
2588% %
2589% %
2590%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2591%
2592% PruneToCubeDepth() deletes any nodes at a depth greater than
2593% cube_info->depth while merging their color statistics into their parent
2594% node.
2595%
2596% The format of the PruneToCubeDepth method is:
2597%
2598% PruneToCubeDepth(const Image *image,CubeInfo *cube_info,
2599% const NodeInfo *node_info)
2600%
2601% A description of each parameter follows.
2602%
2603% o cube_info: A pointer to the Cube structure.
2604%
2605% o node_info: pointer to node in color cube tree that is to be pruned.
2606%
2607*/
2608static void PruneToCubeDepth(const Image *image,CubeInfo *cube_info,
2609 const NodeInfo *node_info)
2610{
cristybb503372010-05-27 20:51:26 +00002611 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00002612 i;
2613
cristybb503372010-05-27 20:51:26 +00002614 size_t
cristy3ed852e2009-09-05 21:47:34 +00002615 number_children;
2616
2617 /*
2618 Traverse any children.
2619 */
2620 number_children=cube_info->associate_alpha == MagickFalse ? 8UL : 16UL;
cristybb503372010-05-27 20:51:26 +00002621 for (i=0; i < (ssize_t) number_children; i++)
cristy3ed852e2009-09-05 21:47:34 +00002622 if (node_info->child[i] != (NodeInfo *) NULL)
2623 PruneToCubeDepth(image,cube_info,node_info->child[i]);
2624 if (node_info->level > cube_info->depth)
2625 PruneChild(image,cube_info,node_info);
2626}
2627
2628/*
2629%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2630% %
2631% %
2632% %
2633% Q u a n t i z e I m a g e %
2634% %
2635% %
2636% %
2637%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2638%
2639% QuantizeImage() analyzes the colors within a reference image and chooses a
2640% fixed number of colors to represent the image. The goal of the algorithm
2641% is to minimize the color difference between the input and output image while
2642% minimizing the processing time.
2643%
2644% The format of the QuantizeImage method is:
2645%
2646% MagickBooleanType QuantizeImage(const QuantizeInfo *quantize_info,
cristy018f07f2011-09-04 21:15:19 +00002647% Image *image,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00002648%
2649% A description of each parameter follows:
2650%
2651% o quantize_info: Specifies a pointer to an QuantizeInfo structure.
2652%
2653% o image: the image.
2654%
cristy018f07f2011-09-04 21:15:19 +00002655% o exception: return any errors or warnings in this structure.
2656%
cristy3ed852e2009-09-05 21:47:34 +00002657*/
cristy5f7dca62011-08-12 12:38:05 +00002658
2659static MagickBooleanType DirectToColormapImage(Image *image,
2660 ExceptionInfo *exception)
2661{
2662 CacheView
2663 *image_view;
2664
2665 MagickBooleanType
2666 status;
2667
2668 register ssize_t
2669 i;
2670
2671 size_t
2672 number_colors;
2673
2674 ssize_t
2675 y;
2676
2677 status=MagickTrue;
2678 number_colors=(size_t) (image->columns*image->rows);
cristy018f07f2011-09-04 21:15:19 +00002679 if (AcquireImageColormap(image,number_colors,exception) == MagickFalse)
cristy5f7dca62011-08-12 12:38:05 +00002680 ThrowBinaryException(ResourceLimitError,"MemoryAllocationFailed",
2681 image->filename);
2682 if (image->colors != number_colors)
2683 return(MagickFalse);
2684 i=0;
cristy46ff2672012-12-14 15:32:26 +00002685 image_view=AcquireAuthenticCacheView(image,exception);
cristy5f7dca62011-08-12 12:38:05 +00002686 for (y=0; y < (ssize_t) image->rows; y++)
2687 {
2688 MagickBooleanType
2689 proceed;
2690
2691 register Quantum
2692 *restrict q;
2693
2694 register ssize_t
2695 x;
2696
2697 q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception);
2698 if (q == (Quantum *) NULL)
2699 break;
2700 for (x=0; x < (ssize_t) image->columns; x++)
2701 {
cristye42f6582012-02-11 17:59:50 +00002702 image->colormap[i].red=(double) GetPixelRed(image,q);
2703 image->colormap[i].green=(double) GetPixelGreen(image,q);
2704 image->colormap[i].blue=(double) GetPixelBlue(image,q);
2705 image->colormap[i].alpha=(double) GetPixelAlpha(image,q);
cristy5f7dca62011-08-12 12:38:05 +00002706 SetPixelIndex(image,(Quantum) i,q);
2707 i++;
2708 q+=GetPixelChannels(image);
2709 }
2710 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
2711 break;
2712 proceed=SetImageProgress(image,AssignImageTag,(MagickOffsetType) y,
2713 image->rows);
2714 if (proceed == MagickFalse)
2715 status=MagickFalse;
2716 }
2717 image_view=DestroyCacheView(image_view);
2718 return(status);
2719}
2720
cristy3ed852e2009-09-05 21:47:34 +00002721MagickExport MagickBooleanType QuantizeImage(const QuantizeInfo *quantize_info,
cristy018f07f2011-09-04 21:15:19 +00002722 Image *image,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00002723{
2724 CubeInfo
2725 *cube_info;
2726
2727 MagickBooleanType
2728 status;
2729
cristybb503372010-05-27 20:51:26 +00002730 size_t
cristy3ed852e2009-09-05 21:47:34 +00002731 depth,
2732 maximum_colors;
2733
2734 assert(quantize_info != (const QuantizeInfo *) NULL);
2735 assert(quantize_info->signature == MagickSignature);
2736 assert(image != (Image *) NULL);
2737 assert(image->signature == MagickSignature);
2738 if (image->debug != MagickFalse)
2739 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
2740 maximum_colors=quantize_info->number_colors;
2741 if (maximum_colors == 0)
2742 maximum_colors=MaxColormapSize;
2743 if (maximum_colors > MaxColormapSize)
2744 maximum_colors=MaxColormapSize;
cristy8a46d822012-08-28 23:32:39 +00002745 if (image->alpha_trait != BlendPixelTrait)
cristy400e7012012-08-08 13:41:59 +00002746 {
2747 if ((image->columns*image->rows) <= maximum_colors)
2748 (void) DirectToColormapImage(image,exception);
cristyaeded782012-09-11 23:39:36 +00002749 if (IsImageGray(image,exception) != MagickFalse)
cristy400e7012012-08-08 13:41:59 +00002750 (void) SetGrayscaleImage(image,exception);
2751 }
cristy3ed852e2009-09-05 21:47:34 +00002752 if ((image->storage_class == PseudoClass) &&
2753 (image->colors <= maximum_colors))
2754 return(MagickTrue);
2755 depth=quantize_info->tree_depth;
2756 if (depth == 0)
2757 {
cristybb503372010-05-27 20:51:26 +00002758 size_t
cristy3ed852e2009-09-05 21:47:34 +00002759 colors;
2760
2761 /*
2762 Depth of color tree is: Log4(colormap size)+2.
2763 */
2764 colors=maximum_colors;
2765 for (depth=1; colors != 0; depth++)
2766 colors>>=2;
cristycbda6112012-05-27 20:57:16 +00002767 if ((quantize_info->dither_method != NoDitherMethod) && (depth > 2))
cristy3ed852e2009-09-05 21:47:34 +00002768 depth--;
cristy8a46d822012-08-28 23:32:39 +00002769 if ((image->alpha_trait == BlendPixelTrait) && (depth > 5))
cristy3ed852e2009-09-05 21:47:34 +00002770 depth--;
2771 }
2772 /*
2773 Initialize color cube.
2774 */
2775 cube_info=GetCubeInfo(quantize_info,depth,maximum_colors);
2776 if (cube_info == (CubeInfo *) NULL)
2777 ThrowBinaryException(ResourceLimitError,"MemoryAllocationFailed",
2778 image->filename);
cristy8a11cb12011-10-19 23:53:34 +00002779 status=ClassifyImageColors(cube_info,image,exception);
cristy3ed852e2009-09-05 21:47:34 +00002780 if (status != MagickFalse)
2781 {
2782 /*
2783 Reduce the number of colors in the image.
2784 */
2785 ReduceImageColors(image,cube_info);
cristy018f07f2011-09-04 21:15:19 +00002786 status=AssignImageColors(image,cube_info,exception);
cristy3ed852e2009-09-05 21:47:34 +00002787 }
2788 DestroyCubeInfo(cube_info);
2789 return(status);
2790}
2791
2792/*
2793%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2794% %
2795% %
2796% %
2797% Q u a n t i z e I m a g e s %
2798% %
2799% %
2800% %
2801%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2802%
2803% QuantizeImages() analyzes the colors within a set of reference images and
2804% chooses a fixed number of colors to represent the set. The goal of the
2805% algorithm is to minimize the color difference between the input and output
2806% images while minimizing the processing time.
2807%
2808% The format of the QuantizeImages method is:
2809%
2810% MagickBooleanType QuantizeImages(const QuantizeInfo *quantize_info,
cristy018f07f2011-09-04 21:15:19 +00002811% Image *images,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00002812%
2813% A description of each parameter follows:
2814%
2815% o quantize_info: Specifies a pointer to an QuantizeInfo structure.
2816%
2817% o images: Specifies a pointer to a list of Image structures.
2818%
cristy018f07f2011-09-04 21:15:19 +00002819% o exception: return any errors or warnings in this structure.
2820%
cristy3ed852e2009-09-05 21:47:34 +00002821*/
2822MagickExport MagickBooleanType QuantizeImages(const QuantizeInfo *quantize_info,
cristy018f07f2011-09-04 21:15:19 +00002823 Image *images,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00002824{
2825 CubeInfo
2826 *cube_info;
2827
2828 Image
2829 *image;
2830
2831 MagickBooleanType
2832 proceed,
2833 status;
2834
2835 MagickProgressMonitor
2836 progress_monitor;
2837
cristybb503372010-05-27 20:51:26 +00002838 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00002839 i;
2840
cristybb503372010-05-27 20:51:26 +00002841 size_t
cristy3ed852e2009-09-05 21:47:34 +00002842 depth,
2843 maximum_colors,
2844 number_images;
2845
2846 assert(quantize_info != (const QuantizeInfo *) NULL);
2847 assert(quantize_info->signature == MagickSignature);
2848 assert(images != (Image *) NULL);
2849 assert(images->signature == MagickSignature);
2850 if (images->debug != MagickFalse)
2851 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",images->filename);
2852 if (GetNextImageInList(images) == (Image *) NULL)
2853 {
2854 /*
2855 Handle a single image with QuantizeImage.
2856 */
cristy018f07f2011-09-04 21:15:19 +00002857 status=QuantizeImage(quantize_info,images,exception);
cristy3ed852e2009-09-05 21:47:34 +00002858 return(status);
2859 }
2860 status=MagickFalse;
2861 maximum_colors=quantize_info->number_colors;
2862 if (maximum_colors == 0)
2863 maximum_colors=MaxColormapSize;
2864 if (maximum_colors > MaxColormapSize)
2865 maximum_colors=MaxColormapSize;
2866 depth=quantize_info->tree_depth;
2867 if (depth == 0)
2868 {
cristybb503372010-05-27 20:51:26 +00002869 size_t
cristy3ed852e2009-09-05 21:47:34 +00002870 colors;
2871
2872 /*
2873 Depth of color tree is: Log4(colormap size)+2.
2874 */
2875 colors=maximum_colors;
2876 for (depth=1; colors != 0; depth++)
2877 colors>>=2;
cristycbda6112012-05-27 20:57:16 +00002878 if (quantize_info->dither_method != NoDitherMethod)
cristy3ed852e2009-09-05 21:47:34 +00002879 depth--;
2880 }
2881 /*
2882 Initialize color cube.
2883 */
2884 cube_info=GetCubeInfo(quantize_info,depth,maximum_colors);
2885 if (cube_info == (CubeInfo *) NULL)
2886 {
cristy8a11cb12011-10-19 23:53:34 +00002887 (void) ThrowMagickException(exception,GetMagickModule(),
cristyefe601c2013-01-05 17:51:12 +00002888 ResourceLimitError,"MemoryAllocationFailed","`%s'",images->filename);
cristy3ed852e2009-09-05 21:47:34 +00002889 return(MagickFalse);
2890 }
2891 number_images=GetImageListLength(images);
2892 image=images;
2893 for (i=0; image != (Image *) NULL; i++)
2894 {
2895 progress_monitor=SetImageProgressMonitor(image,(MagickProgressMonitor) NULL,
2896 image->client_data);
cristy8a11cb12011-10-19 23:53:34 +00002897 status=ClassifyImageColors(cube_info,image,exception);
cristy3ed852e2009-09-05 21:47:34 +00002898 if (status == MagickFalse)
2899 break;
2900 (void) SetImageProgressMonitor(image,progress_monitor,image->client_data);
cristycee97112010-05-28 00:44:52 +00002901 proceed=SetImageProgress(image,AssignImageTag,(MagickOffsetType) i,
2902 number_images);
cristy3ed852e2009-09-05 21:47:34 +00002903 if (proceed == MagickFalse)
2904 break;
2905 image=GetNextImageInList(image);
2906 }
2907 if (status != MagickFalse)
2908 {
2909 /*
2910 Reduce the number of colors in an image sequence.
2911 */
2912 ReduceImageColors(images,cube_info);
2913 image=images;
2914 for (i=0; image != (Image *) NULL; i++)
2915 {
2916 progress_monitor=SetImageProgressMonitor(image,(MagickProgressMonitor)
2917 NULL,image->client_data);
cristy018f07f2011-09-04 21:15:19 +00002918 status=AssignImageColors(image,cube_info,exception);
cristy3ed852e2009-09-05 21:47:34 +00002919 if (status == MagickFalse)
2920 break;
2921 (void) SetImageProgressMonitor(image,progress_monitor,
2922 image->client_data);
cristycee97112010-05-28 00:44:52 +00002923 proceed=SetImageProgress(image,AssignImageTag,(MagickOffsetType) i,
2924 number_images);
cristy3ed852e2009-09-05 21:47:34 +00002925 if (proceed == MagickFalse)
2926 break;
2927 image=GetNextImageInList(image);
2928 }
2929 }
2930 DestroyCubeInfo(cube_info);
2931 return(status);
2932}
2933
2934/*
2935%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2936% %
2937% %
2938% %
2939+ R e d u c e %
2940% %
2941% %
2942% %
2943%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2944%
2945% Reduce() traverses the color cube tree and prunes any node whose
2946% quantization error falls below a particular threshold.
2947%
2948% The format of the Reduce method is:
2949%
2950% Reduce(const Image *image,CubeInfo *cube_info,const NodeInfo *node_info)
2951%
2952% A description of each parameter follows.
2953%
2954% o image: the image.
2955%
2956% o cube_info: A pointer to the Cube structure.
2957%
2958% o node_info: pointer to node in color cube tree that is to be pruned.
2959%
2960*/
2961static void Reduce(const Image *image,CubeInfo *cube_info,
2962 const NodeInfo *node_info)
2963{
cristybb503372010-05-27 20:51:26 +00002964 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00002965 i;
2966
cristybb503372010-05-27 20:51:26 +00002967 size_t
cristy3ed852e2009-09-05 21:47:34 +00002968 number_children;
2969
2970 /*
2971 Traverse any children.
2972 */
2973 number_children=cube_info->associate_alpha == MagickFalse ? 8UL : 16UL;
cristybb503372010-05-27 20:51:26 +00002974 for (i=0; i < (ssize_t) number_children; i++)
cristy3ed852e2009-09-05 21:47:34 +00002975 if (node_info->child[i] != (NodeInfo *) NULL)
2976 Reduce(image,cube_info,node_info->child[i]);
2977 if (node_info->quantize_error <= cube_info->pruning_threshold)
2978 PruneChild(image,cube_info,node_info);
2979 else
2980 {
2981 /*
2982 Find minimum pruning threshold.
2983 */
2984 if (node_info->number_unique > 0)
2985 cube_info->colors++;
2986 if (node_info->quantize_error < cube_info->next_threshold)
2987 cube_info->next_threshold=node_info->quantize_error;
2988 }
2989}
2990
2991/*
2992%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2993% %
2994% %
2995% %
2996+ R e d u c e I m a g e C o l o r s %
2997% %
2998% %
2999% %
3000%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3001%
3002% ReduceImageColors() repeatedly prunes the tree until the number of nodes
3003% with n2 > 0 is less than or equal to the maximum number of colors allowed
3004% in the output image. On any given iteration over the tree, it selects
3005% those nodes whose E value is minimal for pruning and merges their
3006% color statistics upward. It uses a pruning threshold, Ep, to govern
3007% node selection as follows:
3008%
3009% Ep = 0
3010% while number of nodes with (n2 > 0) > required maximum number of colors
3011% prune all nodes such that E <= Ep
3012% Set Ep to minimum E in remaining nodes
3013%
3014% This has the effect of minimizing any quantization error when merging
3015% two nodes together.
3016%
3017% When a node to be pruned has offspring, the pruning procedure invokes
3018% itself recursively in order to prune the tree from the leaves upward.
3019% n2, Sr, Sg, and Sb in a node being pruned are always added to the
3020% corresponding data in that node's parent. This retains the pruned
3021% node's color characteristics for later averaging.
3022%
3023% For each node, n2 pixels exist for which that node represents the
3024% smallest volume in RGB space containing those pixel's colors. When n2
3025% > 0 the node will uniquely define a color in the output image. At the
3026% beginning of reduction, n2 = 0 for all nodes except a the leaves of
3027% the tree which represent colors present in the input image.
3028%
3029% The other pixel count, n1, indicates the total number of colors
3030% within the cubic volume which the node represents. This includes n1 -
3031% n2 pixels whose colors should be defined by nodes at a lower level in
3032% the tree.
3033%
3034% The format of the ReduceImageColors method is:
3035%
3036% ReduceImageColors(const Image *image,CubeInfo *cube_info)
3037%
3038% A description of each parameter follows.
3039%
3040% o image: the image.
3041%
3042% o cube_info: A pointer to the Cube structure.
3043%
3044*/
3045static void ReduceImageColors(const Image *image,CubeInfo *cube_info)
3046{
3047#define ReduceImageTag "Reduce/Image"
3048
3049 MagickBooleanType
3050 proceed;
3051
3052 MagickOffsetType
3053 offset;
3054
cristybb503372010-05-27 20:51:26 +00003055 size_t
cristy3ed852e2009-09-05 21:47:34 +00003056 span;
3057
3058 cube_info->next_threshold=0.0;
3059 for (span=cube_info->colors; cube_info->colors > cube_info->maximum_colors; )
3060 {
3061 cube_info->pruning_threshold=cube_info->next_threshold;
3062 cube_info->next_threshold=cube_info->root->quantize_error-1;
3063 cube_info->colors=0;
3064 Reduce(image,cube_info,cube_info->root);
3065 offset=(MagickOffsetType) span-cube_info->colors;
3066 proceed=SetImageProgress(image,ReduceImageTag,offset,span-
3067 cube_info->maximum_colors+1);
3068 if (proceed == MagickFalse)
3069 break;
3070 }
3071}
3072
3073/*
3074%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3075% %
3076% %
3077% %
3078% R e m a p I m a g e %
3079% %
3080% %
3081% %
3082%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3083%
anthony31f1bf72012-01-30 12:37:22 +00003084% RemapImage() replaces the colors of an image with a dither of the colors
3085% provided.
cristy3ed852e2009-09-05 21:47:34 +00003086%
3087% The format of the RemapImage method is:
3088%
3089% MagickBooleanType RemapImage(const QuantizeInfo *quantize_info,
cristy018f07f2011-09-04 21:15:19 +00003090% Image *image,const Image *remap_image,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00003091%
3092% A description of each parameter follows:
3093%
3094% o quantize_info: Specifies a pointer to an QuantizeInfo structure.
3095%
3096% o image: the image.
3097%
3098% o remap_image: the reference image.
3099%
cristy018f07f2011-09-04 21:15:19 +00003100% o exception: return any errors or warnings in this structure.
3101%
cristy3ed852e2009-09-05 21:47:34 +00003102*/
3103MagickExport MagickBooleanType RemapImage(const QuantizeInfo *quantize_info,
cristy018f07f2011-09-04 21:15:19 +00003104 Image *image,const Image *remap_image,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00003105{
3106 CubeInfo
3107 *cube_info;
3108
3109 MagickBooleanType
3110 status;
3111
3112 /*
3113 Initialize color cube.
3114 */
3115 assert(image != (Image *) NULL);
3116 assert(image->signature == MagickSignature);
3117 if (image->debug != MagickFalse)
3118 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
3119 assert(remap_image != (Image *) NULL);
3120 assert(remap_image->signature == MagickSignature);
3121 cube_info=GetCubeInfo(quantize_info,MaxTreeDepth,
3122 quantize_info->number_colors);
3123 if (cube_info == (CubeInfo *) NULL)
3124 ThrowBinaryException(ResourceLimitError,"MemoryAllocationFailed",
3125 image->filename);
cristy8a11cb12011-10-19 23:53:34 +00003126 status=ClassifyImageColors(cube_info,remap_image,exception);
cristy3ed852e2009-09-05 21:47:34 +00003127 if (status != MagickFalse)
3128 {
3129 /*
3130 Classify image colors from the reference image.
3131 */
3132 cube_info->quantize_info->number_colors=cube_info->colors;
cristy018f07f2011-09-04 21:15:19 +00003133 status=AssignImageColors(image,cube_info,exception);
cristy3ed852e2009-09-05 21:47:34 +00003134 }
3135 DestroyCubeInfo(cube_info);
3136 return(status);
3137}
3138
3139/*
3140%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3141% %
3142% %
3143% %
3144% R e m a p I m a g e s %
3145% %
3146% %
3147% %
3148%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3149%
3150% RemapImages() replaces the colors of a sequence of images with the
3151% closest color from a reference image.
3152%
3153% The format of the RemapImage method is:
3154%
3155% MagickBooleanType RemapImages(const QuantizeInfo *quantize_info,
cristy018f07f2011-09-04 21:15:19 +00003156% Image *images,Image *remap_image,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00003157%
3158% A description of each parameter follows:
3159%
3160% o quantize_info: Specifies a pointer to an QuantizeInfo structure.
3161%
3162% o images: the image sequence.
3163%
3164% o remap_image: the reference image.
3165%
cristy018f07f2011-09-04 21:15:19 +00003166% o exception: return any errors or warnings in this structure.
3167%
cristy3ed852e2009-09-05 21:47:34 +00003168*/
3169MagickExport MagickBooleanType RemapImages(const QuantizeInfo *quantize_info,
cristy018f07f2011-09-04 21:15:19 +00003170 Image *images,const Image *remap_image,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00003171{
3172 CubeInfo
3173 *cube_info;
3174
3175 Image
3176 *image;
3177
3178 MagickBooleanType
3179 status;
3180
3181 assert(images != (Image *) NULL);
3182 assert(images->signature == MagickSignature);
3183 if (images->debug != MagickFalse)
3184 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",images->filename);
3185 image=images;
3186 if (remap_image == (Image *) NULL)
3187 {
3188 /*
3189 Create a global colormap for an image sequence.
3190 */
cristy018f07f2011-09-04 21:15:19 +00003191 status=QuantizeImages(quantize_info,images,exception);
cristy3ed852e2009-09-05 21:47:34 +00003192 return(status);
3193 }
3194 /*
3195 Classify image colors from the reference image.
3196 */
3197 cube_info=GetCubeInfo(quantize_info,MaxTreeDepth,
3198 quantize_info->number_colors);
3199 if (cube_info == (CubeInfo *) NULL)
3200 ThrowBinaryException(ResourceLimitError,"MemoryAllocationFailed",
3201 image->filename);
cristy018f07f2011-09-04 21:15:19 +00003202 status=ClassifyImageColors(cube_info,remap_image,exception);
cristy3ed852e2009-09-05 21:47:34 +00003203 if (status != MagickFalse)
3204 {
3205 /*
3206 Classify image colors from the reference image.
3207 */
3208 cube_info->quantize_info->number_colors=cube_info->colors;
3209 image=images;
3210 for ( ; image != (Image *) NULL; image=GetNextImageInList(image))
3211 {
cristy018f07f2011-09-04 21:15:19 +00003212 status=AssignImageColors(image,cube_info,exception);
cristy3ed852e2009-09-05 21:47:34 +00003213 if (status == MagickFalse)
3214 break;
3215 }
3216 }
3217 DestroyCubeInfo(cube_info);
3218 return(status);
3219}
3220
3221/*
3222%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3223% %
3224% %
3225% %
3226% S e t G r a y s c a l e I m a g e %
3227% %
3228% %
3229% %
3230%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3231%
3232% SetGrayscaleImage() converts an image to a PseudoClass grayscale image.
3233%
3234% The format of the SetGrayscaleImage method is:
3235%
cristy018f07f2011-09-04 21:15:19 +00003236% MagickBooleanType SetGrayscaleImage(Image *image,ExceptionInfo *exeption)
cristy3ed852e2009-09-05 21:47:34 +00003237%
3238% A description of each parameter follows:
3239%
3240% o image: The image.
3241%
cristy018f07f2011-09-04 21:15:19 +00003242% o exception: return any errors or warnings in this structure.
3243%
cristy3ed852e2009-09-05 21:47:34 +00003244*/
3245
3246#if defined(__cplusplus) || defined(c_plusplus)
3247extern "C" {
3248#endif
3249
3250static int IntensityCompare(const void *x,const void *y)
3251{
cristy101ab702011-10-13 13:06:32 +00003252 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +00003253 *color_1,
3254 *color_2;
3255
cristyecc31b12011-02-13 00:32:29 +00003256 ssize_t
3257 intensity;
3258
cristy101ab702011-10-13 13:06:32 +00003259 color_1=(PixelInfo *) x;
3260 color_2=(PixelInfo *) y;
cristyada285b2012-07-07 19:00:46 +00003261 intensity=(ssize_t) (GetPixelInfoIntensity(color_1)-(ssize_t)
3262 GetPixelInfoIntensity(color_2));
cristycee97112010-05-28 00:44:52 +00003263 return((int) intensity);
cristy3ed852e2009-09-05 21:47:34 +00003264}
3265
3266#if defined(__cplusplus) || defined(c_plusplus)
3267}
3268#endif
3269
cristy018f07f2011-09-04 21:15:19 +00003270static MagickBooleanType SetGrayscaleImage(Image *image,
3271 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00003272{
cristyc4c8d132010-01-07 01:58:38 +00003273 CacheView
3274 *image_view;
3275
cristyecc31b12011-02-13 00:32:29 +00003276 MagickBooleanType
3277 status;
cristy3ed852e2009-09-05 21:47:34 +00003278
cristy101ab702011-10-13 13:06:32 +00003279 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +00003280 *colormap;
3281
cristybb503372010-05-27 20:51:26 +00003282 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00003283 i;
3284
cristyecc31b12011-02-13 00:32:29 +00003285 ssize_t
3286 *colormap_index,
3287 j,
3288 y;
cristy3ed852e2009-09-05 21:47:34 +00003289
cristy3ed852e2009-09-05 21:47:34 +00003290 assert(image != (Image *) NULL);
3291 assert(image->signature == MagickSignature);
3292 if (image->type != GrayscaleType)
cristye941a752011-10-15 01:52:48 +00003293 (void) TransformImageColorspace(image,GRAYColorspace,exception);
cristybb503372010-05-27 20:51:26 +00003294 colormap_index=(ssize_t *) AcquireQuantumMemory(MaxMap+1,
cristy3ed852e2009-09-05 21:47:34 +00003295 sizeof(*colormap_index));
cristybb503372010-05-27 20:51:26 +00003296 if (colormap_index == (ssize_t *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00003297 ThrowBinaryException(ResourceLimitError,"MemoryAllocationFailed",
3298 image->filename);
3299 if (image->storage_class != PseudoClass)
3300 {
cristybb503372010-05-27 20:51:26 +00003301 for (i=0; i <= (ssize_t) MaxMap; i++)
cristy3ed852e2009-09-05 21:47:34 +00003302 colormap_index[i]=(-1);
cristy018f07f2011-09-04 21:15:19 +00003303 if (AcquireImageColormap(image,MaxMap+1,exception) == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +00003304 ThrowBinaryException(ResourceLimitError,"MemoryAllocationFailed",
3305 image->filename);
3306 image->colors=0;
3307 status=MagickTrue;
cristy46ff2672012-12-14 15:32:26 +00003308 image_view=AcquireAuthenticCacheView(image,exception);
cristyb5d5f722009-11-04 03:03:49 +00003309#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristyac245f82012-05-05 17:13:57 +00003310 #pragma omp parallel for schedule(static,4) shared(status) \
cristy5e6b2592012-12-19 14:08:11 +00003311 magick_threads(image,image,image->rows,1)
cristy3ed852e2009-09-05 21:47:34 +00003312#endif
cristybb503372010-05-27 20:51:26 +00003313 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +00003314 {
cristy4c08aed2011-07-01 19:47:50 +00003315 register Quantum
cristyc47d1f82009-11-26 01:44:43 +00003316 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +00003317
cristyecc31b12011-02-13 00:32:29 +00003318 register ssize_t
3319 x;
3320
cristy3ed852e2009-09-05 21:47:34 +00003321 if (status == MagickFalse)
3322 continue;
3323 q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,
3324 exception);
cristyacd2ed22011-08-30 01:44:23 +00003325 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00003326 {
3327 status=MagickFalse;
3328 continue;
3329 }
cristybb503372010-05-27 20:51:26 +00003330 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +00003331 {
cristybb503372010-05-27 20:51:26 +00003332 register size_t
cristy3ed852e2009-09-05 21:47:34 +00003333 intensity;
3334
cristy4c08aed2011-07-01 19:47:50 +00003335 intensity=ScaleQuantumToMap(GetPixelRed(image,q));
cristy3ed852e2009-09-05 21:47:34 +00003336 if (colormap_index[intensity] < 0)
3337 {
cristyb5d5f722009-11-04 03:03:49 +00003338#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristyac245f82012-05-05 17:13:57 +00003339 #pragma omp critical (MagickCore_SetGrayscaleImage)
cristy3ed852e2009-09-05 21:47:34 +00003340#endif
3341 if (colormap_index[intensity] < 0)
3342 {
cristybb503372010-05-27 20:51:26 +00003343 colormap_index[intensity]=(ssize_t) image->colors;
cristye42f6582012-02-11 17:59:50 +00003344 image->colormap[image->colors].red=(double)
3345 GetPixelRed(image,q);
3346 image->colormap[image->colors].green=(double)
3347 GetPixelGreen(image,q);
3348 image->colormap[image->colors].blue=(double)
3349 GetPixelBlue(image,q);
cristy3ed852e2009-09-05 21:47:34 +00003350 image->colors++;
3351 }
3352 }
cristyaeded782012-09-11 23:39:36 +00003353 SetPixelIndex(image,(Quantum) colormap_index[intensity],q);
cristyed231572011-07-14 02:18:59 +00003354 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +00003355 }
3356 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
3357 status=MagickFalse;
3358 }
3359 image_view=DestroyCacheView(image_view);
3360 }
cristybb503372010-05-27 20:51:26 +00003361 for (i=0; i < (ssize_t) image->colors; i++)
cristye42f6582012-02-11 17:59:50 +00003362 image->colormap[i].alpha=(double) i;
cristy101ab702011-10-13 13:06:32 +00003363 qsort((void *) image->colormap,image->colors,sizeof(PixelInfo),
cristy3ed852e2009-09-05 21:47:34 +00003364 IntensityCompare);
cristy101ab702011-10-13 13:06:32 +00003365 colormap=(PixelInfo *) AcquireQuantumMemory(image->colors,
cristy3ed852e2009-09-05 21:47:34 +00003366 sizeof(*colormap));
cristy101ab702011-10-13 13:06:32 +00003367 if (colormap == (PixelInfo *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00003368 ThrowBinaryException(ResourceLimitError,"MemoryAllocationFailed",
3369 image->filename);
3370 j=0;
3371 colormap[j]=image->colormap[0];
cristybb503372010-05-27 20:51:26 +00003372 for (i=0; i < (ssize_t) image->colors; i++)
cristy3ed852e2009-09-05 21:47:34 +00003373 {
cristy101ab702011-10-13 13:06:32 +00003374 if (IsPixelInfoEquivalent(&colormap[j],&image->colormap[i]) == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +00003375 {
3376 j++;
3377 colormap[j]=image->colormap[i];
3378 }
cristy4c08aed2011-07-01 19:47:50 +00003379 colormap_index[(ssize_t) image->colormap[i].alpha]=j;
cristy3ed852e2009-09-05 21:47:34 +00003380 }
cristybb503372010-05-27 20:51:26 +00003381 image->colors=(size_t) (j+1);
cristy101ab702011-10-13 13:06:32 +00003382 image->colormap=(PixelInfo *) RelinquishMagickMemory(image->colormap);
cristy3ed852e2009-09-05 21:47:34 +00003383 image->colormap=colormap;
3384 status=MagickTrue;
cristy46ff2672012-12-14 15:32:26 +00003385 image_view=AcquireAuthenticCacheView(image,exception);
cristyb5d5f722009-11-04 03:03:49 +00003386#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristyac245f82012-05-05 17:13:57 +00003387 #pragma omp parallel for schedule(static,4) shared(status) \
cristy5e6b2592012-12-19 14:08:11 +00003388 magick_threads(image,image,image->rows,1)
cristy3ed852e2009-09-05 21:47:34 +00003389#endif
cristybb503372010-05-27 20:51:26 +00003390 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +00003391 {
cristy4c08aed2011-07-01 19:47:50 +00003392 register Quantum
cristyc47d1f82009-11-26 01:44:43 +00003393 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +00003394
cristyecc31b12011-02-13 00:32:29 +00003395 register ssize_t
3396 x;
3397
cristy3ed852e2009-09-05 21:47:34 +00003398 if (status == MagickFalse)
3399 continue;
3400 q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception);
cristyacd2ed22011-08-30 01:44:23 +00003401 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00003402 {
3403 status=MagickFalse;
3404 continue;
3405 }
cristybb503372010-05-27 20:51:26 +00003406 for (x=0; x < (ssize_t) image->columns; x++)
cristy4c08aed2011-07-01 19:47:50 +00003407 {
3408 SetPixelIndex(image,(Quantum) colormap_index[ScaleQuantumToMap(
3409 GetPixelIndex(image,q))],q);
cristyed231572011-07-14 02:18:59 +00003410 q+=GetPixelChannels(image);
cristy4c08aed2011-07-01 19:47:50 +00003411 }
cristy3ed852e2009-09-05 21:47:34 +00003412 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
3413 status=MagickFalse;
3414 }
3415 image_view=DestroyCacheView(image_view);
cristybb503372010-05-27 20:51:26 +00003416 colormap_index=(ssize_t *) RelinquishMagickMemory(colormap_index);
cristy3ed852e2009-09-05 21:47:34 +00003417 image->type=GrayscaleType;
cristy8a11cb12011-10-19 23:53:34 +00003418 if (IsImageMonochrome(image,exception) != MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +00003419 image->type=BilevelType;
3420 return(status);
3421}