| 1 | /* |
|---|
| 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 | % % |
|---|
| 20 | % Copyright 1999-2013 ImageMagick Studio LLC, a non-profit organization % |
|---|
| 21 | % 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 | */ |
|---|
| 177 | #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" |
|---|
| 184 | #include "MagickCore/colorspace-private.h" |
|---|
| 185 | #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" |
|---|
| 197 | #include "MagickCore/pixel-private.h" |
|---|
| 198 | #include "MagickCore/quantize.h" |
|---|
| 199 | #include "MagickCore/quantum.h" |
|---|
| 200 | #include "MagickCore/quantum-private.h" |
|---|
| 201 | #include "MagickCore/resource_.h" |
|---|
| 202 | #include "MagickCore/string_.h" |
|---|
| 203 | #include "MagickCore/thread-private.h" |
|---|
| 204 | |
|---|
| 205 | /* |
|---|
| 206 | Define declarations. |
|---|
| 207 | */ |
|---|
| 208 | #if !defined(__APPLE__) && !defined(TARGET_OS_IPHONE) |
|---|
| 209 | #define CacheShift 2 |
|---|
| 210 | #else |
|---|
| 211 | #define CacheShift 3 |
|---|
| 212 | #endif |
|---|
| 213 | #define ErrorQueueLength 16 |
|---|
| 214 | #define MaxNodes 266817 |
|---|
| 215 | #define MaxTreeDepth 8 |
|---|
| 216 | #define NodesInAList 1920 |
|---|
| 217 | |
|---|
| 218 | /* |
|---|
| 219 | Typdef declarations. |
|---|
| 220 | */ |
|---|
| 221 | typedef struct _RealPixelInfo |
|---|
| 222 | { |
|---|
| 223 | double |
|---|
| 224 | red, |
|---|
| 225 | green, |
|---|
| 226 | blue, |
|---|
| 227 | alpha; |
|---|
| 228 | } RealPixelInfo; |
|---|
| 229 | |
|---|
| 230 | typedef struct _NodeInfo |
|---|
| 231 | { |
|---|
| 232 | struct _NodeInfo |
|---|
| 233 | *parent, |
|---|
| 234 | *child[16]; |
|---|
| 235 | |
|---|
| 236 | MagickSizeType |
|---|
| 237 | number_unique; |
|---|
| 238 | |
|---|
| 239 | RealPixelInfo |
|---|
| 240 | total_color; |
|---|
| 241 | |
|---|
| 242 | double |
|---|
| 243 | quantize_error; |
|---|
| 244 | |
|---|
| 245 | size_t |
|---|
| 246 | color_number, |
|---|
| 247 | id, |
|---|
| 248 | level; |
|---|
| 249 | } NodeInfo; |
|---|
| 250 | |
|---|
| 251 | typedef struct _Nodes |
|---|
| 252 | { |
|---|
| 253 | NodeInfo |
|---|
| 254 | *nodes; |
|---|
| 255 | |
|---|
| 256 | struct _Nodes |
|---|
| 257 | *next; |
|---|
| 258 | } Nodes; |
|---|
| 259 | |
|---|
| 260 | typedef struct _CubeInfo |
|---|
| 261 | { |
|---|
| 262 | NodeInfo |
|---|
| 263 | *root; |
|---|
| 264 | |
|---|
| 265 | size_t |
|---|
| 266 | colors, |
|---|
| 267 | maximum_colors; |
|---|
| 268 | |
|---|
| 269 | ssize_t |
|---|
| 270 | transparent_index; |
|---|
| 271 | |
|---|
| 272 | MagickSizeType |
|---|
| 273 | transparent_pixels; |
|---|
| 274 | |
|---|
| 275 | RealPixelInfo |
|---|
| 276 | target; |
|---|
| 277 | |
|---|
| 278 | double |
|---|
| 279 | distance, |
|---|
| 280 | pruning_threshold, |
|---|
| 281 | next_threshold; |
|---|
| 282 | |
|---|
| 283 | size_t |
|---|
| 284 | nodes, |
|---|
| 285 | free_nodes, |
|---|
| 286 | color_number; |
|---|
| 287 | |
|---|
| 288 | NodeInfo |
|---|
| 289 | *next_node; |
|---|
| 290 | |
|---|
| 291 | Nodes |
|---|
| 292 | *node_queue; |
|---|
| 293 | |
|---|
| 294 | ssize_t |
|---|
| 295 | *cache; |
|---|
| 296 | |
|---|
| 297 | RealPixelInfo |
|---|
| 298 | error[ErrorQueueLength]; |
|---|
| 299 | |
|---|
| 300 | double |
|---|
| 301 | weights[ErrorQueueLength]; |
|---|
| 302 | |
|---|
| 303 | QuantizeInfo |
|---|
| 304 | *quantize_info; |
|---|
| 305 | |
|---|
| 306 | MagickBooleanType |
|---|
| 307 | associate_alpha; |
|---|
| 308 | |
|---|
| 309 | ssize_t |
|---|
| 310 | x, |
|---|
| 311 | y; |
|---|
| 312 | |
|---|
| 313 | size_t |
|---|
| 314 | depth; |
|---|
| 315 | |
|---|
| 316 | MagickOffsetType |
|---|
| 317 | offset; |
|---|
| 318 | |
|---|
| 319 | MagickSizeType |
|---|
| 320 | span; |
|---|
| 321 | } CubeInfo; |
|---|
| 322 | |
|---|
| 323 | /* |
|---|
| 324 | Method prototypes. |
|---|
| 325 | */ |
|---|
| 326 | static CubeInfo |
|---|
| 327 | *GetCubeInfo(const QuantizeInfo *,const size_t,const size_t); |
|---|
| 328 | |
|---|
| 329 | static NodeInfo |
|---|
| 330 | *GetNodeInfo(CubeInfo *,const size_t,const size_t,NodeInfo *); |
|---|
| 331 | |
|---|
| 332 | static MagickBooleanType |
|---|
| 333 | AssignImageColors(Image *,CubeInfo *,ExceptionInfo *), |
|---|
| 334 | ClassifyImageColors(CubeInfo *,const Image *,ExceptionInfo *), |
|---|
| 335 | DitherImage(Image *,CubeInfo *,ExceptionInfo *), |
|---|
| 336 | SetGrayscaleImage(Image *,ExceptionInfo *); |
|---|
| 337 | |
|---|
| 338 | static size_t |
|---|
| 339 | DefineImageColormap(Image *,CubeInfo *,NodeInfo *); |
|---|
| 340 | |
|---|
| 341 | static void |
|---|
| 342 | ClosestColor(const Image *,CubeInfo *,const NodeInfo *), |
|---|
| 343 | DestroyCubeInfo(CubeInfo *), |
|---|
| 344 | PruneLevel(const Image *,CubeInfo *,const NodeInfo *), |
|---|
| 345 | PruneToCubeDepth(const Image *,CubeInfo *,const NodeInfo *), |
|---|
| 346 | ReduceImageColors(const Image *,CubeInfo *); |
|---|
| 347 | |
|---|
| 348 | /* |
|---|
| 349 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 350 | % % |
|---|
| 351 | % % |
|---|
| 352 | % % |
|---|
| 353 | % A c q u i r e Q u a n t i z e I n f o % |
|---|
| 354 | % % |
|---|
| 355 | % % |
|---|
| 356 | % % |
|---|
| 357 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 358 | % |
|---|
| 359 | % AcquireQuantizeInfo() allocates the QuantizeInfo structure. |
|---|
| 360 | % |
|---|
| 361 | % The format of the AcquireQuantizeInfo method is: |
|---|
| 362 | % |
|---|
| 363 | % QuantizeInfo *AcquireQuantizeInfo(const ImageInfo *image_info) |
|---|
| 364 | % |
|---|
| 365 | % A description of each parameter follows: |
|---|
| 366 | % |
|---|
| 367 | % o image_info: the image info. |
|---|
| 368 | % |
|---|
| 369 | */ |
|---|
| 370 | MagickExport QuantizeInfo *AcquireQuantizeInfo(const ImageInfo *image_info) |
|---|
| 371 | { |
|---|
| 372 | QuantizeInfo |
|---|
| 373 | *quantize_info; |
|---|
| 374 | |
|---|
| 375 | quantize_info=(QuantizeInfo *) AcquireMagickMemory(sizeof(*quantize_info)); |
|---|
| 376 | if (quantize_info == (QuantizeInfo *) NULL) |
|---|
| 377 | ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed"); |
|---|
| 378 | GetQuantizeInfo(quantize_info); |
|---|
| 379 | if (image_info != (ImageInfo *) NULL) |
|---|
| 380 | { |
|---|
| 381 | const char |
|---|
| 382 | *option; |
|---|
| 383 | |
|---|
| 384 | quantize_info->dither_method=image_info->dither == MagickFalse ? |
|---|
| 385 | NoDitherMethod : RiemersmaDitherMethod; |
|---|
| 386 | option=GetImageOption(image_info,"dither"); |
|---|
| 387 | if (option != (const char *) NULL) |
|---|
| 388 | quantize_info->dither_method=(DitherMethod) ParseCommandOption( |
|---|
| 389 | MagickDitherOptions,MagickFalse,option); |
|---|
| 390 | quantize_info->measure_error=image_info->verbose; |
|---|
| 391 | } |
|---|
| 392 | return(quantize_info); |
|---|
| 393 | } |
|---|
| 394 | |
|---|
| 395 | /* |
|---|
| 396 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 397 | % % |
|---|
| 398 | % % |
|---|
| 399 | % % |
|---|
| 400 | + A s s i g n I m a g e C o l o r s % |
|---|
| 401 | % % |
|---|
| 402 | % % |
|---|
| 403 | % % |
|---|
| 404 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 405 | % |
|---|
| 406 | % AssignImageColors() generates the output image from the pruned tree. The |
|---|
| 407 | % output image consists of two parts: (1) A color map, which is an array |
|---|
| 408 | % of color descriptions (RGB triples) for each color present in the |
|---|
| 409 | % output image; (2) A pixel array, which represents each pixel as an |
|---|
| 410 | % index into the color map array. |
|---|
| 411 | % |
|---|
| 412 | % First, the assignment phase makes one pass over the pruned color |
|---|
| 413 | % description tree to establish the image's color map. For each node |
|---|
| 414 | % with n2 > 0, it divides Sr, Sg, and Sb by n2 . This produces the mean |
|---|
| 415 | % color of all pixels that classify no lower than this node. Each of |
|---|
| 416 | % these colors becomes an entry in the color map. |
|---|
| 417 | % |
|---|
| 418 | % Finally, the assignment phase reclassifies each pixel in the pruned |
|---|
| 419 | % tree to identify the deepest node containing the pixel's color. The |
|---|
| 420 | % pixel's value in the pixel array becomes the index of this node's mean |
|---|
| 421 | % color in the color map. |
|---|
| 422 | % |
|---|
| 423 | % The format of the AssignImageColors() method is: |
|---|
| 424 | % |
|---|
| 425 | % MagickBooleanType AssignImageColors(Image *image,CubeInfo *cube_info) |
|---|
| 426 | % |
|---|
| 427 | % A description of each parameter follows. |
|---|
| 428 | % |
|---|
| 429 | % o image: the image. |
|---|
| 430 | % |
|---|
| 431 | % o cube_info: A pointer to the Cube structure. |
|---|
| 432 | % |
|---|
| 433 | */ |
|---|
| 434 | |
|---|
| 435 | static inline void AssociateAlphaPixel(const Image *image, |
|---|
| 436 | const CubeInfo *cube_info,const Quantum *pixel,RealPixelInfo *alpha_pixel) |
|---|
| 437 | { |
|---|
| 438 | double |
|---|
| 439 | alpha; |
|---|
| 440 | |
|---|
| 441 | if ((cube_info->associate_alpha == MagickFalse) || |
|---|
| 442 | (GetPixelAlpha(image,pixel)== OpaqueAlpha)) |
|---|
| 443 | { |
|---|
| 444 | alpha_pixel->red=(double) GetPixelRed(image,pixel); |
|---|
| 445 | alpha_pixel->green=(double) GetPixelGreen(image,pixel); |
|---|
| 446 | alpha_pixel->blue=(double) GetPixelBlue(image,pixel); |
|---|
| 447 | alpha_pixel->alpha=(double) GetPixelAlpha(image,pixel); |
|---|
| 448 | return; |
|---|
| 449 | } |
|---|
| 450 | alpha=(double) (QuantumScale*GetPixelAlpha(image,pixel)); |
|---|
| 451 | alpha_pixel->red=alpha*GetPixelRed(image,pixel); |
|---|
| 452 | alpha_pixel->green=alpha*GetPixelGreen(image,pixel); |
|---|
| 453 | alpha_pixel->blue=alpha*GetPixelBlue(image,pixel); |
|---|
| 454 | alpha_pixel->alpha=(double) GetPixelAlpha(image,pixel); |
|---|
| 455 | } |
|---|
| 456 | |
|---|
| 457 | static inline void AssociateAlphaPixelInfo(const CubeInfo *cube_info, |
|---|
| 458 | const PixelInfo *pixel,RealPixelInfo *alpha_pixel) |
|---|
| 459 | { |
|---|
| 460 | double |
|---|
| 461 | alpha; |
|---|
| 462 | |
|---|
| 463 | if ((cube_info->associate_alpha == MagickFalse) || |
|---|
| 464 | (pixel->alpha == OpaqueAlpha)) |
|---|
| 465 | { |
|---|
| 466 | alpha_pixel->red=(double) pixel->red; |
|---|
| 467 | alpha_pixel->green=(double) pixel->green; |
|---|
| 468 | alpha_pixel->blue=(double) pixel->blue; |
|---|
| 469 | alpha_pixel->alpha=(double) pixel->alpha; |
|---|
| 470 | return; |
|---|
| 471 | } |
|---|
| 472 | alpha=(double) (QuantumScale*pixel->alpha); |
|---|
| 473 | alpha_pixel->red=alpha*pixel->red; |
|---|
| 474 | alpha_pixel->green=alpha*pixel->green; |
|---|
| 475 | alpha_pixel->blue=alpha*pixel->blue; |
|---|
| 476 | alpha_pixel->alpha=(double) pixel->alpha; |
|---|
| 477 | } |
|---|
| 478 | |
|---|
| 479 | static inline Quantum ClampPixel(const MagickRealType value) |
|---|
| 480 | { |
|---|
| 481 | if (value < 0.0f) |
|---|
| 482 | return(0); |
|---|
| 483 | if (value >= (MagickRealType) QuantumRange) |
|---|
| 484 | return((Quantum) QuantumRange); |
|---|
| 485 | #if !defined(MAGICKCORE_HDRI_SUPPORT) |
|---|
| 486 | return((Quantum) (value+0.5f)); |
|---|
| 487 | #else |
|---|
| 488 | return(value); |
|---|
| 489 | #endif |
|---|
| 490 | } |
|---|
| 491 | |
|---|
| 492 | static inline size_t ColorToNodeId(const CubeInfo *cube_info, |
|---|
| 493 | const RealPixelInfo *pixel,size_t index) |
|---|
| 494 | { |
|---|
| 495 | size_t |
|---|
| 496 | id; |
|---|
| 497 | |
|---|
| 498 | id=(size_t) (((ScaleQuantumToChar(ClampPixel(pixel->red)) >> index) & 0x01) | |
|---|
| 499 | ((ScaleQuantumToChar(ClampPixel(pixel->green)) >> index) & 0x01) << 1 | |
|---|
| 500 | ((ScaleQuantumToChar(ClampPixel(pixel->blue)) >> index) & 0x01) << 2); |
|---|
| 501 | if (cube_info->associate_alpha != MagickFalse) |
|---|
| 502 | id|=((ScaleQuantumToChar(ClampPixel(pixel->alpha)) >> index) & 0x1) << 3; |
|---|
| 503 | return(id); |
|---|
| 504 | } |
|---|
| 505 | |
|---|
| 506 | static MagickBooleanType AssignImageColors(Image *image,CubeInfo *cube_info, |
|---|
| 507 | ExceptionInfo *exception) |
|---|
| 508 | { |
|---|
| 509 | #define AssignImageTag "Assign/Image" |
|---|
| 510 | |
|---|
| 511 | ssize_t |
|---|
| 512 | y; |
|---|
| 513 | |
|---|
| 514 | /* |
|---|
| 515 | Allocate image colormap. |
|---|
| 516 | */ |
|---|
| 517 | if ((cube_info->quantize_info->colorspace != UndefinedColorspace) && |
|---|
| 518 | (cube_info->quantize_info->colorspace != CMYKColorspace)) |
|---|
| 519 | (void) TransformImageColorspace((Image *) image, |
|---|
| 520 | cube_info->quantize_info->colorspace,exception); |
|---|
| 521 | else |
|---|
| 522 | if (IssRGBCompatibleColorspace(image->colorspace) == MagickFalse) |
|---|
| 523 | (void) TransformImageColorspace((Image *) image,sRGBColorspace,exception); |
|---|
| 524 | if (AcquireImageColormap(image,cube_info->colors,exception) == MagickFalse) |
|---|
| 525 | ThrowBinaryException(ResourceLimitError,"MemoryAllocationFailed", |
|---|
| 526 | image->filename); |
|---|
| 527 | image->colors=0; |
|---|
| 528 | cube_info->transparent_pixels=0; |
|---|
| 529 | cube_info->transparent_index=(-1); |
|---|
| 530 | (void) DefineImageColormap(image,cube_info,cube_info->root); |
|---|
| 531 | /* |
|---|
| 532 | Create a reduced color image. |
|---|
| 533 | */ |
|---|
| 534 | if ((cube_info->quantize_info->dither_method != NoDitherMethod) && |
|---|
| 535 | (cube_info->quantize_info->dither_method != NoDitherMethod)) |
|---|
| 536 | (void) DitherImage(image,cube_info,exception); |
|---|
| 537 | else |
|---|
| 538 | { |
|---|
| 539 | CacheView |
|---|
| 540 | *image_view; |
|---|
| 541 | |
|---|
| 542 | MagickBooleanType |
|---|
| 543 | status; |
|---|
| 544 | |
|---|
| 545 | status=MagickTrue; |
|---|
| 546 | image_view=AcquireAuthenticCacheView(image,exception); |
|---|
| 547 | #if defined(MAGICKCORE_OPENMP_SUPPORT) |
|---|
| 548 | #pragma omp parallel for schedule(static,4) shared(status) \ |
|---|
| 549 | magick_threads(image,image,image->rows,1) |
|---|
| 550 | #endif |
|---|
| 551 | for (y=0; y < (ssize_t) image->rows; y++) |
|---|
| 552 | { |
|---|
| 553 | CubeInfo |
|---|
| 554 | cube; |
|---|
| 555 | |
|---|
| 556 | register Quantum |
|---|
| 557 | *restrict q; |
|---|
| 558 | |
|---|
| 559 | register ssize_t |
|---|
| 560 | x; |
|---|
| 561 | |
|---|
| 562 | ssize_t |
|---|
| 563 | count; |
|---|
| 564 | |
|---|
| 565 | if (status == MagickFalse) |
|---|
| 566 | continue; |
|---|
| 567 | q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1, |
|---|
| 568 | exception); |
|---|
| 569 | if (q == (Quantum *) NULL) |
|---|
| 570 | { |
|---|
| 571 | status=MagickFalse; |
|---|
| 572 | continue; |
|---|
| 573 | } |
|---|
| 574 | cube=(*cube_info); |
|---|
| 575 | for (x=0; x < (ssize_t) image->columns; x+=count) |
|---|
| 576 | { |
|---|
| 577 | RealPixelInfo |
|---|
| 578 | pixel; |
|---|
| 579 | |
|---|
| 580 | register const NodeInfo |
|---|
| 581 | *node_info; |
|---|
| 582 | |
|---|
| 583 | register ssize_t |
|---|
| 584 | i; |
|---|
| 585 | |
|---|
| 586 | size_t |
|---|
| 587 | id, |
|---|
| 588 | index; |
|---|
| 589 | |
|---|
| 590 | /* |
|---|
| 591 | Identify the deepest node containing the pixel's color. |
|---|
| 592 | */ |
|---|
| 593 | for (count=1; (x+count) < (ssize_t) image->columns; count++) |
|---|
| 594 | { |
|---|
| 595 | PixelInfo |
|---|
| 596 | packet; |
|---|
| 597 | |
|---|
| 598 | GetPixelInfoPixel(image,q+count*GetPixelChannels(image),&packet); |
|---|
| 599 | if (IsPixelEquivalent(image,q,&packet) == MagickFalse) |
|---|
| 600 | break; |
|---|
| 601 | } |
|---|
| 602 | AssociateAlphaPixel(image,&cube,q,&pixel); |
|---|
| 603 | node_info=cube.root; |
|---|
| 604 | for (index=MaxTreeDepth-1; (ssize_t) index > 0; index--) |
|---|
| 605 | { |
|---|
| 606 | id=ColorToNodeId(&cube,&pixel,index); |
|---|
| 607 | if (node_info->child[id] == (NodeInfo *) NULL) |
|---|
| 608 | break; |
|---|
| 609 | node_info=node_info->child[id]; |
|---|
| 610 | } |
|---|
| 611 | /* |
|---|
| 612 | Find closest color among siblings and their children. |
|---|
| 613 | */ |
|---|
| 614 | cube.target=pixel; |
|---|
| 615 | cube.distance=(double) (4.0*(QuantumRange+1.0)* |
|---|
| 616 | (QuantumRange+1.0)+1.0); |
|---|
| 617 | ClosestColor(image,&cube,node_info->parent); |
|---|
| 618 | index=cube.color_number; |
|---|
| 619 | for (i=0; i < (ssize_t) count; i++) |
|---|
| 620 | { |
|---|
| 621 | if (image->storage_class == PseudoClass) |
|---|
| 622 | SetPixelIndex(image,(Quantum) index,q); |
|---|
| 623 | if (cube.quantize_info->measure_error == MagickFalse) |
|---|
| 624 | { |
|---|
| 625 | SetPixelRed(image,ClampToQuantum( |
|---|
| 626 | image->colormap[index].red),q); |
|---|
| 627 | SetPixelGreen(image,ClampToQuantum( |
|---|
| 628 | image->colormap[index].green),q); |
|---|
| 629 | SetPixelBlue(image,ClampToQuantum( |
|---|
| 630 | image->colormap[index].blue),q); |
|---|
| 631 | if (cube.associate_alpha != MagickFalse) |
|---|
| 632 | SetPixelAlpha(image,ClampToQuantum( |
|---|
| 633 | image->colormap[index].alpha),q); |
|---|
| 634 | } |
|---|
| 635 | q+=GetPixelChannels(image); |
|---|
| 636 | } |
|---|
| 637 | } |
|---|
| 638 | if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse) |
|---|
| 639 | status=MagickFalse; |
|---|
| 640 | if (image->progress_monitor != (MagickProgressMonitor) NULL) |
|---|
| 641 | { |
|---|
| 642 | MagickBooleanType |
|---|
| 643 | proceed; |
|---|
| 644 | |
|---|
| 645 | #if defined(MAGICKCORE_OPENMP_SUPPORT) |
|---|
| 646 | #pragma omp critical (MagickCore_AssignImageColors) |
|---|
| 647 | #endif |
|---|
| 648 | proceed=SetImageProgress(image,AssignImageTag,(MagickOffsetType) y, |
|---|
| 649 | image->rows); |
|---|
| 650 | if (proceed == MagickFalse) |
|---|
| 651 | status=MagickFalse; |
|---|
| 652 | } |
|---|
| 653 | } |
|---|
| 654 | image_view=DestroyCacheView(image_view); |
|---|
| 655 | } |
|---|
| 656 | if (cube_info->quantize_info->measure_error != MagickFalse) |
|---|
| 657 | (void) GetImageQuantizeError(image,exception); |
|---|
| 658 | if ((cube_info->quantize_info->number_colors == 2) && |
|---|
| 659 | (cube_info->quantize_info->colorspace == GRAYColorspace)) |
|---|
| 660 | { |
|---|
| 661 | double |
|---|
| 662 | intensity; |
|---|
| 663 | |
|---|
| 664 | register PixelInfo |
|---|
| 665 | *restrict q; |
|---|
| 666 | |
|---|
| 667 | register ssize_t |
|---|
| 668 | i; |
|---|
| 669 | |
|---|
| 670 | /* |
|---|
| 671 | Monochrome image. |
|---|
| 672 | */ |
|---|
| 673 | q=image->colormap; |
|---|
| 674 | for (i=0; i < (ssize_t) image->colors; i++) |
|---|
| 675 | { |
|---|
| 676 | intensity=(double) ((double) GetPixelInfoIntensity(q) < |
|---|
| 677 | ((double) QuantumRange/2.0) ? 0 : QuantumRange); |
|---|
| 678 | q->red=intensity; |
|---|
| 679 | q->green=intensity; |
|---|
| 680 | q->blue=intensity; |
|---|
| 681 | q++; |
|---|
| 682 | } |
|---|
| 683 | } |
|---|
| 684 | (void) SyncImage(image,exception); |
|---|
| 685 | if ((cube_info->quantize_info->colorspace != UndefinedColorspace) && |
|---|
| 686 | (cube_info->quantize_info->colorspace != CMYKColorspace)) |
|---|
| 687 | (void) TransformImageColorspace((Image *) image,sRGBColorspace,exception); |
|---|
| 688 | return(MagickTrue); |
|---|
| 689 | } |
|---|
| 690 | |
|---|
| 691 | /* |
|---|
| 692 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 693 | % % |
|---|
| 694 | % % |
|---|
| 695 | % % |
|---|
| 696 | + C l a s s i f y I m a g e C o l o r s % |
|---|
| 697 | % % |
|---|
| 698 | % % |
|---|
| 699 | % % |
|---|
| 700 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 701 | % |
|---|
| 702 | % ClassifyImageColors() begins by initializing a color description tree |
|---|
| 703 | % of sufficient depth to represent each possible input color in a leaf. |
|---|
| 704 | % However, it is impractical to generate a fully-formed color |
|---|
| 705 | % description tree in the storage_class phase for realistic values of |
|---|
| 706 | % Cmax. If colors components in the input image are quantized to k-bit |
|---|
| 707 | % precision, so that Cmax= 2k-1, the tree would need k levels below the |
|---|
| 708 | % root node to allow representing each possible input color in a leaf. |
|---|
| 709 | % This becomes prohibitive because the tree's total number of nodes is |
|---|
| 710 | % 1 + sum(i=1,k,8k). |
|---|
| 711 | % |
|---|
| 712 | % A complete tree would require 19,173,961 nodes for k = 8, Cmax = 255. |
|---|
| 713 | % Therefore, to avoid building a fully populated tree, QUANTIZE: (1) |
|---|
| 714 | % Initializes data structures for nodes only as they are needed; (2) |
|---|
| 715 | % Chooses a maximum depth for the tree as a function of the desired |
|---|
| 716 | % number of colors in the output image (currently log2(colormap size)). |
|---|
| 717 | % |
|---|
| 718 | % For each pixel in the input image, storage_class scans downward from |
|---|
| 719 | % the root of the color description tree. At each level of the tree it |
|---|
| 720 | % identifies the single node which represents a cube in RGB space |
|---|
| 721 | % containing It updates the following data for each such node: |
|---|
| 722 | % |
|---|
| 723 | % n1 : Number of pixels whose color is contained in the RGB cube |
|---|
| 724 | % which this node represents; |
|---|
| 725 | % |
|---|
| 726 | % n2 : Number of pixels whose color is not represented in a node at |
|---|
| 727 | % lower depth in the tree; initially, n2 = 0 for all nodes except |
|---|
| 728 | % leaves of the tree. |
|---|
| 729 | % |
|---|
| 730 | % Sr, Sg, Sb : Sums of the red, green, and blue component values for |
|---|
| 731 | % all pixels not classified at a lower depth. The combination of |
|---|
| 732 | % these sums and n2 will ultimately characterize the mean color of a |
|---|
| 733 | % set of pixels represented by this node. |
|---|
| 734 | % |
|---|
| 735 | % E: the distance squared in RGB space between each pixel contained |
|---|
| 736 | % within a node and the nodes' center. This represents the quantization |
|---|
| 737 | % error for a node. |
|---|
| 738 | % |
|---|
| 739 | % The format of the ClassifyImageColors() method is: |
|---|
| 740 | % |
|---|
| 741 | % MagickBooleanType ClassifyImageColors(CubeInfo *cube_info, |
|---|
| 742 | % const Image *image,ExceptionInfo *exception) |
|---|
| 743 | % |
|---|
| 744 | % A description of each parameter follows. |
|---|
| 745 | % |
|---|
| 746 | % o cube_info: A pointer to the Cube structure. |
|---|
| 747 | % |
|---|
| 748 | % o image: the image. |
|---|
| 749 | % |
|---|
| 750 | */ |
|---|
| 751 | |
|---|
| 752 | static inline void SetAssociatedAlpha(const Image *image,CubeInfo *cube_info) |
|---|
| 753 | { |
|---|
| 754 | MagickBooleanType |
|---|
| 755 | associate_alpha; |
|---|
| 756 | |
|---|
| 757 | associate_alpha=image->alpha_trait == BlendPixelTrait ? MagickTrue : |
|---|
| 758 | MagickFalse; |
|---|
| 759 | if (cube_info->quantize_info->colorspace == TransparentColorspace) |
|---|
| 760 | associate_alpha=MagickFalse; |
|---|
| 761 | if ((cube_info->quantize_info->number_colors == 2) && |
|---|
| 762 | (cube_info->quantize_info->colorspace == GRAYColorspace)) |
|---|
| 763 | associate_alpha=MagickFalse; |
|---|
| 764 | cube_info->associate_alpha=associate_alpha; |
|---|
| 765 | } |
|---|
| 766 | |
|---|
| 767 | static MagickBooleanType ClassifyImageColors(CubeInfo *cube_info, |
|---|
| 768 | const Image *image,ExceptionInfo *exception) |
|---|
| 769 | { |
|---|
| 770 | #define ClassifyImageTag "Classify/Image" |
|---|
| 771 | |
|---|
| 772 | CacheView |
|---|
| 773 | *image_view; |
|---|
| 774 | |
|---|
| 775 | MagickBooleanType |
|---|
| 776 | proceed; |
|---|
| 777 | |
|---|
| 778 | double |
|---|
| 779 | bisect; |
|---|
| 780 | |
|---|
| 781 | NodeInfo |
|---|
| 782 | *node_info; |
|---|
| 783 | |
|---|
| 784 | RealPixelInfo |
|---|
| 785 | error, |
|---|
| 786 | mid, |
|---|
| 787 | midpoint, |
|---|
| 788 | pixel; |
|---|
| 789 | |
|---|
| 790 | size_t |
|---|
| 791 | count, |
|---|
| 792 | id, |
|---|
| 793 | index, |
|---|
| 794 | level; |
|---|
| 795 | |
|---|
| 796 | ssize_t |
|---|
| 797 | y; |
|---|
| 798 | |
|---|
| 799 | /* |
|---|
| 800 | Classify the first cube_info->maximum_colors colors to a tree depth of 8. |
|---|
| 801 | */ |
|---|
| 802 | SetAssociatedAlpha(image,cube_info); |
|---|
| 803 | if ((cube_info->quantize_info->colorspace != UndefinedColorspace) && |
|---|
| 804 | (cube_info->quantize_info->colorspace != CMYKColorspace)) |
|---|
| 805 | (void) TransformImageColorspace((Image *) image, |
|---|
| 806 | cube_info->quantize_info->colorspace,exception); |
|---|
| 807 | else |
|---|
| 808 | if (IssRGBCompatibleColorspace(image->colorspace) == MagickFalse) |
|---|
| 809 | (void) TransformImageColorspace((Image *) image,sRGBColorspace,exception); |
|---|
| 810 | midpoint.red=(double) QuantumRange/2.0; |
|---|
| 811 | midpoint.green=(double) QuantumRange/2.0; |
|---|
| 812 | midpoint.blue=(double) QuantumRange/2.0; |
|---|
| 813 | midpoint.alpha=(double) QuantumRange/2.0; |
|---|
| 814 | error.alpha=0.0; |
|---|
| 815 | image_view=AcquireVirtualCacheView(image,exception); |
|---|
| 816 | for (y=0; y < (ssize_t) image->rows; y++) |
|---|
| 817 | { |
|---|
| 818 | register const Quantum |
|---|
| 819 | *restrict p; |
|---|
| 820 | |
|---|
| 821 | register ssize_t |
|---|
| 822 | x; |
|---|
| 823 | |
|---|
| 824 | p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception); |
|---|
| 825 | if (p == (const Quantum *) NULL) |
|---|
| 826 | break; |
|---|
| 827 | if (cube_info->nodes > MaxNodes) |
|---|
| 828 | { |
|---|
| 829 | /* |
|---|
| 830 | Prune one level if the color tree is too large. |
|---|
| 831 | */ |
|---|
| 832 | PruneLevel(image,cube_info,cube_info->root); |
|---|
| 833 | cube_info->depth--; |
|---|
| 834 | } |
|---|
| 835 | for (x=0; x < (ssize_t) image->columns; x+=(ssize_t) count) |
|---|
| 836 | { |
|---|
| 837 | /* |
|---|
| 838 | Start at the root and descend the color cube tree. |
|---|
| 839 | */ |
|---|
| 840 | for (count=1; (x+(ssize_t) count) < (ssize_t) image->columns; count++) |
|---|
| 841 | { |
|---|
| 842 | PixelInfo |
|---|
| 843 | packet; |
|---|
| 844 | |
|---|
| 845 | GetPixelInfoPixel(image,p+count*GetPixelChannels(image),&packet); |
|---|
| 846 | if (IsPixelEquivalent(image,p,&packet) == MagickFalse) |
|---|
| 847 | break; |
|---|
| 848 | } |
|---|
| 849 | AssociateAlphaPixel(image,cube_info,p,&pixel); |
|---|
| 850 | index=MaxTreeDepth-1; |
|---|
| 851 | bisect=((double) QuantumRange+1.0)/2.0; |
|---|
| 852 | mid=midpoint; |
|---|
| 853 | node_info=cube_info->root; |
|---|
| 854 | for (level=1; level <= MaxTreeDepth; level++) |
|---|
| 855 | { |
|---|
| 856 | bisect*=0.5; |
|---|
| 857 | id=ColorToNodeId(cube_info,&pixel,index); |
|---|
| 858 | mid.red+=(id & 1) != 0 ? bisect : -bisect; |
|---|
| 859 | mid.green+=(id & 2) != 0 ? bisect : -bisect; |
|---|
| 860 | mid.blue+=(id & 4) != 0 ? bisect : -bisect; |
|---|
| 861 | mid.alpha+=(id & 8) != 0 ? bisect : -bisect; |
|---|
| 862 | if (node_info->child[id] == (NodeInfo *) NULL) |
|---|
| 863 | { |
|---|
| 864 | /* |
|---|
| 865 | Set colors of new node to contain pixel. |
|---|
| 866 | */ |
|---|
| 867 | node_info->child[id]=GetNodeInfo(cube_info,id,level,node_info); |
|---|
| 868 | if (node_info->child[id] == (NodeInfo *) NULL) |
|---|
| 869 | (void) ThrowMagickException(exception,GetMagickModule(), |
|---|
| 870 | ResourceLimitError,"MemoryAllocationFailed","`%s'", |
|---|
| 871 | image->filename); |
|---|
| 872 | if (level == MaxTreeDepth) |
|---|
| 873 | cube_info->colors++; |
|---|
| 874 | } |
|---|
| 875 | /* |
|---|
| 876 | Approximate the quantization error represented by this node. |
|---|
| 877 | */ |
|---|
| 878 | node_info=node_info->child[id]; |
|---|
| 879 | error.red=QuantumScale*(pixel.red-mid.red); |
|---|
| 880 | error.green=QuantumScale*(pixel.green-mid.green); |
|---|
| 881 | error.blue=QuantumScale*(pixel.blue-mid.blue); |
|---|
| 882 | if (cube_info->associate_alpha != MagickFalse) |
|---|
| 883 | error.alpha=QuantumScale*(pixel.alpha-mid.alpha); |
|---|
| 884 | node_info->quantize_error+=sqrt((double) (count*error.red*error.red+ |
|---|
| 885 | count*error.green*error.green+count*error.blue*error.blue+count* |
|---|
| 886 | error.alpha*error.alpha)); |
|---|
| 887 | cube_info->root->quantize_error+=node_info->quantize_error; |
|---|
| 888 | index--; |
|---|
| 889 | } |
|---|
| 890 | /* |
|---|
| 891 | Sum RGB for this leaf for later derivation of the mean cube color. |
|---|
| 892 | */ |
|---|
| 893 | node_info->number_unique+=count; |
|---|
| 894 | node_info->total_color.red+=count*QuantumScale*ClampPixel(pixel.red); |
|---|
| 895 | node_info->total_color.green+=count*QuantumScale*ClampPixel(pixel.green); |
|---|
| 896 | node_info->total_color.blue+=count*QuantumScale*ClampPixel(pixel.blue); |
|---|
| 897 | if (cube_info->associate_alpha != MagickFalse) |
|---|
| 898 | node_info->total_color.alpha+=count*QuantumScale*ClampPixel( |
|---|
| 899 | pixel.alpha); |
|---|
| 900 | p+=count*GetPixelChannels(image); |
|---|
| 901 | } |
|---|
| 902 | if (cube_info->colors > cube_info->maximum_colors) |
|---|
| 903 | { |
|---|
| 904 | PruneToCubeDepth(image,cube_info,cube_info->root); |
|---|
| 905 | break; |
|---|
| 906 | } |
|---|
| 907 | proceed=SetImageProgress(image,ClassifyImageTag,(MagickOffsetType) y, |
|---|
| 908 | image->rows); |
|---|
| 909 | if (proceed == MagickFalse) |
|---|
| 910 | break; |
|---|
| 911 | } |
|---|
| 912 | for (y++; y < (ssize_t) image->rows; y++) |
|---|
| 913 | { |
|---|
| 914 | register const Quantum |
|---|
| 915 | *restrict p; |
|---|
| 916 | |
|---|
| 917 | register ssize_t |
|---|
| 918 | x; |
|---|
| 919 | |
|---|
| 920 | p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception); |
|---|
| 921 | if (p == (const Quantum *) NULL) |
|---|
| 922 | break; |
|---|
| 923 | if (cube_info->nodes > MaxNodes) |
|---|
| 924 | { |
|---|
| 925 | /* |
|---|
| 926 | Prune one level if the color tree is too large. |
|---|
| 927 | */ |
|---|
| 928 | PruneLevel(image,cube_info,cube_info->root); |
|---|
| 929 | cube_info->depth--; |
|---|
| 930 | } |
|---|
| 931 | for (x=0; x < (ssize_t) image->columns; x+=(ssize_t) count) |
|---|
| 932 | { |
|---|
| 933 | /* |
|---|
| 934 | Start at the root and descend the color cube tree. |
|---|
| 935 | */ |
|---|
| 936 | for (count=1; (x+(ssize_t) count) < (ssize_t) image->columns; count++) |
|---|
| 937 | { |
|---|
| 938 | PixelInfo |
|---|
| 939 | packet; |
|---|
| 940 | |
|---|
| 941 | GetPixelInfoPixel(image,p+count*GetPixelChannels(image),&packet); |
|---|
| 942 | if (IsPixelEquivalent(image,p,&packet) == MagickFalse) |
|---|
| 943 | break; |
|---|
| 944 | } |
|---|
| 945 | AssociateAlphaPixel(image,cube_info,p,&pixel); |
|---|
| 946 | index=MaxTreeDepth-1; |
|---|
| 947 | bisect=((double) QuantumRange+1.0)/2.0; |
|---|
| 948 | mid=midpoint; |
|---|
| 949 | node_info=cube_info->root; |
|---|
| 950 | for (level=1; level <= cube_info->depth; level++) |
|---|
| 951 | { |
|---|
| 952 | bisect*=0.5; |
|---|
| 953 | id=ColorToNodeId(cube_info,&pixel,index); |
|---|
| 954 | mid.red+=(id & 1) != 0 ? bisect : -bisect; |
|---|
| 955 | mid.green+=(id & 2) != 0 ? bisect : -bisect; |
|---|
| 956 | mid.blue+=(id & 4) != 0 ? bisect : -bisect; |
|---|
| 957 | mid.alpha+=(id & 8) != 0 ? bisect : -bisect; |
|---|
| 958 | if (node_info->child[id] == (NodeInfo *) NULL) |
|---|
| 959 | { |
|---|
| 960 | /* |
|---|
| 961 | Set colors of new node to contain pixel. |
|---|
| 962 | */ |
|---|
| 963 | node_info->child[id]=GetNodeInfo(cube_info,id,level,node_info); |
|---|
| 964 | if (node_info->child[id] == (NodeInfo *) NULL) |
|---|
| 965 | (void) ThrowMagickException(exception,GetMagickModule(), |
|---|
| 966 | ResourceLimitError,"MemoryAllocationFailed","%s", |
|---|
| 967 | image->filename); |
|---|
| 968 | if (level == cube_info->depth) |
|---|
| 969 | cube_info->colors++; |
|---|
| 970 | } |
|---|
| 971 | /* |
|---|
| 972 | Approximate the quantization error represented by this node. |
|---|
| 973 | */ |
|---|
| 974 | node_info=node_info->child[id]; |
|---|
| 975 | error.red=QuantumScale*(pixel.red-mid.red); |
|---|
| 976 | error.green=QuantumScale*(pixel.green-mid.green); |
|---|
| 977 | error.blue=QuantumScale*(pixel.blue-mid.blue); |
|---|
| 978 | if (cube_info->associate_alpha != MagickFalse) |
|---|
| 979 | error.alpha=QuantumScale*(pixel.alpha-mid.alpha); |
|---|
| 980 | node_info->quantize_error+=sqrt((double) (count*error.red*error.red+ |
|---|
| 981 | count*error.green*error.green+count*error.blue*error.blue+count* |
|---|
| 982 | error.alpha*error.alpha)); |
|---|
| 983 | cube_info->root->quantize_error+=node_info->quantize_error; |
|---|
| 984 | index--; |
|---|
| 985 | } |
|---|
| 986 | /* |
|---|
| 987 | Sum RGB for this leaf for later derivation of the mean cube color. |
|---|
| 988 | */ |
|---|
| 989 | node_info->number_unique+=count; |
|---|
| 990 | node_info->total_color.red+=count*QuantumScale*ClampPixel(pixel.red); |
|---|
| 991 | node_info->total_color.green+=count*QuantumScale*ClampPixel(pixel.green); |
|---|
| 992 | node_info->total_color.blue+=count*QuantumScale*ClampPixel(pixel.blue); |
|---|
| 993 | if (cube_info->associate_alpha != MagickFalse) |
|---|
| 994 | node_info->total_color.alpha+=count*QuantumScale*ClampPixel( |
|---|
| 995 | pixel.alpha); |
|---|
| 996 | p+=count*GetPixelChannels(image); |
|---|
| 997 | } |
|---|
| 998 | proceed=SetImageProgress(image,ClassifyImageTag,(MagickOffsetType) y, |
|---|
| 999 | image->rows); |
|---|
| 1000 | if (proceed == MagickFalse) |
|---|
| 1001 | break; |
|---|
| 1002 | } |
|---|
| 1003 | image_view=DestroyCacheView(image_view); |
|---|
| 1004 | if ((cube_info->quantize_info->colorspace != UndefinedColorspace) && |
|---|
| 1005 | (cube_info->quantize_info->colorspace != CMYKColorspace)) |
|---|
| 1006 | (void) TransformImageColorspace((Image *) image,sRGBColorspace,exception); |
|---|
| 1007 | return(MagickTrue); |
|---|
| 1008 | } |
|---|
| 1009 | |
|---|
| 1010 | /* |
|---|
| 1011 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 1012 | % % |
|---|
| 1013 | % % |
|---|
| 1014 | % % |
|---|
| 1015 | % C l o n e Q u a n t i z e I n f o % |
|---|
| 1016 | % % |
|---|
| 1017 | % % |
|---|
| 1018 | % % |
|---|
| 1019 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 1020 | % |
|---|
| 1021 | % CloneQuantizeInfo() makes a duplicate of the given quantize info structure, |
|---|
| 1022 | % or if quantize info is NULL, a new one. |
|---|
| 1023 | % |
|---|
| 1024 | % The format of the CloneQuantizeInfo method is: |
|---|
| 1025 | % |
|---|
| 1026 | % QuantizeInfo *CloneQuantizeInfo(const QuantizeInfo *quantize_info) |
|---|
| 1027 | % |
|---|
| 1028 | % A description of each parameter follows: |
|---|
| 1029 | % |
|---|
| 1030 | % o clone_info: Method CloneQuantizeInfo returns a duplicate of the given |
|---|
| 1031 | % quantize info, or if image info is NULL a new one. |
|---|
| 1032 | % |
|---|
| 1033 | % o quantize_info: a structure of type info. |
|---|
| 1034 | % |
|---|
| 1035 | */ |
|---|
| 1036 | MagickExport QuantizeInfo *CloneQuantizeInfo(const QuantizeInfo *quantize_info) |
|---|
| 1037 | { |
|---|
| 1038 | QuantizeInfo |
|---|
| 1039 | *clone_info; |
|---|
| 1040 | |
|---|
| 1041 | clone_info=(QuantizeInfo *) AcquireMagickMemory(sizeof(*clone_info)); |
|---|
| 1042 | if (clone_info == (QuantizeInfo *) NULL) |
|---|
| 1043 | ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed"); |
|---|
| 1044 | GetQuantizeInfo(clone_info); |
|---|
| 1045 | if (quantize_info == (QuantizeInfo *) NULL) |
|---|
| 1046 | return(clone_info); |
|---|
| 1047 | clone_info->number_colors=quantize_info->number_colors; |
|---|
| 1048 | clone_info->tree_depth=quantize_info->tree_depth; |
|---|
| 1049 | clone_info->dither_method=quantize_info->dither_method; |
|---|
| 1050 | clone_info->colorspace=quantize_info->colorspace; |
|---|
| 1051 | clone_info->measure_error=quantize_info->measure_error; |
|---|
| 1052 | return(clone_info); |
|---|
| 1053 | } |
|---|
| 1054 | |
|---|
| 1055 | /* |
|---|
| 1056 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 1057 | % % |
|---|
| 1058 | % % |
|---|
| 1059 | % % |
|---|
| 1060 | + C l o s e s t C o l o r % |
|---|
| 1061 | % % |
|---|
| 1062 | % % |
|---|
| 1063 | % % |
|---|
| 1064 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 1065 | % |
|---|
| 1066 | % ClosestColor() traverses the color cube tree at a particular node and |
|---|
| 1067 | % determines which colormap entry best represents the input color. |
|---|
| 1068 | % |
|---|
| 1069 | % The format of the ClosestColor method is: |
|---|
| 1070 | % |
|---|
| 1071 | % void ClosestColor(const Image *image,CubeInfo *cube_info, |
|---|
| 1072 | % const NodeInfo *node_info) |
|---|
| 1073 | % |
|---|
| 1074 | % A description of each parameter follows. |
|---|
| 1075 | % |
|---|
| 1076 | % o image: the image. |
|---|
| 1077 | % |
|---|
| 1078 | % o cube_info: A pointer to the Cube structure. |
|---|
| 1079 | % |
|---|
| 1080 | % o node_info: the address of a structure of type NodeInfo which points to a |
|---|
| 1081 | % node in the color cube tree that is to be pruned. |
|---|
| 1082 | % |
|---|
| 1083 | */ |
|---|
| 1084 | static void ClosestColor(const Image *image,CubeInfo *cube_info, |
|---|
| 1085 | const NodeInfo *node_info) |
|---|
| 1086 | { |
|---|
| 1087 | register ssize_t |
|---|
| 1088 | i; |
|---|
| 1089 | |
|---|
| 1090 | size_t |
|---|
| 1091 | number_children; |
|---|
| 1092 | |
|---|
| 1093 | /* |
|---|
| 1094 | Traverse any children. |
|---|
| 1095 | */ |
|---|
| 1096 | number_children=cube_info->associate_alpha == MagickFalse ? 8UL : 16UL; |
|---|
| 1097 | for (i=0; i < (ssize_t) number_children; i++) |
|---|
| 1098 | if (node_info->child[i] != (NodeInfo *) NULL) |
|---|
| 1099 | ClosestColor(image,cube_info,node_info->child[i]); |
|---|
| 1100 | if (node_info->number_unique != 0) |
|---|
| 1101 | { |
|---|
| 1102 | double |
|---|
| 1103 | pixel; |
|---|
| 1104 | |
|---|
| 1105 | register double |
|---|
| 1106 | alpha, |
|---|
| 1107 | beta, |
|---|
| 1108 | distance; |
|---|
| 1109 | |
|---|
| 1110 | register PixelInfo |
|---|
| 1111 | *restrict p; |
|---|
| 1112 | |
|---|
| 1113 | register RealPixelInfo |
|---|
| 1114 | *restrict q; |
|---|
| 1115 | |
|---|
| 1116 | /* |
|---|
| 1117 | Determine if this color is "closest". |
|---|
| 1118 | */ |
|---|
| 1119 | p=image->colormap+node_info->color_number; |
|---|
| 1120 | q=(&cube_info->target); |
|---|
| 1121 | alpha=1.0; |
|---|
| 1122 | beta=1.0; |
|---|
| 1123 | if (cube_info->associate_alpha != MagickFalse) |
|---|
| 1124 | { |
|---|
| 1125 | alpha=(double) (QuantumScale*p->alpha); |
|---|
| 1126 | beta=(double) (QuantumScale*q->alpha); |
|---|
| 1127 | } |
|---|
| 1128 | pixel=alpha*p->red-beta*q->red; |
|---|
| 1129 | distance=pixel*pixel; |
|---|
| 1130 | if (distance <= cube_info->distance) |
|---|
| 1131 | { |
|---|
| 1132 | pixel=alpha*p->green-beta*q->green; |
|---|
| 1133 | distance+=pixel*pixel; |
|---|
| 1134 | if (distance <= cube_info->distance) |
|---|
| 1135 | { |
|---|
| 1136 | pixel=alpha*p->blue-beta*q->blue; |
|---|
| 1137 | distance+=pixel*pixel; |
|---|
| 1138 | if (distance <= cube_info->distance) |
|---|
| 1139 | { |
|---|
| 1140 | pixel=alpha-beta; |
|---|
| 1141 | distance+=pixel*pixel; |
|---|
| 1142 | if (distance <= cube_info->distance) |
|---|
| 1143 | { |
|---|
| 1144 | cube_info->distance=distance; |
|---|
| 1145 | cube_info->color_number=node_info->color_number; |
|---|
| 1146 | } |
|---|
| 1147 | } |
|---|
| 1148 | } |
|---|
| 1149 | } |
|---|
| 1150 | } |
|---|
| 1151 | } |
|---|
| 1152 | |
|---|
| 1153 | /* |
|---|
| 1154 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 1155 | % % |
|---|
| 1156 | % % |
|---|
| 1157 | % % |
|---|
| 1158 | % C o m p r e s s I m a g e C o l o r m a p % |
|---|
| 1159 | % % |
|---|
| 1160 | % % |
|---|
| 1161 | % % |
|---|
| 1162 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 1163 | % |
|---|
| 1164 | % CompressImageColormap() compresses an image colormap by removing any |
|---|
| 1165 | % duplicate or unused color entries. |
|---|
| 1166 | % |
|---|
| 1167 | % The format of the CompressImageColormap method is: |
|---|
| 1168 | % |
|---|
| 1169 | % MagickBooleanType CompressImageColormap(Image *image, |
|---|
| 1170 | % ExceptionInfo *exception) |
|---|
| 1171 | % |
|---|
| 1172 | % A description of each parameter follows: |
|---|
| 1173 | % |
|---|
| 1174 | % o image: the image. |
|---|
| 1175 | % |
|---|
| 1176 | % o exception: return any errors or warnings in this structure. |
|---|
| 1177 | % |
|---|
| 1178 | */ |
|---|
| 1179 | MagickExport MagickBooleanType CompressImageColormap(Image *image, |
|---|
| 1180 | ExceptionInfo *exception) |
|---|
| 1181 | { |
|---|
| 1182 | QuantizeInfo |
|---|
| 1183 | quantize_info; |
|---|
| 1184 | |
|---|
| 1185 | assert(image != (Image *) NULL); |
|---|
| 1186 | assert(image->signature == MagickSignature); |
|---|
| 1187 | if (image->debug != MagickFalse) |
|---|
| 1188 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename); |
|---|
| 1189 | if (IsPaletteImage(image,exception) == MagickFalse) |
|---|
| 1190 | return(MagickFalse); |
|---|
| 1191 | GetQuantizeInfo(&quantize_info); |
|---|
| 1192 | quantize_info.number_colors=image->colors; |
|---|
| 1193 | quantize_info.tree_depth=MaxTreeDepth; |
|---|
| 1194 | return(QuantizeImage(&quantize_info,image,exception)); |
|---|
| 1195 | } |
|---|
| 1196 | |
|---|
| 1197 | /* |
|---|
| 1198 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 1199 | % % |
|---|
| 1200 | % % |
|---|
| 1201 | % % |
|---|
| 1202 | + D e f i n e I m a g e C o l o r m a p % |
|---|
| 1203 | % % |
|---|
| 1204 | % % |
|---|
| 1205 | % % |
|---|
| 1206 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 1207 | % |
|---|
| 1208 | % DefineImageColormap() traverses the color cube tree and notes each colormap |
|---|
| 1209 | % entry. A colormap entry is any node in the color cube tree where the |
|---|
| 1210 | % of unique colors is not zero. DefineImageColormap() returns the number of |
|---|
| 1211 | % colors in the image colormap. |
|---|
| 1212 | % |
|---|
| 1213 | % The format of the DefineImageColormap method is: |
|---|
| 1214 | % |
|---|
| 1215 | % size_t DefineImageColormap(Image *image,CubeInfo *cube_info, |
|---|
| 1216 | % NodeInfo *node_info) |
|---|
| 1217 | % |
|---|
| 1218 | % A description of each parameter follows. |
|---|
| 1219 | % |
|---|
| 1220 | % o image: the image. |
|---|
| 1221 | % |
|---|
| 1222 | % o cube_info: A pointer to the Cube structure. |
|---|
| 1223 | % |
|---|
| 1224 | % o node_info: the address of a structure of type NodeInfo which points to a |
|---|
| 1225 | % node in the color cube tree that is to be pruned. |
|---|
| 1226 | % |
|---|
| 1227 | */ |
|---|
| 1228 | static size_t DefineImageColormap(Image *image,CubeInfo *cube_info, |
|---|
| 1229 | NodeInfo *node_info) |
|---|
| 1230 | { |
|---|
| 1231 | register ssize_t |
|---|
| 1232 | i; |
|---|
| 1233 | |
|---|
| 1234 | size_t |
|---|
| 1235 | number_children; |
|---|
| 1236 | |
|---|
| 1237 | /* |
|---|
| 1238 | Traverse any children. |
|---|
| 1239 | */ |
|---|
| 1240 | number_children=cube_info->associate_alpha == MagickFalse ? 8UL : 16UL; |
|---|
| 1241 | for (i=0; i < (ssize_t) number_children; i++) |
|---|
| 1242 | if (node_info->child[i] != (NodeInfo *) NULL) |
|---|
| 1243 | (void) DefineImageColormap(image,cube_info,node_info->child[i]); |
|---|
| 1244 | if (node_info->number_unique != 0) |
|---|
| 1245 | { |
|---|
| 1246 | register double |
|---|
| 1247 | alpha; |
|---|
| 1248 | |
|---|
| 1249 | register PixelInfo |
|---|
| 1250 | *restrict q; |
|---|
| 1251 | |
|---|
| 1252 | /* |
|---|
| 1253 | Colormap entry is defined by the mean color in this cube. |
|---|
| 1254 | */ |
|---|
| 1255 | q=image->colormap+image->colors; |
|---|
| 1256 | alpha=(double) ((MagickOffsetType) node_info->number_unique); |
|---|
| 1257 | alpha=PerceptibleReciprocal(alpha); |
|---|
| 1258 | if (cube_info->associate_alpha == MagickFalse) |
|---|
| 1259 | { |
|---|
| 1260 | q->red=(double) ClampToQuantum(alpha*QuantumRange* |
|---|
| 1261 | node_info->total_color.red); |
|---|
| 1262 | q->green=(double) ClampToQuantum(alpha*QuantumRange* |
|---|
| 1263 | node_info->total_color.green); |
|---|
| 1264 | q->blue=(double) ClampToQuantum(alpha*QuantumRange* |
|---|
| 1265 | node_info->total_color.blue); |
|---|
| 1266 | q->alpha=(double) OpaqueAlpha; |
|---|
| 1267 | } |
|---|
| 1268 | else |
|---|
| 1269 | { |
|---|
| 1270 | double |
|---|
| 1271 | opacity; |
|---|
| 1272 | |
|---|
| 1273 | opacity=(double) (alpha*QuantumRange*node_info->total_color.alpha); |
|---|
| 1274 | q->alpha=(double) ClampToQuantum((opacity)); |
|---|
| 1275 | if (q->alpha == OpaqueAlpha) |
|---|
| 1276 | { |
|---|
| 1277 | q->red=(double) ClampToQuantum(alpha*QuantumRange* |
|---|
| 1278 | node_info->total_color.red); |
|---|
| 1279 | q->green=(double) ClampToQuantum(alpha*QuantumRange* |
|---|
| 1280 | node_info->total_color.green); |
|---|
| 1281 | q->blue=(double) ClampToQuantum(alpha*QuantumRange* |
|---|
| 1282 | node_info->total_color.blue); |
|---|
| 1283 | } |
|---|
| 1284 | else |
|---|
| 1285 | { |
|---|
| 1286 | double |
|---|
| 1287 | gamma; |
|---|
| 1288 | |
|---|
| 1289 | gamma=(double) (QuantumScale*q->alpha); |
|---|
| 1290 | gamma=PerceptibleReciprocal(gamma); |
|---|
| 1291 | q->red=(double) ClampToQuantum(alpha*gamma*QuantumRange* |
|---|
| 1292 | node_info->total_color.red); |
|---|
| 1293 | q->green=(double) ClampToQuantum(alpha*gamma*QuantumRange* |
|---|
| 1294 | node_info->total_color.green); |
|---|
| 1295 | q->blue=(double) ClampToQuantum(alpha*gamma*QuantumRange* |
|---|
| 1296 | node_info->total_color.blue); |
|---|
| 1297 | if (node_info->number_unique > cube_info->transparent_pixels) |
|---|
| 1298 | { |
|---|
| 1299 | cube_info->transparent_pixels=node_info->number_unique; |
|---|
| 1300 | cube_info->transparent_index=(ssize_t) image->colors; |
|---|
| 1301 | } |
|---|
| 1302 | } |
|---|
| 1303 | } |
|---|
| 1304 | node_info->color_number=image->colors++; |
|---|
| 1305 | } |
|---|
| 1306 | return(image->colors); |
|---|
| 1307 | } |
|---|
| 1308 | |
|---|
| 1309 | /* |
|---|
| 1310 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 1311 | % % |
|---|
| 1312 | % % |
|---|
| 1313 | % % |
|---|
| 1314 | + D e s t r o y C u b e I n f o % |
|---|
| 1315 | % % |
|---|
| 1316 | % % |
|---|
| 1317 | % % |
|---|
| 1318 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 1319 | % |
|---|
| 1320 | % DestroyCubeInfo() deallocates memory associated with an image. |
|---|
| 1321 | % |
|---|
| 1322 | % The format of the DestroyCubeInfo method is: |
|---|
| 1323 | % |
|---|
| 1324 | % DestroyCubeInfo(CubeInfo *cube_info) |
|---|
| 1325 | % |
|---|
| 1326 | % A description of each parameter follows: |
|---|
| 1327 | % |
|---|
| 1328 | % o cube_info: the address of a structure of type CubeInfo. |
|---|
| 1329 | % |
|---|
| 1330 | */ |
|---|
| 1331 | static void DestroyCubeInfo(CubeInfo *cube_info) |
|---|
| 1332 | { |
|---|
| 1333 | register Nodes |
|---|
| 1334 | *nodes; |
|---|
| 1335 | |
|---|
| 1336 | /* |
|---|
| 1337 | Release color cube tree storage. |
|---|
| 1338 | */ |
|---|
| 1339 | do |
|---|
| 1340 | { |
|---|
| 1341 | nodes=cube_info->node_queue->next; |
|---|
| 1342 | cube_info->node_queue->nodes=(NodeInfo *) RelinquishMagickMemory( |
|---|
| 1343 | cube_info->node_queue->nodes); |
|---|
| 1344 | cube_info->node_queue=(Nodes *) RelinquishMagickMemory( |
|---|
| 1345 | cube_info->node_queue); |
|---|
| 1346 | cube_info->node_queue=nodes; |
|---|
| 1347 | } while (cube_info->node_queue != (Nodes *) NULL); |
|---|
| 1348 | if (cube_info->cache != (ssize_t *) NULL) |
|---|
| 1349 | cube_info->cache=(ssize_t *) RelinquishMagickMemory(cube_info->cache); |
|---|
| 1350 | cube_info->quantize_info=DestroyQuantizeInfo(cube_info->quantize_info); |
|---|
| 1351 | cube_info=(CubeInfo *) RelinquishMagickMemory(cube_info); |
|---|
| 1352 | } |
|---|
| 1353 | |
|---|
| 1354 | /* |
|---|
| 1355 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 1356 | % % |
|---|
| 1357 | % % |
|---|
| 1358 | % % |
|---|
| 1359 | % D e s t r o y Q u a n t i z e I n f o % |
|---|
| 1360 | % % |
|---|
| 1361 | % % |
|---|
| 1362 | % % |
|---|
| 1363 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 1364 | % |
|---|
| 1365 | % DestroyQuantizeInfo() deallocates memory associated with an QuantizeInfo |
|---|
| 1366 | % structure. |
|---|
| 1367 | % |
|---|
| 1368 | % The format of the DestroyQuantizeInfo method is: |
|---|
| 1369 | % |
|---|
| 1370 | % QuantizeInfo *DestroyQuantizeInfo(QuantizeInfo *quantize_info) |
|---|
| 1371 | % |
|---|
| 1372 | % A description of each parameter follows: |
|---|
| 1373 | % |
|---|
| 1374 | % o quantize_info: Specifies a pointer to an QuantizeInfo structure. |
|---|
| 1375 | % |
|---|
| 1376 | */ |
|---|
| 1377 | MagickExport QuantizeInfo *DestroyQuantizeInfo(QuantizeInfo *quantize_info) |
|---|
| 1378 | { |
|---|
| 1379 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"..."); |
|---|
| 1380 | assert(quantize_info != (QuantizeInfo *) NULL); |
|---|
| 1381 | assert(quantize_info->signature == MagickSignature); |
|---|
| 1382 | quantize_info->signature=(~MagickSignature); |
|---|
| 1383 | quantize_info=(QuantizeInfo *) RelinquishMagickMemory(quantize_info); |
|---|
| 1384 | return(quantize_info); |
|---|
| 1385 | } |
|---|
| 1386 | |
|---|
| 1387 | /* |
|---|
| 1388 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 1389 | % % |
|---|
| 1390 | % % |
|---|
| 1391 | % % |
|---|
| 1392 | + D i t h e r I m a g e % |
|---|
| 1393 | % % |
|---|
| 1394 | % % |
|---|
| 1395 | % % |
|---|
| 1396 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 1397 | % |
|---|
| 1398 | % DitherImage() distributes the difference between an original image and |
|---|
| 1399 | % the corresponding color reduced algorithm to neighboring pixels using |
|---|
| 1400 | % serpentine-scan Floyd-Steinberg error diffusion. DitherImage returns |
|---|
| 1401 | % MagickTrue if the image is dithered otherwise MagickFalse. |
|---|
| 1402 | % |
|---|
| 1403 | % The format of the DitherImage method is: |
|---|
| 1404 | % |
|---|
| 1405 | % MagickBooleanType DitherImage(Image *image,CubeInfo *cube_info, |
|---|
| 1406 | % ExceptionInfo *exception) |
|---|
| 1407 | % |
|---|
| 1408 | % A description of each parameter follows. |
|---|
| 1409 | % |
|---|
| 1410 | % o image: the image. |
|---|
| 1411 | % |
|---|
| 1412 | % o cube_info: A pointer to the Cube structure. |
|---|
| 1413 | % |
|---|
| 1414 | % o exception: return any errors or warnings in this structure. |
|---|
| 1415 | % |
|---|
| 1416 | */ |
|---|
| 1417 | |
|---|
| 1418 | static RealPixelInfo **DestroyPixelThreadSet(RealPixelInfo **pixels) |
|---|
| 1419 | { |
|---|
| 1420 | register ssize_t |
|---|
| 1421 | i; |
|---|
| 1422 | |
|---|
| 1423 | assert(pixels != (RealPixelInfo **) NULL); |
|---|
| 1424 | for (i=0; i < (ssize_t) GetMagickResourceLimit(ThreadResource); i++) |
|---|
| 1425 | if (pixels[i] != (RealPixelInfo *) NULL) |
|---|
| 1426 | pixels[i]=(RealPixelInfo *) RelinquishMagickMemory(pixels[i]); |
|---|
| 1427 | pixels=(RealPixelInfo **) RelinquishMagickMemory(pixels); |
|---|
| 1428 | return(pixels); |
|---|
| 1429 | } |
|---|
| 1430 | |
|---|
| 1431 | static RealPixelInfo **AcquirePixelThreadSet(const size_t count) |
|---|
| 1432 | { |
|---|
| 1433 | RealPixelInfo |
|---|
| 1434 | **pixels; |
|---|
| 1435 | |
|---|
| 1436 | register ssize_t |
|---|
| 1437 | i; |
|---|
| 1438 | |
|---|
| 1439 | size_t |
|---|
| 1440 | number_threads; |
|---|
| 1441 | |
|---|
| 1442 | number_threads=(size_t) GetMagickResourceLimit(ThreadResource); |
|---|
| 1443 | pixels=(RealPixelInfo **) AcquireQuantumMemory(number_threads, |
|---|
| 1444 | sizeof(*pixels)); |
|---|
| 1445 | if (pixels == (RealPixelInfo **) NULL) |
|---|
| 1446 | return((RealPixelInfo **) NULL); |
|---|
| 1447 | (void) ResetMagickMemory(pixels,0,number_threads*sizeof(*pixels)); |
|---|
| 1448 | for (i=0; i < (ssize_t) number_threads; i++) |
|---|
| 1449 | { |
|---|
| 1450 | pixels[i]=(RealPixelInfo *) AcquireQuantumMemory(count,2*sizeof(**pixels)); |
|---|
| 1451 | if (pixels[i] == (RealPixelInfo *) NULL) |
|---|
| 1452 | return(DestroyPixelThreadSet(pixels)); |
|---|
| 1453 | } |
|---|
| 1454 | return(pixels); |
|---|
| 1455 | } |
|---|
| 1456 | |
|---|
| 1457 | static inline ssize_t CacheOffset(CubeInfo *cube_info, |
|---|
| 1458 | const RealPixelInfo *pixel) |
|---|
| 1459 | { |
|---|
| 1460 | #define RedShift(pixel) (((pixel) >> CacheShift) << (0*(8-CacheShift))) |
|---|
| 1461 | #define GreenShift(pixel) (((pixel) >> CacheShift) << (1*(8-CacheShift))) |
|---|
| 1462 | #define BlueShift(pixel) (((pixel) >> CacheShift) << (2*(8-CacheShift))) |
|---|
| 1463 | #define AlphaShift(pixel) (((pixel) >> CacheShift) << (3*(8-CacheShift))) |
|---|
| 1464 | |
|---|
| 1465 | ssize_t |
|---|
| 1466 | offset; |
|---|
| 1467 | |
|---|
| 1468 | offset=(ssize_t) (RedShift(ScaleQuantumToChar(ClampPixel(pixel->red))) | |
|---|
| 1469 | GreenShift(ScaleQuantumToChar(ClampPixel(pixel->green))) | |
|---|
| 1470 | BlueShift(ScaleQuantumToChar(ClampPixel(pixel->blue)))); |
|---|
| 1471 | if (cube_info->associate_alpha != MagickFalse) |
|---|
| 1472 | offset|=AlphaShift(ScaleQuantumToChar(ClampPixel(pixel->alpha))); |
|---|
| 1473 | return(offset); |
|---|
| 1474 | } |
|---|
| 1475 | |
|---|
| 1476 | static MagickBooleanType FloydSteinbergDither(Image *image,CubeInfo *cube_info, |
|---|
| 1477 | ExceptionInfo *exception) |
|---|
| 1478 | { |
|---|
| 1479 | #define DitherImageTag "Dither/Image" |
|---|
| 1480 | |
|---|
| 1481 | CacheView |
|---|
| 1482 | *image_view; |
|---|
| 1483 | |
|---|
| 1484 | MagickBooleanType |
|---|
| 1485 | status; |
|---|
| 1486 | |
|---|
| 1487 | RealPixelInfo |
|---|
| 1488 | **pixels; |
|---|
| 1489 | |
|---|
| 1490 | ssize_t |
|---|
| 1491 | y; |
|---|
| 1492 | |
|---|
| 1493 | /* |
|---|
| 1494 | Distribute quantization error using Floyd-Steinberg. |
|---|
| 1495 | */ |
|---|
| 1496 | pixels=AcquirePixelThreadSet(image->columns); |
|---|
| 1497 | if (pixels == (RealPixelInfo **) NULL) |
|---|
| 1498 | return(MagickFalse); |
|---|
| 1499 | status=MagickTrue; |
|---|
| 1500 | image_view=AcquireAuthenticCacheView(image,exception); |
|---|
| 1501 | for (y=0; y < (ssize_t) image->rows; y++) |
|---|
| 1502 | { |
|---|
| 1503 | const int |
|---|
| 1504 | id = GetOpenMPThreadId(); |
|---|
| 1505 | |
|---|
| 1506 | CubeInfo |
|---|
| 1507 | cube; |
|---|
| 1508 | |
|---|
| 1509 | RealPixelInfo |
|---|
| 1510 | *current, |
|---|
| 1511 | *previous; |
|---|
| 1512 | |
|---|
| 1513 | register Quantum |
|---|
| 1514 | *restrict q; |
|---|
| 1515 | |
|---|
| 1516 | register ssize_t |
|---|
| 1517 | x; |
|---|
| 1518 | |
|---|
| 1519 | size_t |
|---|
| 1520 | index; |
|---|
| 1521 | |
|---|
| 1522 | ssize_t |
|---|
| 1523 | v; |
|---|
| 1524 | |
|---|
| 1525 | if (status == MagickFalse) |
|---|
| 1526 | continue; |
|---|
| 1527 | q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception); |
|---|
| 1528 | if (q == (Quantum *) NULL) |
|---|
| 1529 | { |
|---|
| 1530 | status=MagickFalse; |
|---|
| 1531 | continue; |
|---|
| 1532 | } |
|---|
| 1533 | q+=(y & 0x01)*image->columns*GetPixelChannels(image); |
|---|
| 1534 | cube=(*cube_info); |
|---|
| 1535 | current=pixels[id]+(y & 0x01)*image->columns; |
|---|
| 1536 | previous=pixels[id]+((y+1) & 0x01)*image->columns; |
|---|
| 1537 | v=(ssize_t) ((y & 0x01) != 0 ? -1 : 1); |
|---|
| 1538 | for (x=0; x < (ssize_t) image->columns; x++) |
|---|
| 1539 | { |
|---|
| 1540 | RealPixelInfo |
|---|
| 1541 | color, |
|---|
| 1542 | pixel; |
|---|
| 1543 | |
|---|
| 1544 | register ssize_t |
|---|
| 1545 | i; |
|---|
| 1546 | |
|---|
| 1547 | ssize_t |
|---|
| 1548 | u; |
|---|
| 1549 | |
|---|
| 1550 | q-=(y & 0x01)*GetPixelChannels(image); |
|---|
| 1551 | u=(y & 0x01) != 0 ? (ssize_t) image->columns-1-x : x; |
|---|
| 1552 | AssociateAlphaPixel(image,&cube,q,&pixel); |
|---|
| 1553 | if (x > 0) |
|---|
| 1554 | { |
|---|
| 1555 | pixel.red+=7*current[u-v].red/16; |
|---|
| 1556 | pixel.green+=7*current[u-v].green/16; |
|---|
| 1557 | pixel.blue+=7*current[u-v].blue/16; |
|---|
| 1558 | if (cube.associate_alpha != MagickFalse) |
|---|
| 1559 | pixel.alpha+=7*current[u-v].alpha/16; |
|---|
| 1560 | } |
|---|
| 1561 | if (y > 0) |
|---|
| 1562 | { |
|---|
| 1563 | if (x < (ssize_t) (image->columns-1)) |
|---|
| 1564 | { |
|---|
| 1565 | pixel.red+=previous[u+v].red/16; |
|---|
| 1566 | pixel.green+=previous[u+v].green/16; |
|---|
| 1567 | pixel.blue+=previous[u+v].blue/16; |
|---|
| 1568 | if (cube.associate_alpha != MagickFalse) |
|---|
| 1569 | pixel.alpha+=previous[u+v].alpha/16; |
|---|
| 1570 | } |
|---|
| 1571 | pixel.red+=5*previous[u].red/16; |
|---|
| 1572 | pixel.green+=5*previous[u].green/16; |
|---|
| 1573 | pixel.blue+=5*previous[u].blue/16; |
|---|
| 1574 | if (cube.associate_alpha != MagickFalse) |
|---|
| 1575 | pixel.alpha+=5*previous[u].alpha/16; |
|---|
| 1576 | if (x > 0) |
|---|
| 1577 | { |
|---|
| 1578 | pixel.red+=3*previous[u-v].red/16; |
|---|
| 1579 | pixel.green+=3*previous[u-v].green/16; |
|---|
| 1580 | pixel.blue+=3*previous[u-v].blue/16; |
|---|
| 1581 | if (cube.associate_alpha != MagickFalse) |
|---|
| 1582 | pixel.alpha+=3*previous[u-v].alpha/16; |
|---|
| 1583 | } |
|---|
| 1584 | } |
|---|
| 1585 | pixel.red=(double) ClampPixel(pixel.red); |
|---|
| 1586 | pixel.green=(double) ClampPixel(pixel.green); |
|---|
| 1587 | pixel.blue=(double) ClampPixel(pixel.blue); |
|---|
| 1588 | if (cube.associate_alpha != MagickFalse) |
|---|
| 1589 | pixel.alpha=(double) ClampPixel(pixel.alpha); |
|---|
| 1590 | i=CacheOffset(&cube,&pixel); |
|---|
| 1591 | if (cube.cache[i] < 0) |
|---|
| 1592 | { |
|---|
| 1593 | register NodeInfo |
|---|
| 1594 | *node_info; |
|---|
| 1595 | |
|---|
| 1596 | register size_t |
|---|
| 1597 | id; |
|---|
| 1598 | |
|---|
| 1599 | /* |
|---|
| 1600 | Identify the deepest node containing the pixel's color. |
|---|
| 1601 | */ |
|---|
| 1602 | node_info=cube.root; |
|---|
| 1603 | for (index=MaxTreeDepth-1; (ssize_t) index > 0; index--) |
|---|
| 1604 | { |
|---|
| 1605 | id=ColorToNodeId(&cube,&pixel,index); |
|---|
| 1606 | if (node_info->child[id] == (NodeInfo *) NULL) |
|---|
| 1607 | break; |
|---|
| 1608 | node_info=node_info->child[id]; |
|---|
| 1609 | } |
|---|
| 1610 | /* |
|---|
| 1611 | Find closest color among siblings and their children. |
|---|
| 1612 | */ |
|---|
| 1613 | cube.target=pixel; |
|---|
| 1614 | cube.distance=(double) (4.0*(QuantumRange+1.0)*(QuantumRange+1.0)+ |
|---|
| 1615 | 1.0); |
|---|
| 1616 | ClosestColor(image,&cube,node_info->parent); |
|---|
| 1617 | cube.cache[i]=(ssize_t) cube.color_number; |
|---|
| 1618 | } |
|---|
| 1619 | /* |
|---|
| 1620 | Assign pixel to closest colormap entry. |
|---|
| 1621 | */ |
|---|
| 1622 | index=(size_t) cube.cache[i]; |
|---|
| 1623 | if (image->storage_class == PseudoClass) |
|---|
| 1624 | SetPixelIndex(image,(Quantum) index,q); |
|---|
| 1625 | if (cube.quantize_info->measure_error == MagickFalse) |
|---|
| 1626 | { |
|---|
| 1627 | SetPixelRed(image,ClampToQuantum(image->colormap[index].red),q); |
|---|
| 1628 | SetPixelGreen(image,ClampToQuantum(image->colormap[index].green),q); |
|---|
| 1629 | SetPixelBlue(image,ClampToQuantum(image->colormap[index].blue),q); |
|---|
| 1630 | if (cube.associate_alpha != MagickFalse) |
|---|
| 1631 | SetPixelAlpha(image,ClampToQuantum(image->colormap[index].alpha),q); |
|---|
| 1632 | } |
|---|
| 1633 | if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse) |
|---|
| 1634 | status=MagickFalse; |
|---|
| 1635 | /* |
|---|
| 1636 | Store the error. |
|---|
| 1637 | */ |
|---|
| 1638 | AssociateAlphaPixelInfo(&cube,image->colormap+index,&color); |
|---|
| 1639 | current[u].red=pixel.red-color.red; |
|---|
| 1640 | current[u].green=pixel.green-color.green; |
|---|
| 1641 | current[u].blue=pixel.blue-color.blue; |
|---|
| 1642 | if (cube.associate_alpha != MagickFalse) |
|---|
| 1643 | current[u].alpha=pixel.alpha-color.alpha; |
|---|
| 1644 | if (image->progress_monitor != (MagickProgressMonitor) NULL) |
|---|
| 1645 | { |
|---|
| 1646 | MagickBooleanType |
|---|
| 1647 | proceed; |
|---|
| 1648 | |
|---|
| 1649 | #if defined(MAGICKCORE_OPENMP_SUPPORT) |
|---|
| 1650 | #pragma omp critical (MagickCore_FloydSteinbergDither) |
|---|
| 1651 | #endif |
|---|
| 1652 | proceed=SetImageProgress(image,DitherImageTag,(MagickOffsetType) y, |
|---|
| 1653 | image->rows); |
|---|
| 1654 | if (proceed == MagickFalse) |
|---|
| 1655 | status=MagickFalse; |
|---|
| 1656 | } |
|---|
| 1657 | q+=((y+1) & 0x01)*GetPixelChannels(image); |
|---|
| 1658 | } |
|---|
| 1659 | } |
|---|
| 1660 | image_view=DestroyCacheView(image_view); |
|---|
| 1661 | pixels=DestroyPixelThreadSet(pixels); |
|---|
| 1662 | return(MagickTrue); |
|---|
| 1663 | } |
|---|
| 1664 | |
|---|
| 1665 | static MagickBooleanType |
|---|
| 1666 | RiemersmaDither(Image *,CacheView *,CubeInfo *,const unsigned int, |
|---|
| 1667 | ExceptionInfo *exception); |
|---|
| 1668 | |
|---|
| 1669 | static void Riemersma(Image *image,CacheView *image_view,CubeInfo *cube_info, |
|---|
| 1670 | const size_t level,const unsigned int direction,ExceptionInfo *exception) |
|---|
| 1671 | { |
|---|
| 1672 | if (level == 1) |
|---|
| 1673 | switch (direction) |
|---|
| 1674 | { |
|---|
| 1675 | case WestGravity: |
|---|
| 1676 | { |
|---|
| 1677 | (void) RiemersmaDither(image,image_view,cube_info,EastGravity, |
|---|
| 1678 | exception); |
|---|
| 1679 | (void) RiemersmaDither(image,image_view,cube_info,SouthGravity, |
|---|
| 1680 | exception); |
|---|
| 1681 | (void) RiemersmaDither(image,image_view,cube_info,WestGravity, |
|---|
| 1682 | exception); |
|---|
| 1683 | break; |
|---|
| 1684 | } |
|---|
| 1685 | case EastGravity: |
|---|
| 1686 | { |
|---|
| 1687 | (void) RiemersmaDither(image,image_view,cube_info,WestGravity, |
|---|
| 1688 | exception); |
|---|
| 1689 | (void) RiemersmaDither(image,image_view,cube_info,NorthGravity, |
|---|
| 1690 | exception); |
|---|
| 1691 | (void) RiemersmaDither(image,image_view,cube_info,EastGravity, |
|---|
| 1692 | exception); |
|---|
| 1693 | break; |
|---|
| 1694 | } |
|---|
| 1695 | case NorthGravity: |
|---|
| 1696 | { |
|---|
| 1697 | (void) RiemersmaDither(image,image_view,cube_info,SouthGravity, |
|---|
| 1698 | exception); |
|---|
| 1699 | (void) RiemersmaDither(image,image_view,cube_info,EastGravity, |
|---|
| 1700 | exception); |
|---|
| 1701 | (void) RiemersmaDither(image,image_view,cube_info,NorthGravity, |
|---|
| 1702 | exception); |
|---|
| 1703 | break; |
|---|
| 1704 | } |
|---|
| 1705 | case SouthGravity: |
|---|
| 1706 | { |
|---|
| 1707 | (void) RiemersmaDither(image,image_view,cube_info,NorthGravity, |
|---|
| 1708 | exception); |
|---|
| 1709 | (void) RiemersmaDither(image,image_view,cube_info,WestGravity, |
|---|
| 1710 | exception); |
|---|
| 1711 | (void) RiemersmaDither(image,image_view,cube_info,SouthGravity, |
|---|
| 1712 | exception); |
|---|
| 1713 | break; |
|---|
| 1714 | } |
|---|
| 1715 | default: |
|---|
| 1716 | break; |
|---|
| 1717 | } |
|---|
| 1718 | else |
|---|
| 1719 | switch (direction) |
|---|
| 1720 | { |
|---|
| 1721 | case WestGravity: |
|---|
| 1722 | { |
|---|
| 1723 | Riemersma(image,image_view,cube_info,level-1,NorthGravity, |
|---|
| 1724 | exception); |
|---|
| 1725 | (void) RiemersmaDither(image,image_view,cube_info,EastGravity, |
|---|
| 1726 | exception); |
|---|
| 1727 | Riemersma(image,image_view,cube_info,level-1,WestGravity, |
|---|
| 1728 | exception); |
|---|
| 1729 | (void) RiemersmaDither(image,image_view,cube_info,SouthGravity, |
|---|
| 1730 | exception); |
|---|
| 1731 | Riemersma(image,image_view,cube_info,level-1,WestGravity, |
|---|
| 1732 | exception); |
|---|
| 1733 | (void) RiemersmaDither(image,image_view,cube_info,WestGravity, |
|---|
| 1734 | exception); |
|---|
| 1735 | Riemersma(image,image_view,cube_info,level-1,SouthGravity, |
|---|
| 1736 | exception); |
|---|
| 1737 | break; |
|---|
| 1738 | } |
|---|
| 1739 | case EastGravity: |
|---|
| 1740 | { |
|---|
| 1741 | Riemersma(image,image_view,cube_info,level-1,SouthGravity, |
|---|
| 1742 | exception); |
|---|
| 1743 | (void) RiemersmaDither(image,image_view,cube_info,WestGravity, |
|---|
| 1744 | exception); |
|---|
| 1745 | Riemersma(image,image_view,cube_info,level-1,EastGravity, |
|---|
| 1746 | exception); |
|---|
| 1747 | (void) RiemersmaDither(image,image_view,cube_info,NorthGravity, |
|---|
| 1748 | exception); |
|---|
| 1749 | Riemersma(image,image_view,cube_info,level-1,EastGravity, |
|---|
| 1750 | exception); |
|---|
| 1751 | (void) RiemersmaDither(image,image_view,cube_info,EastGravity, |
|---|
| 1752 | exception); |
|---|
| 1753 | Riemersma(image,image_view,cube_info,level-1,NorthGravity, |
|---|
| 1754 | exception); |
|---|
| 1755 | break; |
|---|
| 1756 | } |
|---|
| 1757 | case NorthGravity: |
|---|
| 1758 | { |
|---|
| 1759 | Riemersma(image,image_view,cube_info,level-1,WestGravity, |
|---|
| 1760 | exception); |
|---|
| 1761 | (void) RiemersmaDither(image,image_view,cube_info,SouthGravity, |
|---|
| 1762 | exception); |
|---|
| 1763 | Riemersma(image,image_view,cube_info,level-1,NorthGravity, |
|---|
| 1764 | exception); |
|---|
| 1765 | (void) RiemersmaDither(image,image_view,cube_info,EastGravity, |
|---|
| 1766 | exception); |
|---|
| 1767 | Riemersma(image,image_view,cube_info,level-1,NorthGravity, |
|---|
| 1768 | exception); |
|---|
| 1769 | (void) RiemersmaDither(image,image_view,cube_info,NorthGravity, |
|---|
| 1770 | exception); |
|---|
| 1771 | Riemersma(image,image_view,cube_info,level-1,EastGravity, |
|---|
| 1772 | exception); |
|---|
| 1773 | break; |
|---|
| 1774 | } |
|---|
| 1775 | case SouthGravity: |
|---|
| 1776 | { |
|---|
| 1777 | Riemersma(image,image_view,cube_info,level-1,EastGravity, |
|---|
| 1778 | exception); |
|---|
| 1779 | (void) RiemersmaDither(image,image_view,cube_info,NorthGravity, |
|---|
| 1780 | exception); |
|---|
| 1781 | Riemersma(image,image_view,cube_info,level-1,SouthGravity, |
|---|
| 1782 | exception); |
|---|
| 1783 | (void) RiemersmaDither(image,image_view,cube_info,WestGravity, |
|---|
| 1784 | exception); |
|---|
| 1785 | Riemersma(image,image_view,cube_info,level-1,SouthGravity, |
|---|
| 1786 | exception); |
|---|
| 1787 | (void) RiemersmaDither(image,image_view,cube_info,SouthGravity, |
|---|
| 1788 | exception); |
|---|
| 1789 | Riemersma(image,image_view,cube_info,level-1,WestGravity, |
|---|
| 1790 | exception); |
|---|
| 1791 | break; |
|---|
| 1792 | } |
|---|
| 1793 | default: |
|---|
| 1794 | break; |
|---|
| 1795 | } |
|---|
| 1796 | } |
|---|
| 1797 | |
|---|
| 1798 | static MagickBooleanType RiemersmaDither(Image *image,CacheView *image_view, |
|---|
| 1799 | CubeInfo *cube_info,const unsigned int direction,ExceptionInfo *exception) |
|---|
| 1800 | { |
|---|
| 1801 | #define DitherImageTag "Dither/Image" |
|---|
| 1802 | |
|---|
| 1803 | MagickBooleanType |
|---|
| 1804 | proceed; |
|---|
| 1805 | |
|---|
| 1806 | RealPixelInfo |
|---|
| 1807 | color, |
|---|
| 1808 | pixel; |
|---|
| 1809 | |
|---|
| 1810 | register CubeInfo |
|---|
| 1811 | *p; |
|---|
| 1812 | |
|---|
| 1813 | size_t |
|---|
| 1814 | index; |
|---|
| 1815 | |
|---|
| 1816 | p=cube_info; |
|---|
| 1817 | if ((p->x >= 0) && (p->x < (ssize_t) image->columns) && |
|---|
| 1818 | (p->y >= 0) && (p->y < (ssize_t) image->rows)) |
|---|
| 1819 | { |
|---|
| 1820 | register Quantum |
|---|
| 1821 | *restrict q; |
|---|
| 1822 | |
|---|
| 1823 | register ssize_t |
|---|
| 1824 | i; |
|---|
| 1825 | |
|---|
| 1826 | /* |
|---|
| 1827 | Distribute error. |
|---|
| 1828 | */ |
|---|
| 1829 | q=GetCacheViewAuthenticPixels(image_view,p->x,p->y,1,1,exception); |
|---|
| 1830 | if (q == (Quantum *) NULL) |
|---|
| 1831 | return(MagickFalse); |
|---|
| 1832 | AssociateAlphaPixel(image,cube_info,q,&pixel); |
|---|
| 1833 | for (i=0; i < ErrorQueueLength; i++) |
|---|
| 1834 | { |
|---|
| 1835 | pixel.red+=p->weights[i]*p->error[i].red; |
|---|
| 1836 | pixel.green+=p->weights[i]*p->error[i].green; |
|---|
| 1837 | pixel.blue+=p->weights[i]*p->error[i].blue; |
|---|
| 1838 | if (cube_info->associate_alpha != MagickFalse) |
|---|
| 1839 | pixel.alpha+=p->weights[i]*p->error[i].alpha; |
|---|
| 1840 | } |
|---|
| 1841 | pixel.red=(double) ClampPixel(pixel.red); |
|---|
| 1842 | pixel.green=(double) ClampPixel(pixel.green); |
|---|
| 1843 | pixel.blue=(double) ClampPixel(pixel.blue); |
|---|
| 1844 | if (cube_info->associate_alpha != MagickFalse) |
|---|
| 1845 | pixel.alpha=(double) ClampPixel(pixel.alpha); |
|---|
| 1846 | i=CacheOffset(cube_info,&pixel); |
|---|
| 1847 | if (p->cache[i] < 0) |
|---|
| 1848 | { |
|---|
| 1849 | register NodeInfo |
|---|
| 1850 | *node_info; |
|---|
| 1851 | |
|---|
| 1852 | register size_t |
|---|
| 1853 | id; |
|---|
| 1854 | |
|---|
| 1855 | /* |
|---|
| 1856 | Identify the deepest node containing the pixel's color. |
|---|
| 1857 | */ |
|---|
| 1858 | node_info=p->root; |
|---|
| 1859 | for (index=MaxTreeDepth-1; (ssize_t) index > 0; index--) |
|---|
| 1860 | { |
|---|
| 1861 | id=ColorToNodeId(cube_info,&pixel,index); |
|---|
| 1862 | if (node_info->child[id] == (NodeInfo *) NULL) |
|---|
| 1863 | break; |
|---|
| 1864 | node_info=node_info->child[id]; |
|---|
| 1865 | } |
|---|
| 1866 | node_info=node_info->parent; |
|---|
| 1867 | /* |
|---|
| 1868 | Find closest color among siblings and their children. |
|---|
| 1869 | */ |
|---|
| 1870 | p->target=pixel; |
|---|
| 1871 | p->distance=(double) (4.0*(QuantumRange+1.0)*((double) |
|---|
| 1872 | QuantumRange+1.0)+1.0); |
|---|
| 1873 | ClosestColor(image,p,node_info->parent); |
|---|
| 1874 | p->cache[i]=(ssize_t) p->color_number; |
|---|
| 1875 | } |
|---|
| 1876 | /* |
|---|
| 1877 | Assign pixel to closest colormap entry. |
|---|
| 1878 | */ |
|---|
| 1879 | index=(size_t) p->cache[i]; |
|---|
| 1880 | if (image->storage_class == PseudoClass) |
|---|
| 1881 | SetPixelIndex(image,(Quantum) index,q); |
|---|
| 1882 | if (cube_info->quantize_info->measure_error == MagickFalse) |
|---|
| 1883 | { |
|---|
| 1884 | SetPixelRed(image,ClampToQuantum(image->colormap[index].red),q); |
|---|
| 1885 | SetPixelGreen(image,ClampToQuantum(image->colormap[index].green),q); |
|---|
| 1886 | SetPixelBlue(image,ClampToQuantum(image->colormap[index].blue),q); |
|---|
| 1887 | if (cube_info->associate_alpha != MagickFalse) |
|---|
| 1888 | SetPixelAlpha(image,ClampToQuantum(image->colormap[index].alpha),q); |
|---|
| 1889 | } |
|---|
| 1890 | if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse) |
|---|
| 1891 | return(MagickFalse); |
|---|
| 1892 | /* |
|---|
| 1893 | Propagate the error as the last entry of the error queue. |
|---|
| 1894 | */ |
|---|
| 1895 | (void) CopyMagickMemory(p->error,p->error+1,(ErrorQueueLength-1)* |
|---|
| 1896 | sizeof(p->error[0])); |
|---|
| 1897 | AssociateAlphaPixelInfo(cube_info,image->colormap+index,&color); |
|---|
| 1898 | p->error[ErrorQueueLength-1].red=pixel.red-color.red; |
|---|
| 1899 | p->error[ErrorQueueLength-1].green=pixel.green-color.green; |
|---|
| 1900 | p->error[ErrorQueueLength-1].blue=pixel.blue-color.blue; |
|---|
| 1901 | if (cube_info->associate_alpha != MagickFalse) |
|---|
| 1902 | p->error[ErrorQueueLength-1].alpha=pixel.alpha-color.alpha; |
|---|
| 1903 | proceed=SetImageProgress(image,DitherImageTag,p->offset,p->span); |
|---|
| 1904 | if (proceed == MagickFalse) |
|---|
| 1905 | return(MagickFalse); |
|---|
| 1906 | p->offset++; |
|---|
| 1907 | } |
|---|
| 1908 | switch (direction) |
|---|
| 1909 | { |
|---|
| 1910 | case WestGravity: p->x--; break; |
|---|
| 1911 | case EastGravity: p->x++; break; |
|---|
| 1912 | case NorthGravity: p->y--; break; |
|---|
| 1913 | case SouthGravity: p->y++; break; |
|---|
| 1914 | } |
|---|
| 1915 | return(MagickTrue); |
|---|
| 1916 | } |
|---|
| 1917 | |
|---|
| 1918 | static inline ssize_t MagickMax(const ssize_t x,const ssize_t y) |
|---|
| 1919 | { |
|---|
| 1920 | if (x > y) |
|---|
| 1921 | return(x); |
|---|
| 1922 | return(y); |
|---|
| 1923 | } |
|---|
| 1924 | |
|---|
| 1925 | static inline ssize_t MagickMin(const ssize_t x,const ssize_t y) |
|---|
| 1926 | { |
|---|
| 1927 | if (x < y) |
|---|
| 1928 | return(x); |
|---|
| 1929 | return(y); |
|---|
| 1930 | } |
|---|
| 1931 | |
|---|
| 1932 | static MagickBooleanType DitherImage(Image *image,CubeInfo *cube_info, |
|---|
| 1933 | ExceptionInfo *exception) |
|---|
| 1934 | { |
|---|
| 1935 | CacheView |
|---|
| 1936 | *image_view; |
|---|
| 1937 | |
|---|
| 1938 | MagickBooleanType |
|---|
| 1939 | status; |
|---|
| 1940 | |
|---|
| 1941 | register ssize_t |
|---|
| 1942 | i; |
|---|
| 1943 | |
|---|
| 1944 | size_t |
|---|
| 1945 | depth; |
|---|
| 1946 | |
|---|
| 1947 | if (cube_info->quantize_info->dither_method != RiemersmaDitherMethod) |
|---|
| 1948 | return(FloydSteinbergDither(image,cube_info,exception)); |
|---|
| 1949 | /* |
|---|
| 1950 | Distribute quantization error along a Hilbert curve. |
|---|
| 1951 | */ |
|---|
| 1952 | (void) ResetMagickMemory(cube_info->error,0,ErrorQueueLength* |
|---|
| 1953 | sizeof(*cube_info->error)); |
|---|
| 1954 | cube_info->x=0; |
|---|
| 1955 | cube_info->y=0; |
|---|
| 1956 | i=MagickMax((ssize_t) image->columns,(ssize_t) image->rows); |
|---|
| 1957 | for (depth=1; i != 0; depth++) |
|---|
| 1958 | i>>=1; |
|---|
| 1959 | if ((ssize_t) (1L << depth) < MagickMax((ssize_t) image->columns,(ssize_t) image->rows)) |
|---|
| 1960 | depth++; |
|---|
| 1961 | cube_info->offset=0; |
|---|
| 1962 | cube_info->span=(MagickSizeType) image->columns*image->rows; |
|---|
| 1963 | image_view=AcquireAuthenticCacheView(image,exception); |
|---|
| 1964 | if (depth > 1) |
|---|
| 1965 | Riemersma(image,image_view,cube_info,depth-1,NorthGravity,exception); |
|---|
| 1966 | status=RiemersmaDither(image,image_view,cube_info,ForgetGravity,exception); |
|---|
| 1967 | image_view=DestroyCacheView(image_view); |
|---|
| 1968 | return(status); |
|---|
| 1969 | } |
|---|
| 1970 | |
|---|
| 1971 | /* |
|---|
| 1972 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 1973 | % % |
|---|
| 1974 | % % |
|---|
| 1975 | % % |
|---|
| 1976 | + G e t C u b e I n f o % |
|---|
| 1977 | % % |
|---|
| 1978 | % % |
|---|
| 1979 | % % |
|---|
| 1980 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 1981 | % |
|---|
| 1982 | % GetCubeInfo() initialize the Cube data structure. |
|---|
| 1983 | % |
|---|
| 1984 | % The format of the GetCubeInfo method is: |
|---|
| 1985 | % |
|---|
| 1986 | % CubeInfo GetCubeInfo(const QuantizeInfo *quantize_info, |
|---|
| 1987 | % const size_t depth,const size_t maximum_colors) |
|---|
| 1988 | % |
|---|
| 1989 | % A description of each parameter follows. |
|---|
| 1990 | % |
|---|
| 1991 | % o quantize_info: Specifies a pointer to an QuantizeInfo structure. |
|---|
| 1992 | % |
|---|
| 1993 | % o depth: Normally, this integer value is zero or one. A zero or |
|---|
| 1994 | % one tells Quantize to choose a optimal tree depth of Log4(number_colors). |
|---|
| 1995 | % A tree of this depth generally allows the best representation of the |
|---|
| 1996 | % reference image with the least amount of memory and the fastest |
|---|
| 1997 | % computational speed. In some cases, such as an image with low color |
|---|
| 1998 | % dispersion (a few number of colors), a value other than |
|---|
| 1999 | % Log4(number_colors) is required. To expand the color tree completely, |
|---|
| 2000 | % use a value of 8. |
|---|
| 2001 | % |
|---|
| 2002 | % o maximum_colors: maximum colors. |
|---|
| 2003 | % |
|---|
| 2004 | */ |
|---|
| 2005 | static CubeInfo *GetCubeInfo(const QuantizeInfo *quantize_info, |
|---|
| 2006 | const size_t depth,const size_t maximum_colors) |
|---|
| 2007 | { |
|---|
| 2008 | CubeInfo |
|---|
| 2009 | *cube_info; |
|---|
| 2010 | |
|---|
| 2011 | double |
|---|
| 2012 | sum, |
|---|
| 2013 | weight; |
|---|
| 2014 | |
|---|
| 2015 | register ssize_t |
|---|
| 2016 | i; |
|---|
| 2017 | |
|---|
| 2018 | size_t |
|---|
| 2019 | length; |
|---|
| 2020 | |
|---|
| 2021 | /* |
|---|
| 2022 | Initialize tree to describe color cube_info. |
|---|
| 2023 | */ |
|---|
| 2024 | cube_info=(CubeInfo *) AcquireMagickMemory(sizeof(*cube_info)); |
|---|
| 2025 | if (cube_info == (CubeInfo *) NULL) |
|---|
| 2026 | return((CubeInfo *) NULL); |
|---|
| 2027 | (void) ResetMagickMemory(cube_info,0,sizeof(*cube_info)); |
|---|
| 2028 | cube_info->depth=depth; |
|---|
| 2029 | if (cube_info->depth > MaxTreeDepth) |
|---|
| 2030 | cube_info->depth=MaxTreeDepth; |
|---|
| 2031 | if (cube_info->depth < 2) |
|---|
| 2032 | cube_info->depth=2; |
|---|
| 2033 | cube_info->maximum_colors=maximum_colors; |
|---|
| 2034 | /* |
|---|
| 2035 | Initialize root node. |
|---|
| 2036 | */ |
|---|
| 2037 | cube_info->root=GetNodeInfo(cube_info,0,0,(NodeInfo *) NULL); |
|---|
| 2038 | if (cube_info->root == (NodeInfo *) NULL) |
|---|
| 2039 | return((CubeInfo *) NULL); |
|---|
| 2040 | cube_info->root->parent=cube_info->root; |
|---|
| 2041 | cube_info->quantize_info=CloneQuantizeInfo(quantize_info); |
|---|
| 2042 | if (cube_info->quantize_info->dither_method == NoDitherMethod) |
|---|
| 2043 | return(cube_info); |
|---|
| 2044 | /* |
|---|
| 2045 | Initialize dither resources. |
|---|
| 2046 | */ |
|---|
| 2047 | length=(size_t) (1UL << (4*(8-CacheShift))); |
|---|
| 2048 | cube_info->cache=(ssize_t *) AcquireQuantumMemory(length, |
|---|
| 2049 | sizeof(*cube_info->cache)); |
|---|
| 2050 | if (cube_info->cache == (ssize_t *) NULL) |
|---|
| 2051 | return((CubeInfo *) NULL); |
|---|
| 2052 | /* |
|---|
| 2053 | Initialize color cache. |
|---|
| 2054 | */ |
|---|
| 2055 | for (i=0; i < (ssize_t) length; i++) |
|---|
| 2056 | cube_info->cache[i]=(-1); |
|---|
| 2057 | /* |
|---|
| 2058 | Distribute weights along a curve of exponential decay. |
|---|
| 2059 | */ |
|---|
| 2060 | weight=1.0; |
|---|
| 2061 | for (i=0; i < ErrorQueueLength; i++) |
|---|
| 2062 | { |
|---|
| 2063 | cube_info->weights[ErrorQueueLength-i-1]=PerceptibleReciprocal(weight); |
|---|
| 2064 | weight*=exp(log(((double) QuantumRange+1.0))/(ErrorQueueLength-1.0)); |
|---|
| 2065 | } |
|---|
| 2066 | /* |
|---|
| 2067 | Normalize the weighting factors. |
|---|
| 2068 | */ |
|---|
| 2069 | weight=0.0; |
|---|
| 2070 | for (i=0; i < ErrorQueueLength; i++) |
|---|
| 2071 | weight+=cube_info->weights[i]; |
|---|
| 2072 | sum=0.0; |
|---|
| 2073 | for (i=0; i < ErrorQueueLength; i++) |
|---|
| 2074 | { |
|---|
| 2075 | cube_info->weights[i]/=weight; |
|---|
| 2076 | sum+=cube_info->weights[i]; |
|---|
| 2077 | } |
|---|
| 2078 | cube_info->weights[0]+=1.0-sum; |
|---|
| 2079 | return(cube_info); |
|---|
| 2080 | } |
|---|
| 2081 | |
|---|
| 2082 | /* |
|---|
| 2083 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 2084 | % % |
|---|
| 2085 | % % |
|---|
| 2086 | % % |
|---|
| 2087 | + G e t N o d e I n f o % |
|---|
| 2088 | % % |
|---|
| 2089 | % % |
|---|
| 2090 | % % |
|---|
| 2091 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 2092 | % |
|---|
| 2093 | % GetNodeInfo() allocates memory for a new node in the color cube tree and |
|---|
| 2094 | % presets all fields to zero. |
|---|
| 2095 | % |
|---|
| 2096 | % The format of the GetNodeInfo method is: |
|---|
| 2097 | % |
|---|
| 2098 | % NodeInfo *GetNodeInfo(CubeInfo *cube_info,const size_t id, |
|---|
| 2099 | % const size_t level,NodeInfo *parent) |
|---|
| 2100 | % |
|---|
| 2101 | % A description of each parameter follows. |
|---|
| 2102 | % |
|---|
| 2103 | % o node: The GetNodeInfo method returns a pointer to a queue of nodes. |
|---|
| 2104 | % |
|---|
| 2105 | % o id: Specifies the child number of the node. |
|---|
| 2106 | % |
|---|
| 2107 | % o level: Specifies the level in the storage_class the node resides. |
|---|
| 2108 | % |
|---|
| 2109 | */ |
|---|
| 2110 | static NodeInfo *GetNodeInfo(CubeInfo *cube_info,const size_t id, |
|---|
| 2111 | const size_t level,NodeInfo *parent) |
|---|
| 2112 | { |
|---|
| 2113 | NodeInfo |
|---|
| 2114 | *node_info; |
|---|
| 2115 | |
|---|
| 2116 | if (cube_info->free_nodes == 0) |
|---|
| 2117 | { |
|---|
| 2118 | Nodes |
|---|
| 2119 | *nodes; |
|---|
| 2120 | |
|---|
| 2121 | /* |
|---|
| 2122 | Allocate a new queue of nodes. |
|---|
| 2123 | */ |
|---|
| 2124 | nodes=(Nodes *) AcquireMagickMemory(sizeof(*nodes)); |
|---|
| 2125 | if (nodes == (Nodes *) NULL) |
|---|
| 2126 | return((NodeInfo *) NULL); |
|---|
| 2127 | nodes->nodes=(NodeInfo *) AcquireQuantumMemory(NodesInAList, |
|---|
| 2128 | sizeof(*nodes->nodes)); |
|---|
| 2129 | if (nodes->nodes == (NodeInfo *) NULL) |
|---|
| 2130 | return((NodeInfo *) NULL); |
|---|
| 2131 | nodes->next=cube_info->node_queue; |
|---|
| 2132 | cube_info->node_queue=nodes; |
|---|
| 2133 | cube_info->next_node=nodes->nodes; |
|---|
| 2134 | cube_info->free_nodes=NodesInAList; |
|---|
| 2135 | } |
|---|
| 2136 | cube_info->nodes++; |
|---|
| 2137 | cube_info->free_nodes--; |
|---|
| 2138 | node_info=cube_info->next_node++; |
|---|
| 2139 | (void) ResetMagickMemory(node_info,0,sizeof(*node_info)); |
|---|
| 2140 | node_info->parent=parent; |
|---|
| 2141 | node_info->id=id; |
|---|
| 2142 | node_info->level=level; |
|---|
| 2143 | return(node_info); |
|---|
| 2144 | } |
|---|
| 2145 | |
|---|
| 2146 | /* |
|---|
| 2147 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 2148 | % % |
|---|
| 2149 | % % |
|---|
| 2150 | % % |
|---|
| 2151 | % G e t I m a g e Q u a n t i z e E r r o r % |
|---|
| 2152 | % % |
|---|
| 2153 | % % |
|---|
| 2154 | % % |
|---|
| 2155 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 2156 | % |
|---|
| 2157 | % GetImageQuantizeError() measures the difference between the original |
|---|
| 2158 | % and quantized images. This difference is the total quantization error. |
|---|
| 2159 | % The error is computed by summing over all pixels in an image the distance |
|---|
| 2160 | % squared in RGB space between each reference pixel value and its quantized |
|---|
| 2161 | % value. These values are computed: |
|---|
| 2162 | % |
|---|
| 2163 | % o mean_error_per_pixel: This value is the mean error for any single |
|---|
| 2164 | % pixel in the image. |
|---|
| 2165 | % |
|---|
| 2166 | % o normalized_mean_square_error: This value is the normalized mean |
|---|
| 2167 | % quantization error for any single pixel in the image. This distance |
|---|
| 2168 | % measure is normalized to a range between 0 and 1. It is independent |
|---|
| 2169 | % of the range of red, green, and blue values in the image. |
|---|
| 2170 | % |
|---|
| 2171 | % o normalized_maximum_square_error: Thsi value is the normalized |
|---|
| 2172 | % maximum quantization error for any single pixel in the image. This |
|---|
| 2173 | % distance measure is normalized to a range between 0 and 1. It is |
|---|
| 2174 | % independent of the range of red, green, and blue values in your image. |
|---|
| 2175 | % |
|---|
| 2176 | % The format of the GetImageQuantizeError method is: |
|---|
| 2177 | % |
|---|
| 2178 | % MagickBooleanType GetImageQuantizeError(Image *image, |
|---|
| 2179 | % ExceptionInfo *exception) |
|---|
| 2180 | % |
|---|
| 2181 | % A description of each parameter follows. |
|---|
| 2182 | % |
|---|
| 2183 | % o image: the image. |
|---|
| 2184 | % |
|---|
| 2185 | % o exception: return any errors or warnings in this structure. |
|---|
| 2186 | % |
|---|
| 2187 | */ |
|---|
| 2188 | MagickExport MagickBooleanType GetImageQuantizeError(Image *image, |
|---|
| 2189 | ExceptionInfo *exception) |
|---|
| 2190 | { |
|---|
| 2191 | CacheView |
|---|
| 2192 | *image_view; |
|---|
| 2193 | |
|---|
| 2194 | double |
|---|
| 2195 | alpha, |
|---|
| 2196 | area, |
|---|
| 2197 | beta, |
|---|
| 2198 | distance, |
|---|
| 2199 | maximum_error, |
|---|
| 2200 | mean_error, |
|---|
| 2201 | mean_error_per_pixel; |
|---|
| 2202 | |
|---|
| 2203 | size_t |
|---|
| 2204 | index; |
|---|
| 2205 | |
|---|
| 2206 | ssize_t |
|---|
| 2207 | y; |
|---|
| 2208 | |
|---|
| 2209 | assert(image != (Image *) NULL); |
|---|
| 2210 | assert(image->signature == MagickSignature); |
|---|
| 2211 | if (image->debug != MagickFalse) |
|---|
| 2212 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename); |
|---|
| 2213 | image->total_colors=GetNumberColors(image,(FILE *) NULL,exception); |
|---|
| 2214 | (void) ResetMagickMemory(&image->error,0,sizeof(image->error)); |
|---|
| 2215 | if (image->storage_class == DirectClass) |
|---|
| 2216 | return(MagickTrue); |
|---|
| 2217 | alpha=1.0; |
|---|
| 2218 | beta=1.0; |
|---|
| 2219 | area=3.0*image->columns*image->rows; |
|---|
| 2220 | maximum_error=0.0; |
|---|
| 2221 | mean_error_per_pixel=0.0; |
|---|
| 2222 | mean_error=0.0; |
|---|
| 2223 | image_view=AcquireVirtualCacheView(image,exception); |
|---|
| 2224 | for (y=0; y < (ssize_t) image->rows; y++) |
|---|
| 2225 | { |
|---|
| 2226 | register const Quantum |
|---|
| 2227 | *restrict p; |
|---|
| 2228 | |
|---|
| 2229 | register ssize_t |
|---|
| 2230 | x; |
|---|
| 2231 | |
|---|
| 2232 | p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception); |
|---|
| 2233 | if (p == (const Quantum *) NULL) |
|---|
| 2234 | break; |
|---|
| 2235 | for (x=0; x < (ssize_t) image->columns; x++) |
|---|
| 2236 | { |
|---|
| 2237 | index=1UL*GetPixelIndex(image,p); |
|---|
| 2238 | if (image->alpha_trait == BlendPixelTrait) |
|---|
| 2239 | { |
|---|
| 2240 | alpha=(double) (QuantumScale*GetPixelAlpha(image,p)); |
|---|
| 2241 | beta=(double) (QuantumScale*image->colormap[index].alpha); |
|---|
| 2242 | } |
|---|
| 2243 | distance=fabs(alpha*GetPixelRed(image,p)-beta* |
|---|
| 2244 | image->colormap[index].red); |
|---|
| 2245 | mean_error_per_pixel+=distance; |
|---|
| 2246 | mean_error+=distance*distance; |
|---|
| 2247 | if (distance > maximum_error) |
|---|
| 2248 | maximum_error=distance; |
|---|
| 2249 | distance=fabs(alpha*GetPixelGreen(image,p)-beta* |
|---|
| 2250 | image->colormap[index].green); |
|---|
| 2251 | mean_error_per_pixel+=distance; |
|---|
| 2252 | mean_error+=distance*distance; |
|---|
| 2253 | if (distance > maximum_error) |
|---|
| 2254 | maximum_error=distance; |
|---|
| 2255 | distance=fabs(alpha*GetPixelBlue(image,p)-beta* |
|---|
| 2256 | image->colormap[index].blue); |
|---|
| 2257 | mean_error_per_pixel+=distance; |
|---|
| 2258 | mean_error+=distance*distance; |
|---|
| 2259 | if (distance > maximum_error) |
|---|
| 2260 | maximum_error=distance; |
|---|
| 2261 | p+=GetPixelChannels(image); |
|---|
| 2262 | } |
|---|
| 2263 | } |
|---|
| 2264 | image_view=DestroyCacheView(image_view); |
|---|
| 2265 | image->error.mean_error_per_pixel=(double) mean_error_per_pixel/area; |
|---|
| 2266 | image->error.normalized_mean_error=(double) QuantumScale*QuantumScale* |
|---|
| 2267 | mean_error/area; |
|---|
| 2268 | image->error.normalized_maximum_error=(double) QuantumScale*maximum_error; |
|---|
| 2269 | return(MagickTrue); |
|---|
| 2270 | } |
|---|
| 2271 | |
|---|
| 2272 | /* |
|---|
| 2273 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 2274 | % % |
|---|
| 2275 | % % |
|---|
| 2276 | % % |
|---|
| 2277 | % G e t Q u a n t i z e I n f o % |
|---|
| 2278 | % % |
|---|
| 2279 | % % |
|---|
| 2280 | % % |
|---|
| 2281 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 2282 | % |
|---|
| 2283 | % GetQuantizeInfo() initializes the QuantizeInfo structure. |
|---|
| 2284 | % |
|---|
| 2285 | % The format of the GetQuantizeInfo method is: |
|---|
| 2286 | % |
|---|
| 2287 | % GetQuantizeInfo(QuantizeInfo *quantize_info) |
|---|
| 2288 | % |
|---|
| 2289 | % A description of each parameter follows: |
|---|
| 2290 | % |
|---|
| 2291 | % o quantize_info: Specifies a pointer to a QuantizeInfo structure. |
|---|
| 2292 | % |
|---|
| 2293 | */ |
|---|
| 2294 | MagickExport void GetQuantizeInfo(QuantizeInfo *quantize_info) |
|---|
| 2295 | { |
|---|
| 2296 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"..."); |
|---|
| 2297 | assert(quantize_info != (QuantizeInfo *) NULL); |
|---|
| 2298 | (void) ResetMagickMemory(quantize_info,0,sizeof(*quantize_info)); |
|---|
| 2299 | quantize_info->number_colors=256; |
|---|
| 2300 | quantize_info->dither_method=RiemersmaDitherMethod; |
|---|
| 2301 | quantize_info->colorspace=UndefinedColorspace; |
|---|
| 2302 | quantize_info->measure_error=MagickFalse; |
|---|
| 2303 | quantize_info->signature=MagickSignature; |
|---|
| 2304 | } |
|---|
| 2305 | |
|---|
| 2306 | /* |
|---|
| 2307 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 2308 | % % |
|---|
| 2309 | % % |
|---|
| 2310 | % % |
|---|
| 2311 | % P o s t e r i z e I m a g e % |
|---|
| 2312 | % % |
|---|
| 2313 | % % |
|---|
| 2314 | % % |
|---|
| 2315 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 2316 | % |
|---|
| 2317 | % PosterizeImage() reduces the image to a limited number of colors for a |
|---|
| 2318 | % "poster" effect. |
|---|
| 2319 | % |
|---|
| 2320 | % The format of the PosterizeImage method is: |
|---|
| 2321 | % |
|---|
| 2322 | % MagickBooleanType PosterizeImage(Image *image,const size_t levels, |
|---|
| 2323 | % const DitherMethod dither_method,ExceptionInfo *exception) |
|---|
| 2324 | % |
|---|
| 2325 | % A description of each parameter follows: |
|---|
| 2326 | % |
|---|
| 2327 | % o image: Specifies a pointer to an Image structure. |
|---|
| 2328 | % |
|---|
| 2329 | % o levels: Number of color levels allowed in each channel. Very low values |
|---|
| 2330 | % (2, 3, or 4) have the most visible effect. |
|---|
| 2331 | % |
|---|
| 2332 | % o dither_method: choose from UndefinedDitherMethod, NoDitherMethod, |
|---|
| 2333 | % RiemersmaDitherMethod, FloydSteinbergDitherMethod. |
|---|
| 2334 | % |
|---|
| 2335 | % o exception: return any errors or warnings in this structure. |
|---|
| 2336 | % |
|---|
| 2337 | */ |
|---|
| 2338 | |
|---|
| 2339 | static inline double MagickRound(double x) |
|---|
| 2340 | { |
|---|
| 2341 | /* |
|---|
| 2342 | Round the fraction to nearest integer. |
|---|
| 2343 | */ |
|---|
| 2344 | if ((x-floor(x)) < (ceil(x)-x)) |
|---|
| 2345 | return(floor(x)); |
|---|
| 2346 | return(ceil(x)); |
|---|
| 2347 | } |
|---|
| 2348 | |
|---|
| 2349 | MagickExport MagickBooleanType PosterizeImage(Image *image,const size_t levels, |
|---|
| 2350 | const DitherMethod dither_method,ExceptionInfo *exception) |
|---|
| 2351 | { |
|---|
| 2352 | #define PosterizeImageTag "Posterize/Image" |
|---|
| 2353 | #define PosterizePixel(pixel) (Quantum) (QuantumRange*(MagickRound( \ |
|---|
| 2354 | QuantumScale*pixel*(levels-1)))/MagickMax((ssize_t) levels-1,1)) |
|---|
| 2355 | |
|---|
| 2356 | CacheView |
|---|
| 2357 | *image_view; |
|---|
| 2358 | |
|---|
| 2359 | MagickBooleanType |
|---|
| 2360 | status; |
|---|
| 2361 | |
|---|
| 2362 | MagickOffsetType |
|---|
| 2363 | progress; |
|---|
| 2364 | |
|---|
| 2365 | QuantizeInfo |
|---|
| 2366 | *quantize_info; |
|---|
| 2367 | |
|---|
| 2368 | register ssize_t |
|---|
| 2369 | i; |
|---|
| 2370 | |
|---|
| 2371 | ssize_t |
|---|
| 2372 | y; |
|---|
| 2373 | |
|---|
| 2374 | assert(image != (Image *) NULL); |
|---|
| 2375 | assert(image->signature == MagickSignature); |
|---|
| 2376 | if (image->debug != MagickFalse) |
|---|
| 2377 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename); |
|---|
| 2378 | if (image->storage_class == PseudoClass) |
|---|
| 2379 | #if defined(MAGICKCORE_OPENMP_SUPPORT) |
|---|
| 2380 | #pragma omp parallel for schedule(static,4) shared(progress,status) \ |
|---|
| 2381 | magick_threads(image,image,1,1) |
|---|
| 2382 | #endif |
|---|
| 2383 | for (i=0; i < (ssize_t) image->colors; i++) |
|---|
| 2384 | { |
|---|
| 2385 | /* |
|---|
| 2386 | Posterize colormap. |
|---|
| 2387 | */ |
|---|
| 2388 | if ((GetPixelRedTraits(image) & UpdatePixelTrait) != 0) |
|---|
| 2389 | image->colormap[i].red=(double) |
|---|
| 2390 | PosterizePixel(image->colormap[i].red); |
|---|
| 2391 | if ((GetPixelGreenTraits(image) & UpdatePixelTrait) != 0) |
|---|
| 2392 | image->colormap[i].green=(double) |
|---|
| 2393 | PosterizePixel(image->colormap[i].green); |
|---|
| 2394 | if ((GetPixelBlueTraits(image) & UpdatePixelTrait) != 0) |
|---|
| 2395 | image->colormap[i].blue=(double) |
|---|
| 2396 | PosterizePixel(image->colormap[i].blue); |
|---|
| 2397 | if ((GetPixelAlphaTraits(image) & UpdatePixelTrait) != 0) |
|---|
| 2398 | image->colormap[i].alpha=(double) |
|---|
| 2399 | PosterizePixel(image->colormap[i].alpha); |
|---|
| 2400 | } |
|---|
| 2401 | /* |
|---|
| 2402 | Posterize image. |
|---|
| 2403 | */ |
|---|
| 2404 | status=MagickTrue; |
|---|
| 2405 | progress=0; |
|---|
| 2406 | image_view=AcquireAuthenticCacheView(image,exception); |
|---|
| 2407 | #if defined(MAGICKCORE_OPENMP_SUPPORT) |
|---|
| 2408 | #pragma omp parallel for schedule(static,4) shared(progress,status) \ |
|---|
| 2409 | magick_threads(image,image,image->rows,1) |
|---|
| 2410 | #endif |
|---|
| 2411 | for (y=0; y < (ssize_t) image->rows; y++) |
|---|
| 2412 | { |
|---|
| 2413 | register Quantum |
|---|
| 2414 | *restrict q; |
|---|
| 2415 | |
|---|
| 2416 | register ssize_t |
|---|
| 2417 | x; |
|---|
| 2418 | |
|---|
| 2419 | if (status == MagickFalse) |
|---|
| 2420 | continue; |
|---|
| 2421 | q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception); |
|---|
| 2422 | if (q == (Quantum *) NULL) |
|---|
| 2423 | { |
|---|
| 2424 | status=MagickFalse; |
|---|
| 2425 | continue; |
|---|
| 2426 | } |
|---|
| 2427 | for (x=0; x < (ssize_t) image->columns; x++) |
|---|
| 2428 | { |
|---|
| 2429 | if ((GetPixelRedTraits(image) & UpdatePixelTrait) != 0) |
|---|
| 2430 | SetPixelRed(image,PosterizePixel(GetPixelRed(image,q)),q); |
|---|
| 2431 | if ((GetPixelGreenTraits(image) & UpdatePixelTrait) != 0) |
|---|
| 2432 | SetPixelGreen(image,PosterizePixel(GetPixelGreen(image,q)),q); |
|---|
| 2433 | if ((GetPixelBlueTraits(image) & UpdatePixelTrait) != 0) |
|---|
| 2434 | SetPixelBlue(image,PosterizePixel(GetPixelBlue(image,q)),q); |
|---|
| 2435 | if (((GetPixelBlackTraits(image) & UpdatePixelTrait) != 0) && |
|---|
| 2436 | (image->colorspace == CMYKColorspace)) |
|---|
| 2437 | SetPixelBlack(image,PosterizePixel(GetPixelBlack(image,q)),q); |
|---|
| 2438 | if (((GetPixelAlphaTraits(image) & UpdatePixelTrait) != 0) && |
|---|
| 2439 | (image->alpha_trait == BlendPixelTrait)) |
|---|
| 2440 | SetPixelAlpha(image,PosterizePixel(GetPixelAlpha(image,q)),q); |
|---|
| 2441 | q+=GetPixelChannels(image); |
|---|
| 2442 | } |
|---|
| 2443 | if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse) |
|---|
| 2444 | status=MagickFalse; |
|---|
| 2445 | if (image->progress_monitor != (MagickProgressMonitor) NULL) |
|---|
| 2446 | { |
|---|
| 2447 | MagickBooleanType |
|---|
| 2448 | proceed; |
|---|
| 2449 | |
|---|
| 2450 | #if defined(MAGICKCORE_OPENMP_SUPPORT) |
|---|
| 2451 | #pragma omp critical (MagickCore_PosterizeImage) |
|---|
| 2452 | #endif |
|---|
| 2453 | proceed=SetImageProgress(image,PosterizeImageTag,progress++, |
|---|
| 2454 | image->rows); |
|---|
| 2455 | if (proceed == MagickFalse) |
|---|
| 2456 | status=MagickFalse; |
|---|
| 2457 | } |
|---|
| 2458 | } |
|---|
| 2459 | image_view=DestroyCacheView(image_view); |
|---|
| 2460 | quantize_info=AcquireQuantizeInfo((ImageInfo *) NULL); |
|---|
| 2461 | quantize_info->number_colors=(size_t) MagickMin((ssize_t) levels*levels* |
|---|
| 2462 | levels,MaxColormapSize+1); |
|---|
| 2463 | quantize_info->dither_method=dither_method; |
|---|
| 2464 | quantize_info->tree_depth=MaxTreeDepth; |
|---|
| 2465 | status=QuantizeImage(quantize_info,image,exception); |
|---|
| 2466 | quantize_info=DestroyQuantizeInfo(quantize_info); |
|---|
| 2467 | return(status); |
|---|
| 2468 | } |
|---|
| 2469 | |
|---|
| 2470 | /* |
|---|
| 2471 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 2472 | % % |
|---|
| 2473 | % % |
|---|
| 2474 | % % |
|---|
| 2475 | + P r u n e C h i l d % |
|---|
| 2476 | % % |
|---|
| 2477 | % % |
|---|
| 2478 | % % |
|---|
| 2479 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 2480 | % |
|---|
| 2481 | % PruneChild() deletes the given node and merges its statistics into its |
|---|
| 2482 | % parent. |
|---|
| 2483 | % |
|---|
| 2484 | % The format of the PruneSubtree method is: |
|---|
| 2485 | % |
|---|
| 2486 | % PruneChild(const Image *image,CubeInfo *cube_info, |
|---|
| 2487 | % const NodeInfo *node_info) |
|---|
| 2488 | % |
|---|
| 2489 | % A description of each parameter follows. |
|---|
| 2490 | % |
|---|
| 2491 | % o image: the image. |
|---|
| 2492 | % |
|---|
| 2493 | % o cube_info: A pointer to the Cube structure. |
|---|
| 2494 | % |
|---|
| 2495 | % o node_info: pointer to node in color cube tree that is to be pruned. |
|---|
| 2496 | % |
|---|
| 2497 | */ |
|---|
| 2498 | static void PruneChild(const Image *image,CubeInfo *cube_info, |
|---|
| 2499 | const NodeInfo *node_info) |
|---|
| 2500 | { |
|---|
| 2501 | NodeInfo |
|---|
| 2502 | *parent; |
|---|
| 2503 | |
|---|
| 2504 | register ssize_t |
|---|
| 2505 | i; |
|---|
| 2506 | |
|---|
| 2507 | size_t |
|---|
| 2508 | number_children; |
|---|
| 2509 | |
|---|
| 2510 | /* |
|---|
| 2511 | Traverse any children. |
|---|
| 2512 | */ |
|---|
| 2513 | number_children=cube_info->associate_alpha == MagickFalse ? 8UL : 16UL; |
|---|
| 2514 | for (i=0; i < (ssize_t) number_children; i++) |
|---|
| 2515 | if (node_info->child[i] != (NodeInfo *) NULL) |
|---|
| 2516 | PruneChild(image,cube_info,node_info->child[i]); |
|---|
| 2517 | /* |
|---|
| 2518 | Merge color statistics into parent. |
|---|
| 2519 | */ |
|---|
| 2520 | parent=node_info->parent; |
|---|
| 2521 | parent->number_unique+=node_info->number_unique; |
|---|
| 2522 | parent->total_color.red+=node_info->total_color.red; |
|---|
| 2523 | parent->total_color.green+=node_info->total_color.green; |
|---|
| 2524 | parent->total_color.blue+=node_info->total_color.blue; |
|---|
| 2525 | parent->total_color.alpha+=node_info->total_color.alpha; |
|---|
| 2526 | parent->child[node_info->id]=(NodeInfo *) NULL; |
|---|
| 2527 | cube_info->nodes--; |
|---|
| 2528 | } |
|---|
| 2529 | |
|---|
| 2530 | /* |
|---|
| 2531 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 2532 | % % |
|---|
| 2533 | % % |
|---|
| 2534 | % % |
|---|
| 2535 | + P r u n e L e v e l % |
|---|
| 2536 | % % |
|---|
| 2537 | % % |
|---|
| 2538 | % % |
|---|
| 2539 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 2540 | % |
|---|
| 2541 | % PruneLevel() deletes all nodes at the bottom level of the color tree merging |
|---|
| 2542 | % their color statistics into their parent node. |
|---|
| 2543 | % |
|---|
| 2544 | % The format of the PruneLevel method is: |
|---|
| 2545 | % |
|---|
| 2546 | % PruneLevel(const Image *image,CubeInfo *cube_info, |
|---|
| 2547 | % const NodeInfo *node_info) |
|---|
| 2548 | % |
|---|
| 2549 | % A description of each parameter follows. |
|---|
| 2550 | % |
|---|
| 2551 | % o image: the image. |
|---|
| 2552 | % |
|---|
| 2553 | % o cube_info: A pointer to the Cube structure. |
|---|
| 2554 | % |
|---|
| 2555 | % o node_info: pointer to node in color cube tree that is to be pruned. |
|---|
| 2556 | % |
|---|
| 2557 | */ |
|---|
| 2558 | static void PruneLevel(const Image *image,CubeInfo *cube_info, |
|---|
| 2559 | const NodeInfo *node_info) |
|---|
| 2560 | { |
|---|
| 2561 | register ssize_t |
|---|
| 2562 | i; |
|---|
| 2563 | |
|---|
| 2564 | size_t |
|---|
| 2565 | number_children; |
|---|
| 2566 | |
|---|
| 2567 | /* |
|---|
| 2568 | Traverse any children. |
|---|
| 2569 | */ |
|---|
| 2570 | number_children=cube_info->associate_alpha == MagickFalse ? 8UL : 16UL; |
|---|
| 2571 | for (i=0; i < (ssize_t) number_children; i++) |
|---|
| 2572 | if (node_info->child[i] != (NodeInfo *) NULL) |
|---|
| 2573 | PruneLevel(image,cube_info,node_info->child[i]); |
|---|
| 2574 | if (node_info->level == cube_info->depth) |
|---|
| 2575 | PruneChild(image,cube_info,node_info); |
|---|
| 2576 | } |
|---|
| 2577 | |
|---|
| 2578 | /* |
|---|
| 2579 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 2580 | % % |
|---|
| 2581 | % % |
|---|
| 2582 | % % |
|---|
| 2583 | + P r u n e T o C u b e D e p t h % |
|---|
| 2584 | % % |
|---|
| 2585 | % % |
|---|
| 2586 | % % |
|---|
| 2587 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 2588 | % |
|---|
| 2589 | % PruneToCubeDepth() deletes any nodes at a depth greater than |
|---|
| 2590 | % cube_info->depth while merging their color statistics into their parent |
|---|
| 2591 | % node. |
|---|
| 2592 | % |
|---|
| 2593 | % The format of the PruneToCubeDepth method is: |
|---|
| 2594 | % |
|---|
| 2595 | % PruneToCubeDepth(const Image *image,CubeInfo *cube_info, |
|---|
| 2596 | % const NodeInfo *node_info) |
|---|
| 2597 | % |
|---|
| 2598 | % A description of each parameter follows. |
|---|
| 2599 | % |
|---|
| 2600 | % o cube_info: A pointer to the Cube structure. |
|---|
| 2601 | % |
|---|
| 2602 | % o node_info: pointer to node in color cube tree that is to be pruned. |
|---|
| 2603 | % |
|---|
| 2604 | */ |
|---|
| 2605 | static void PruneToCubeDepth(const Image *image,CubeInfo *cube_info, |
|---|
| 2606 | const NodeInfo *node_info) |
|---|
| 2607 | { |
|---|
| 2608 | register ssize_t |
|---|
| 2609 | i; |
|---|
| 2610 | |
|---|
| 2611 | size_t |
|---|
| 2612 | number_children; |
|---|
| 2613 | |
|---|
| 2614 | /* |
|---|
| 2615 | Traverse any children. |
|---|
| 2616 | */ |
|---|
| 2617 | number_children=cube_info->associate_alpha == MagickFalse ? 8UL : 16UL; |
|---|
| 2618 | for (i=0; i < (ssize_t) number_children; i++) |
|---|
| 2619 | if (node_info->child[i] != (NodeInfo *) NULL) |
|---|
| 2620 | PruneToCubeDepth(image,cube_info,node_info->child[i]); |
|---|
| 2621 | if (node_info->level > cube_info->depth) |
|---|
| 2622 | PruneChild(image,cube_info,node_info); |
|---|
| 2623 | } |
|---|
| 2624 | |
|---|
| 2625 | /* |
|---|
| 2626 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 2627 | % % |
|---|
| 2628 | % % |
|---|
| 2629 | % % |
|---|
| 2630 | % Q u a n t i z e I m a g e % |
|---|
| 2631 | % % |
|---|
| 2632 | % % |
|---|
| 2633 | % % |
|---|
| 2634 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 2635 | % |
|---|
| 2636 | % QuantizeImage() analyzes the colors within a reference image and chooses a |
|---|
| 2637 | % fixed number of colors to represent the image. The goal of the algorithm |
|---|
| 2638 | % is to minimize the color difference between the input and output image while |
|---|
| 2639 | % minimizing the processing time. |
|---|
| 2640 | % |
|---|
| 2641 | % The format of the QuantizeImage method is: |
|---|
| 2642 | % |
|---|
| 2643 | % MagickBooleanType QuantizeImage(const QuantizeInfo *quantize_info, |
|---|
| 2644 | % Image *image,ExceptionInfo *exception) |
|---|
| 2645 | % |
|---|
| 2646 | % A description of each parameter follows: |
|---|
| 2647 | % |
|---|
| 2648 | % o quantize_info: Specifies a pointer to an QuantizeInfo structure. |
|---|
| 2649 | % |
|---|
| 2650 | % o image: the image. |
|---|
| 2651 | % |
|---|
| 2652 | % o exception: return any errors or warnings in this structure. |
|---|
| 2653 | % |
|---|
| 2654 | */ |
|---|
| 2655 | |
|---|
| 2656 | static MagickBooleanType DirectToColormapImage(Image *image, |
|---|
| 2657 | ExceptionInfo *exception) |
|---|
| 2658 | { |
|---|
| 2659 | CacheView |
|---|
| 2660 | *image_view; |
|---|
| 2661 | |
|---|
| 2662 | MagickBooleanType |
|---|
| 2663 | status; |
|---|
| 2664 | |
|---|
| 2665 | register ssize_t |
|---|
| 2666 | i; |
|---|
| 2667 | |
|---|
| 2668 | size_t |
|---|
| 2669 | number_colors; |
|---|
| 2670 | |
|---|
| 2671 | ssize_t |
|---|
| 2672 | y; |
|---|
| 2673 | |
|---|
| 2674 | status=MagickTrue; |
|---|
| 2675 | number_colors=(size_t) (image->columns*image->rows); |
|---|
| 2676 | if (AcquireImageColormap(image,number_colors,exception) == MagickFalse) |
|---|
| 2677 | ThrowBinaryException(ResourceLimitError,"MemoryAllocationFailed", |
|---|
| 2678 | image->filename); |
|---|
| 2679 | if (image->colors != number_colors) |
|---|
| 2680 | return(MagickFalse); |
|---|
| 2681 | i=0; |
|---|
| 2682 | image_view=AcquireAuthenticCacheView(image,exception); |
|---|
| 2683 | for (y=0; y < (ssize_t) image->rows; y++) |
|---|
| 2684 | { |
|---|
| 2685 | MagickBooleanType |
|---|
| 2686 | proceed; |
|---|
| 2687 | |
|---|
| 2688 | register Quantum |
|---|
| 2689 | *restrict q; |
|---|
| 2690 | |
|---|
| 2691 | register ssize_t |
|---|
| 2692 | x; |
|---|
| 2693 | |
|---|
| 2694 | q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception); |
|---|
| 2695 | if (q == (Quantum *) NULL) |
|---|
| 2696 | break; |
|---|
| 2697 | for (x=0; x < (ssize_t) image->columns; x++) |
|---|
| 2698 | { |
|---|
| 2699 | image->colormap[i].red=(double) GetPixelRed(image,q); |
|---|
| 2700 | image->colormap[i].green=(double) GetPixelGreen(image,q); |
|---|
| 2701 | image->colormap[i].blue=(double) GetPixelBlue(image,q); |
|---|
| 2702 | image->colormap[i].alpha=(double) GetPixelAlpha(image,q); |
|---|
| 2703 | SetPixelIndex(image,(Quantum) i,q); |
|---|
| 2704 | i++; |
|---|
| 2705 | q+=GetPixelChannels(image); |
|---|
| 2706 | } |
|---|
| 2707 | if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse) |
|---|
| 2708 | break; |
|---|
| 2709 | proceed=SetImageProgress(image,AssignImageTag,(MagickOffsetType) y, |
|---|
| 2710 | image->rows); |
|---|
| 2711 | if (proceed == MagickFalse) |
|---|
| 2712 | status=MagickFalse; |
|---|
| 2713 | } |
|---|
| 2714 | image_view=DestroyCacheView(image_view); |
|---|
| 2715 | return(status); |
|---|
| 2716 | } |
|---|
| 2717 | |
|---|
| 2718 | MagickExport MagickBooleanType QuantizeImage(const QuantizeInfo *quantize_info, |
|---|
| 2719 | Image *image,ExceptionInfo *exception) |
|---|
| 2720 | { |
|---|
| 2721 | CubeInfo |
|---|
| 2722 | *cube_info; |
|---|
| 2723 | |
|---|
| 2724 | MagickBooleanType |
|---|
| 2725 | status; |
|---|
| 2726 | |
|---|
| 2727 | size_t |
|---|
| 2728 | depth, |
|---|
| 2729 | maximum_colors; |
|---|
| 2730 | |
|---|
| 2731 | assert(quantize_info != (const QuantizeInfo *) NULL); |
|---|
| 2732 | assert(quantize_info->signature == MagickSignature); |
|---|
| 2733 | assert(image != (Image *) NULL); |
|---|
| 2734 | assert(image->signature == MagickSignature); |
|---|
| 2735 | if (image->debug != MagickFalse) |
|---|
| 2736 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename); |
|---|
| 2737 | maximum_colors=quantize_info->number_colors; |
|---|
| 2738 | if (maximum_colors == 0) |
|---|
| 2739 | maximum_colors=MaxColormapSize; |
|---|
| 2740 | if (maximum_colors > MaxColormapSize) |
|---|
| 2741 | maximum_colors=MaxColormapSize; |
|---|
| 2742 | if (image->alpha_trait != BlendPixelTrait) |
|---|
| 2743 | { |
|---|
| 2744 | if ((image->columns*image->rows) <= maximum_colors) |
|---|
| 2745 | (void) DirectToColormapImage(image,exception); |
|---|
| 2746 | if (IsImageGray(image,exception) != MagickFalse) |
|---|
| 2747 | (void) SetGrayscaleImage(image,exception); |
|---|
| 2748 | } |
|---|
| 2749 | if ((image->storage_class == PseudoClass) && |
|---|
| 2750 | (image->colors <= maximum_colors)) |
|---|
| 2751 | return(MagickTrue); |
|---|
| 2752 | depth=quantize_info->tree_depth; |
|---|
| 2753 | if (depth == 0) |
|---|
| 2754 | { |
|---|
| 2755 | size_t |
|---|
| 2756 | colors; |
|---|
| 2757 | |
|---|
| 2758 | /* |
|---|
| 2759 | Depth of color tree is: Log4(colormap size)+2. |
|---|
| 2760 | */ |
|---|
| 2761 | colors=maximum_colors; |
|---|
| 2762 | for (depth=1; colors != 0; depth++) |
|---|
| 2763 | colors>>=2; |
|---|
| 2764 | if ((quantize_info->dither_method != NoDitherMethod) && (depth > 2)) |
|---|
| 2765 | depth--; |
|---|
| 2766 | if ((image->alpha_trait == BlendPixelTrait) && (depth > 5)) |
|---|
| 2767 | depth--; |
|---|
| 2768 | } |
|---|
| 2769 | /* |
|---|
| 2770 | Initialize color cube. |
|---|
| 2771 | */ |
|---|
| 2772 | cube_info=GetCubeInfo(quantize_info,depth,maximum_colors); |
|---|
| 2773 | if (cube_info == (CubeInfo *) NULL) |
|---|
| 2774 | ThrowBinaryException(ResourceLimitError,"MemoryAllocationFailed", |
|---|
| 2775 | image->filename); |
|---|
| 2776 | status=ClassifyImageColors(cube_info,image,exception); |
|---|
| 2777 | if (status != MagickFalse) |
|---|
| 2778 | { |
|---|
| 2779 | /* |
|---|
| 2780 | Reduce the number of colors in the image. |
|---|
| 2781 | */ |
|---|
| 2782 | ReduceImageColors(image,cube_info); |
|---|
| 2783 | status=AssignImageColors(image,cube_info,exception); |
|---|
| 2784 | } |
|---|
| 2785 | DestroyCubeInfo(cube_info); |
|---|
| 2786 | return(status); |
|---|
| 2787 | } |
|---|
| 2788 | |
|---|
| 2789 | /* |
|---|
| 2790 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 2791 | % % |
|---|
| 2792 | % % |
|---|
| 2793 | % % |
|---|
| 2794 | % Q u a n t i z e I m a g e s % |
|---|
| 2795 | % % |
|---|
| 2796 | % % |
|---|
| 2797 | % % |
|---|
| 2798 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 2799 | % |
|---|
| 2800 | % QuantizeImages() analyzes the colors within a set of reference images and |
|---|
| 2801 | % chooses a fixed number of colors to represent the set. The goal of the |
|---|
| 2802 | % algorithm is to minimize the color difference between the input and output |
|---|
| 2803 | % images while minimizing the processing time. |
|---|
| 2804 | % |
|---|
| 2805 | % The format of the QuantizeImages method is: |
|---|
| 2806 | % |
|---|
| 2807 | % MagickBooleanType QuantizeImages(const QuantizeInfo *quantize_info, |
|---|
| 2808 | % Image *images,ExceptionInfo *exception) |
|---|
| 2809 | % |
|---|
| 2810 | % A description of each parameter follows: |
|---|
| 2811 | % |
|---|
| 2812 | % o quantize_info: Specifies a pointer to an QuantizeInfo structure. |
|---|
| 2813 | % |
|---|
| 2814 | % o images: Specifies a pointer to a list of Image structures. |
|---|
| 2815 | % |
|---|
| 2816 | % o exception: return any errors or warnings in this structure. |
|---|
| 2817 | % |
|---|
| 2818 | */ |
|---|
| 2819 | MagickExport MagickBooleanType QuantizeImages(const QuantizeInfo *quantize_info, |
|---|
| 2820 | Image *images,ExceptionInfo *exception) |
|---|
| 2821 | { |
|---|
| 2822 | CubeInfo |
|---|
| 2823 | *cube_info; |
|---|
| 2824 | |
|---|
| 2825 | Image |
|---|
| 2826 | *image; |
|---|
| 2827 | |
|---|
| 2828 | MagickBooleanType |
|---|
| 2829 | proceed, |
|---|
| 2830 | status; |
|---|
| 2831 | |
|---|
| 2832 | MagickProgressMonitor |
|---|
| 2833 | progress_monitor; |
|---|
| 2834 | |
|---|
| 2835 | register ssize_t |
|---|
| 2836 | i; |
|---|
| 2837 | |
|---|
| 2838 | size_t |
|---|
| 2839 | depth, |
|---|
| 2840 | maximum_colors, |
|---|
| 2841 | number_images; |
|---|
| 2842 | |
|---|
| 2843 | assert(quantize_info != (const QuantizeInfo *) NULL); |
|---|
| 2844 | assert(quantize_info->signature == MagickSignature); |
|---|
| 2845 | assert(images != (Image *) NULL); |
|---|
| 2846 | assert(images->signature == MagickSignature); |
|---|
| 2847 | if (images->debug != MagickFalse) |
|---|
| 2848 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",images->filename); |
|---|
| 2849 | if (GetNextImageInList(images) == (Image *) NULL) |
|---|
| 2850 | { |
|---|
| 2851 | /* |
|---|
| 2852 | Handle a single image with QuantizeImage. |
|---|
| 2853 | */ |
|---|
| 2854 | status=QuantizeImage(quantize_info,images,exception); |
|---|
| 2855 | return(status); |
|---|
| 2856 | } |
|---|
| 2857 | status=MagickFalse; |
|---|
| 2858 | maximum_colors=quantize_info->number_colors; |
|---|
| 2859 | if (maximum_colors == 0) |
|---|
| 2860 | maximum_colors=MaxColormapSize; |
|---|
| 2861 | if (maximum_colors > MaxColormapSize) |
|---|
| 2862 | maximum_colors=MaxColormapSize; |
|---|
| 2863 | depth=quantize_info->tree_depth; |
|---|
| 2864 | if (depth == 0) |
|---|
| 2865 | { |
|---|
| 2866 | size_t |
|---|
| 2867 | colors; |
|---|
| 2868 | |
|---|
| 2869 | /* |
|---|
| 2870 | Depth of color tree is: Log4(colormap size)+2. |
|---|
| 2871 | */ |
|---|
| 2872 | colors=maximum_colors; |
|---|
| 2873 | for (depth=1; colors != 0; depth++) |
|---|
| 2874 | colors>>=2; |
|---|
| 2875 | if (quantize_info->dither_method != NoDitherMethod) |
|---|
| 2876 | depth--; |
|---|
| 2877 | } |
|---|
| 2878 | /* |
|---|
| 2879 | Initialize color cube. |
|---|
| 2880 | */ |
|---|
| 2881 | cube_info=GetCubeInfo(quantize_info,depth,maximum_colors); |
|---|
| 2882 | if (cube_info == (CubeInfo *) NULL) |
|---|
| 2883 | { |
|---|
| 2884 | (void) ThrowMagickException(exception,GetMagickModule(), |
|---|
| 2885 | ResourceLimitError,"MemoryAllocationFailed","`%s'",images->filename); |
|---|
| 2886 | return(MagickFalse); |
|---|
| 2887 | } |
|---|
| 2888 | number_images=GetImageListLength(images); |
|---|
| 2889 | image=images; |
|---|
| 2890 | for (i=0; image != (Image *) NULL; i++) |
|---|
| 2891 | { |
|---|
| 2892 | progress_monitor=SetImageProgressMonitor(image,(MagickProgressMonitor) NULL, |
|---|
| 2893 | image->client_data); |
|---|
| 2894 | status=ClassifyImageColors(cube_info,image,exception); |
|---|
| 2895 | if (status == MagickFalse) |
|---|
| 2896 | break; |
|---|
| 2897 | (void) SetImageProgressMonitor(image,progress_monitor,image->client_data); |
|---|
| 2898 | proceed=SetImageProgress(image,AssignImageTag,(MagickOffsetType) i, |
|---|
| 2899 | number_images); |
|---|
| 2900 | if (proceed == MagickFalse) |
|---|
| 2901 | break; |
|---|
| 2902 | image=GetNextImageInList(image); |
|---|
| 2903 | } |
|---|
| 2904 | if (status != MagickFalse) |
|---|
| 2905 | { |
|---|
| 2906 | /* |
|---|
| 2907 | Reduce the number of colors in an image sequence. |
|---|
| 2908 | */ |
|---|
| 2909 | ReduceImageColors(images,cube_info); |
|---|
| 2910 | image=images; |
|---|
| 2911 | for (i=0; image != (Image *) NULL; i++) |
|---|
| 2912 | { |
|---|
| 2913 | progress_monitor=SetImageProgressMonitor(image,(MagickProgressMonitor) |
|---|
| 2914 | NULL,image->client_data); |
|---|
| 2915 | status=AssignImageColors(image,cube_info,exception); |
|---|
| 2916 | if (status == MagickFalse) |
|---|
| 2917 | break; |
|---|
| 2918 | (void) SetImageProgressMonitor(image,progress_monitor, |
|---|
| 2919 | image->client_data); |
|---|
| 2920 | proceed=SetImageProgress(image,AssignImageTag,(MagickOffsetType) i, |
|---|
| 2921 | number_images); |
|---|
| 2922 | if (proceed == MagickFalse) |
|---|
| 2923 | break; |
|---|
| 2924 | image=GetNextImageInList(image); |
|---|
| 2925 | } |
|---|
| 2926 | } |
|---|
| 2927 | DestroyCubeInfo(cube_info); |
|---|
| 2928 | return(status); |
|---|
| 2929 | } |
|---|
| 2930 | |
|---|
| 2931 | /* |
|---|
| 2932 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 2933 | % % |
|---|
| 2934 | % % |
|---|
| 2935 | % % |
|---|
| 2936 | + R e d u c e % |
|---|
| 2937 | % % |
|---|
| 2938 | % % |
|---|
| 2939 | % % |
|---|
| 2940 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 2941 | % |
|---|
| 2942 | % Reduce() traverses the color cube tree and prunes any node whose |
|---|
| 2943 | % quantization error falls below a particular threshold. |
|---|
| 2944 | % |
|---|
| 2945 | % The format of the Reduce method is: |
|---|
| 2946 | % |
|---|
| 2947 | % Reduce(const Image *image,CubeInfo *cube_info,const NodeInfo *node_info) |
|---|
| 2948 | % |
|---|
| 2949 | % A description of each parameter follows. |
|---|
| 2950 | % |
|---|
| 2951 | % o image: the image. |
|---|
| 2952 | % |
|---|
| 2953 | % o cube_info: A pointer to the Cube structure. |
|---|
| 2954 | % |
|---|
| 2955 | % o node_info: pointer to node in color cube tree that is to be pruned. |
|---|
| 2956 | % |
|---|
| 2957 | */ |
|---|
| 2958 | static void Reduce(const Image *image,CubeInfo *cube_info, |
|---|
| 2959 | const NodeInfo *node_info) |
|---|
| 2960 | { |
|---|
| 2961 | register ssize_t |
|---|
| 2962 | i; |
|---|
| 2963 | |
|---|
| 2964 | size_t |
|---|
| 2965 | number_children; |
|---|
| 2966 | |
|---|
| 2967 | /* |
|---|
| 2968 | Traverse any children. |
|---|
| 2969 | */ |
|---|
| 2970 | number_children=cube_info->associate_alpha == MagickFalse ? 8UL : 16UL; |
|---|
| 2971 | for (i=0; i < (ssize_t) number_children; i++) |
|---|
| 2972 | if (node_info->child[i] != (NodeInfo *) NULL) |
|---|
| 2973 | Reduce(image,cube_info,node_info->child[i]); |
|---|
| 2974 | if (node_info->quantize_error <= cube_info->pruning_threshold) |
|---|
| 2975 | PruneChild(image,cube_info,node_info); |
|---|
| 2976 | else |
|---|
| 2977 | { |
|---|
| 2978 | /* |
|---|
| 2979 | Find minimum pruning threshold. |
|---|
| 2980 | */ |
|---|
| 2981 | if (node_info->number_unique > 0) |
|---|
| 2982 | cube_info->colors++; |
|---|
| 2983 | if (node_info->quantize_error < cube_info->next_threshold) |
|---|
| 2984 | cube_info->next_threshold=node_info->quantize_error; |
|---|
| 2985 | } |
|---|
| 2986 | } |
|---|
| 2987 | |
|---|
| 2988 | /* |
|---|
| 2989 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 2990 | % % |
|---|
| 2991 | % % |
|---|
| 2992 | % % |
|---|
| 2993 | + R e d u c e I m a g e C o l o r s % |
|---|
| 2994 | % % |
|---|
| 2995 | % % |
|---|
| 2996 | % % |
|---|
| 2997 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 2998 | % |
|---|
| 2999 | % ReduceImageColors() repeatedly prunes the tree until the number of nodes |
|---|
| 3000 | % with n2 > 0 is less than or equal to the maximum number of colors allowed |
|---|
| 3001 | % in the output image. On any given iteration over the tree, it selects |
|---|
| 3002 | % those nodes whose E value is minimal for pruning and merges their |
|---|
| 3003 | % color statistics upward. It uses a pruning threshold, Ep, to govern |
|---|
| 3004 | % node selection as follows: |
|---|
| 3005 | % |
|---|
| 3006 | % Ep = 0 |
|---|
| 3007 | % while number of nodes with (n2 > 0) > required maximum number of colors |
|---|
| 3008 | % prune all nodes such that E <= Ep |
|---|
| 3009 | % Set Ep to minimum E in remaining nodes |
|---|
| 3010 | % |
|---|
| 3011 | % This has the effect of minimizing any quantization error when merging |
|---|
| 3012 | % two nodes together. |
|---|
| 3013 | % |
|---|
| 3014 | % When a node to be pruned has offspring, the pruning procedure invokes |
|---|
| 3015 | % itself recursively in order to prune the tree from the leaves upward. |
|---|
| 3016 | % n2, Sr, Sg, and Sb in a node being pruned are always added to the |
|---|
| 3017 | % corresponding data in that node's parent. This retains the pruned |
|---|
| 3018 | % node's color characteristics for later averaging. |
|---|
| 3019 | % |
|---|
| 3020 | % For each node, n2 pixels exist for which that node represents the |
|---|
| 3021 | % smallest volume in RGB space containing those pixel's colors. When n2 |
|---|
| 3022 | % > 0 the node will uniquely define a color in the output image. At the |
|---|
| 3023 | % beginning of reduction, n2 = 0 for all nodes except a the leaves of |
|---|
| 3024 | % the tree which represent colors present in the input image. |
|---|
| 3025 | % |
|---|
| 3026 | % The other pixel count, n1, indicates the total number of colors |
|---|
| 3027 | % within the cubic volume which the node represents. This includes n1 - |
|---|
| 3028 | % n2 pixels whose colors should be defined by nodes at a lower level in |
|---|
| 3029 | % the tree. |
|---|
| 3030 | % |
|---|
| 3031 | % The format of the ReduceImageColors method is: |
|---|
| 3032 | % |
|---|
| 3033 | % ReduceImageColors(const Image *image,CubeInfo *cube_info) |
|---|
| 3034 | % |
|---|
| 3035 | % A description of each parameter follows. |
|---|
| 3036 | % |
|---|
| 3037 | % o image: the image. |
|---|
| 3038 | % |
|---|
| 3039 | % o cube_info: A pointer to the Cube structure. |
|---|
| 3040 | % |
|---|
| 3041 | */ |
|---|
| 3042 | static void ReduceImageColors(const Image *image,CubeInfo *cube_info) |
|---|
| 3043 | { |
|---|
| 3044 | #define ReduceImageTag "Reduce/Image" |
|---|
| 3045 | |
|---|
| 3046 | MagickBooleanType |
|---|
| 3047 | proceed; |
|---|
| 3048 | |
|---|
| 3049 | MagickOffsetType |
|---|
| 3050 | offset; |
|---|
| 3051 | |
|---|
| 3052 | size_t |
|---|
| 3053 | span; |
|---|
| 3054 | |
|---|
| 3055 | cube_info->next_threshold=0.0; |
|---|
| 3056 | for (span=cube_info->colors; cube_info->colors > cube_info->maximum_colors; ) |
|---|
| 3057 | { |
|---|
| 3058 | cube_info->pruning_threshold=cube_info->next_threshold; |
|---|
| 3059 | cube_info->next_threshold=cube_info->root->quantize_error-1; |
|---|
| 3060 | cube_info->colors=0; |
|---|
| 3061 | Reduce(image,cube_info,cube_info->root); |
|---|
| 3062 | offset=(MagickOffsetType) span-cube_info->colors; |
|---|
| 3063 | proceed=SetImageProgress(image,ReduceImageTag,offset,span- |
|---|
| 3064 | cube_info->maximum_colors+1); |
|---|
| 3065 | if (proceed == MagickFalse) |
|---|
| 3066 | break; |
|---|
| 3067 | } |
|---|
| 3068 | } |
|---|
| 3069 | |
|---|
| 3070 | /* |
|---|
| 3071 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 3072 | % % |
|---|
| 3073 | % % |
|---|
| 3074 | % % |
|---|
| 3075 | % R e m a p I m a g e % |
|---|
| 3076 | % % |
|---|
| 3077 | % % |
|---|
| 3078 | % % |
|---|
| 3079 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 3080 | % |
|---|
| 3081 | % RemapImage() replaces the colors of an image with a dither of the colors |
|---|
| 3082 | % provided. |
|---|
| 3083 | % |
|---|
| 3084 | % The format of the RemapImage method is: |
|---|
| 3085 | % |
|---|
| 3086 | % MagickBooleanType RemapImage(const QuantizeInfo *quantize_info, |
|---|
| 3087 | % Image *image,const Image *remap_image,ExceptionInfo *exception) |
|---|
| 3088 | % |
|---|
| 3089 | % A description of each parameter follows: |
|---|
| 3090 | % |
|---|
| 3091 | % o quantize_info: Specifies a pointer to an QuantizeInfo structure. |
|---|
| 3092 | % |
|---|
| 3093 | % o image: the image. |
|---|
| 3094 | % |
|---|
| 3095 | % o remap_image: the reference image. |
|---|
| 3096 | % |
|---|
| 3097 | % o exception: return any errors or warnings in this structure. |
|---|
| 3098 | % |
|---|
| 3099 | */ |
|---|
| 3100 | MagickExport MagickBooleanType RemapImage(const QuantizeInfo *quantize_info, |
|---|
| 3101 | Image *image,const Image *remap_image,ExceptionInfo *exception) |
|---|
| 3102 | { |
|---|
| 3103 | CubeInfo |
|---|
| 3104 | *cube_info; |
|---|
| 3105 | |
|---|
| 3106 | MagickBooleanType |
|---|
| 3107 | status; |
|---|
| 3108 | |
|---|
| 3109 | /* |
|---|
| 3110 | Initialize color cube. |
|---|
| 3111 | */ |
|---|
| 3112 | assert(image != (Image *) NULL); |
|---|
| 3113 | assert(image->signature == MagickSignature); |
|---|
| 3114 | if (image->debug != MagickFalse) |
|---|
| 3115 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename); |
|---|
| 3116 | assert(remap_image != (Image *) NULL); |
|---|
| 3117 | assert(remap_image->signature == MagickSignature); |
|---|
| 3118 | cube_info=GetCubeInfo(quantize_info,MaxTreeDepth, |
|---|
| 3119 | quantize_info->number_colors); |
|---|
| 3120 | if (cube_info == (CubeInfo *) NULL) |
|---|
| 3121 | ThrowBinaryException(ResourceLimitError,"MemoryAllocationFailed", |
|---|
| 3122 | image->filename); |
|---|
| 3123 | status=ClassifyImageColors(cube_info,remap_image,exception); |
|---|
| 3124 | if (status != MagickFalse) |
|---|
| 3125 | { |
|---|
| 3126 | /* |
|---|
| 3127 | Classify image colors from the reference image. |
|---|
| 3128 | */ |
|---|
| 3129 | cube_info->quantize_info->number_colors=cube_info->colors; |
|---|
| 3130 | status=AssignImageColors(image,cube_info,exception); |
|---|
| 3131 | } |
|---|
| 3132 | DestroyCubeInfo(cube_info); |
|---|
| 3133 | return(status); |
|---|
| 3134 | } |
|---|
| 3135 | |
|---|
| 3136 | /* |
|---|
| 3137 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 3138 | % % |
|---|
| 3139 | % % |
|---|
| 3140 | % % |
|---|
| 3141 | % R e m a p I m a g e s % |
|---|
| 3142 | % % |
|---|
| 3143 | % % |
|---|
| 3144 | % % |
|---|
| 3145 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 3146 | % |
|---|
| 3147 | % RemapImages() replaces the colors of a sequence of images with the |
|---|
| 3148 | % closest color from a reference image. |
|---|
| 3149 | % |
|---|
| 3150 | % The format of the RemapImage method is: |
|---|
| 3151 | % |
|---|
| 3152 | % MagickBooleanType RemapImages(const QuantizeInfo *quantize_info, |
|---|
| 3153 | % Image *images,Image *remap_image,ExceptionInfo *exception) |
|---|
| 3154 | % |
|---|
| 3155 | % A description of each parameter follows: |
|---|
| 3156 | % |
|---|
| 3157 | % o quantize_info: Specifies a pointer to an QuantizeInfo structure. |
|---|
| 3158 | % |
|---|
| 3159 | % o images: the image sequence. |
|---|
| 3160 | % |
|---|
| 3161 | % o remap_image: the reference image. |
|---|
| 3162 | % |
|---|
| 3163 | % o exception: return any errors or warnings in this structure. |
|---|
| 3164 | % |
|---|
| 3165 | */ |
|---|
| 3166 | MagickExport MagickBooleanType RemapImages(const QuantizeInfo *quantize_info, |
|---|
| 3167 | Image *images,const Image *remap_image,ExceptionInfo *exception) |
|---|
| 3168 | { |
|---|
| 3169 | CubeInfo |
|---|
| 3170 | *cube_info; |
|---|
| 3171 | |
|---|
| 3172 | Image |
|---|
| 3173 | *image; |
|---|
| 3174 | |
|---|
| 3175 | MagickBooleanType |
|---|
| 3176 | status; |
|---|
| 3177 | |
|---|
| 3178 | assert(images != (Image *) NULL); |
|---|
| 3179 | assert(images->signature == MagickSignature); |
|---|
| 3180 | if (images->debug != MagickFalse) |
|---|
| 3181 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",images->filename); |
|---|
| 3182 | image=images; |
|---|
| 3183 | if (remap_image == (Image *) NULL) |
|---|
| 3184 | { |
|---|
| 3185 | /* |
|---|
| 3186 | Create a global colormap for an image sequence. |
|---|
| 3187 | */ |
|---|
| 3188 | status=QuantizeImages(quantize_info,images,exception); |
|---|
| 3189 | return(status); |
|---|
| 3190 | } |
|---|
| 3191 | /* |
|---|
| 3192 | Classify image colors from the reference image. |
|---|
| 3193 | */ |
|---|
| 3194 | cube_info=GetCubeInfo(quantize_info,MaxTreeDepth, |
|---|
| 3195 | quantize_info->number_colors); |
|---|
| 3196 | if (cube_info == (CubeInfo *) NULL) |
|---|
| 3197 | ThrowBinaryException(ResourceLimitError,"MemoryAllocationFailed", |
|---|
| 3198 | image->filename); |
|---|
| 3199 | status=ClassifyImageColors(cube_info,remap_image,exception); |
|---|
| 3200 | if (status != MagickFalse) |
|---|
| 3201 | { |
|---|
| 3202 | /* |
|---|
| 3203 | Classify image colors from the reference image. |
|---|
| 3204 | */ |
|---|
| 3205 | cube_info->quantize_info->number_colors=cube_info->colors; |
|---|
| 3206 | image=images; |
|---|
| 3207 | for ( ; image != (Image *) NULL; image=GetNextImageInList(image)) |
|---|
| 3208 | { |
|---|
| 3209 | status=AssignImageColors(image,cube_info,exception); |
|---|
| 3210 | if (status == MagickFalse) |
|---|
| 3211 | break; |
|---|
| 3212 | } |
|---|
| 3213 | } |
|---|
| 3214 | DestroyCubeInfo(cube_info); |
|---|
| 3215 | return(status); |
|---|
| 3216 | } |
|---|
| 3217 | |
|---|
| 3218 | /* |
|---|
| 3219 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 3220 | % % |
|---|
| 3221 | % % |
|---|
| 3222 | % % |
|---|
| 3223 | % S e t G r a y s c a l e I m a g e % |
|---|
| 3224 | % % |
|---|
| 3225 | % % |
|---|
| 3226 | % % |
|---|
| 3227 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 3228 | % |
|---|
| 3229 | % SetGrayscaleImage() converts an image to a PseudoClass grayscale image. |
|---|
| 3230 | % |
|---|
| 3231 | % The format of the SetGrayscaleImage method is: |
|---|
| 3232 | % |
|---|
| 3233 | % MagickBooleanType SetGrayscaleImage(Image *image,ExceptionInfo *exeption) |
|---|
| 3234 | % |
|---|
| 3235 | % A description of each parameter follows: |
|---|
| 3236 | % |
|---|
| 3237 | % o image: The image. |
|---|
| 3238 | % |
|---|
| 3239 | % o exception: return any errors or warnings in this structure. |
|---|
| 3240 | % |
|---|
| 3241 | */ |
|---|
| 3242 | |
|---|
| 3243 | #if defined(__cplusplus) || defined(c_plusplus) |
|---|
| 3244 | extern "C" { |
|---|
| 3245 | #endif |
|---|
| 3246 | |
|---|
| 3247 | static int IntensityCompare(const void *x,const void *y) |
|---|
| 3248 | { |
|---|
| 3249 | PixelInfo |
|---|
| 3250 | *color_1, |
|---|
| 3251 | *color_2; |
|---|
| 3252 | |
|---|
| 3253 | ssize_t |
|---|
| 3254 | intensity; |
|---|
| 3255 | |
|---|
| 3256 | color_1=(PixelInfo *) x; |
|---|
| 3257 | color_2=(PixelInfo *) y; |
|---|
| 3258 | intensity=(ssize_t) (GetPixelInfoIntensity(color_1)-(ssize_t) |
|---|
| 3259 | GetPixelInfoIntensity(color_2)); |
|---|
| 3260 | return((int) intensity); |
|---|
| 3261 | } |
|---|
| 3262 | |
|---|
| 3263 | #if defined(__cplusplus) || defined(c_plusplus) |
|---|
| 3264 | } |
|---|
| 3265 | #endif |
|---|
| 3266 | |
|---|
| 3267 | static MagickBooleanType SetGrayscaleImage(Image *image, |
|---|
| 3268 | ExceptionInfo *exception) |
|---|
| 3269 | { |
|---|
| 3270 | CacheView |
|---|
| 3271 | *image_view; |
|---|
| 3272 | |
|---|
| 3273 | MagickBooleanType |
|---|
| 3274 | status; |
|---|
| 3275 | |
|---|
| 3276 | PixelInfo |
|---|
| 3277 | *colormap; |
|---|
| 3278 | |
|---|
| 3279 | register ssize_t |
|---|
| 3280 | i; |
|---|
| 3281 | |
|---|
| 3282 | ssize_t |
|---|
| 3283 | *colormap_index, |
|---|
| 3284 | j, |
|---|
| 3285 | y; |
|---|
| 3286 | |
|---|
| 3287 | assert(image != (Image *) NULL); |
|---|
| 3288 | assert(image->signature == MagickSignature); |
|---|
| 3289 | if (image->type != GrayscaleType) |
|---|
| 3290 | (void) TransformImageColorspace(image,GRAYColorspace,exception); |
|---|
| 3291 | colormap_index=(ssize_t *) AcquireQuantumMemory(MaxMap+1, |
|---|
| 3292 | sizeof(*colormap_index)); |
|---|
| 3293 | if (colormap_index == (ssize_t *) NULL) |
|---|
| 3294 | ThrowBinaryException(ResourceLimitError,"MemoryAllocationFailed", |
|---|
| 3295 | image->filename); |
|---|
| 3296 | if (image->storage_class != PseudoClass) |
|---|
| 3297 | { |
|---|
| 3298 | for (i=0; i <= (ssize_t) MaxMap; i++) |
|---|
| 3299 | colormap_index[i]=(-1); |
|---|
| 3300 | if (AcquireImageColormap(image,MaxMap+1,exception) == MagickFalse) |
|---|
| 3301 | ThrowBinaryException(ResourceLimitError,"MemoryAllocationFailed", |
|---|
| 3302 | image->filename); |
|---|
| 3303 | image->colors=0; |
|---|
| 3304 | status=MagickTrue; |
|---|
| 3305 | image_view=AcquireAuthenticCacheView(image,exception); |
|---|
| 3306 | #if defined(MAGICKCORE_OPENMP_SUPPORT) |
|---|
| 3307 | #pragma omp parallel for schedule(static,4) shared(status) \ |
|---|
| 3308 | magick_threads(image,image,image->rows,1) |
|---|
| 3309 | #endif |
|---|
| 3310 | for (y=0; y < (ssize_t) image->rows; y++) |
|---|
| 3311 | { |
|---|
| 3312 | register Quantum |
|---|
| 3313 | *restrict q; |
|---|
| 3314 | |
|---|
| 3315 | register ssize_t |
|---|
| 3316 | x; |
|---|
| 3317 | |
|---|
| 3318 | if (status == MagickFalse) |
|---|
| 3319 | continue; |
|---|
| 3320 | q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1, |
|---|
| 3321 | exception); |
|---|
| 3322 | if (q == (Quantum *) NULL) |
|---|
| 3323 | { |
|---|
| 3324 | status=MagickFalse; |
|---|
| 3325 | continue; |
|---|
| 3326 | } |
|---|
| 3327 | for (x=0; x < (ssize_t) image->columns; x++) |
|---|
| 3328 | { |
|---|
| 3329 | register size_t |
|---|
| 3330 | intensity; |
|---|
| 3331 | |
|---|
| 3332 | intensity=ScaleQuantumToMap(GetPixelRed(image,q)); |
|---|
| 3333 | if (colormap_index[intensity] < 0) |
|---|
| 3334 | { |
|---|
| 3335 | #if defined(MAGICKCORE_OPENMP_SUPPORT) |
|---|
| 3336 | #pragma omp critical (MagickCore_SetGrayscaleImage) |
|---|
| 3337 | #endif |
|---|
| 3338 | if (colormap_index[intensity] < 0) |
|---|
| 3339 | { |
|---|
| 3340 | colormap_index[intensity]=(ssize_t) image->colors; |
|---|
| 3341 | image->colormap[image->colors].red=(double) |
|---|
| 3342 | GetPixelRed(image,q); |
|---|
| 3343 | image->colormap[image->colors].green=(double) |
|---|
| 3344 | GetPixelGreen(image,q); |
|---|
| 3345 | image->colormap[image->colors].blue=(double) |
|---|
| 3346 | GetPixelBlue(image,q); |
|---|
| 3347 | image->colors++; |
|---|
| 3348 | } |
|---|
| 3349 | } |
|---|
| 3350 | SetPixelIndex(image,(Quantum) colormap_index[intensity],q); |
|---|
| 3351 | q+=GetPixelChannels(image); |
|---|
| 3352 | } |
|---|
| 3353 | if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse) |
|---|
| 3354 | status=MagickFalse; |
|---|
| 3355 | } |
|---|
| 3356 | image_view=DestroyCacheView(image_view); |
|---|
| 3357 | } |
|---|
| 3358 | for (i=0; i < (ssize_t) image->colors; i++) |
|---|
| 3359 | image->colormap[i].alpha=(double) i; |
|---|
| 3360 | qsort((void *) image->colormap,image->colors,sizeof(PixelInfo), |
|---|
| 3361 | IntensityCompare); |
|---|
| 3362 | colormap=(PixelInfo *) AcquireQuantumMemory(image->colors, |
|---|
| 3363 | sizeof(*colormap)); |
|---|
| 3364 | if (colormap == (PixelInfo *) NULL) |
|---|
| 3365 | ThrowBinaryException(ResourceLimitError,"MemoryAllocationFailed", |
|---|
| 3366 | image->filename); |
|---|
| 3367 | j=0; |
|---|
| 3368 | colormap[j]=image->colormap[0]; |
|---|
| 3369 | for (i=0; i < (ssize_t) image->colors; i++) |
|---|
| 3370 | { |
|---|
| 3371 | if (IsPixelInfoEquivalent(&colormap[j],&image->colormap[i]) == MagickFalse) |
|---|
| 3372 | { |
|---|
| 3373 | j++; |
|---|
| 3374 | colormap[j]=image->colormap[i]; |
|---|
| 3375 | } |
|---|
| 3376 | colormap_index[(ssize_t) image->colormap[i].alpha]=j; |
|---|
| 3377 | } |
|---|
| 3378 | image->colors=(size_t) (j+1); |
|---|
| 3379 | image->colormap=(PixelInfo *) RelinquishMagickMemory(image->colormap); |
|---|
| 3380 | image->colormap=colormap; |
|---|
| 3381 | status=MagickTrue; |
|---|
| 3382 | image_view=AcquireAuthenticCacheView(image,exception); |
|---|
| 3383 | #if defined(MAGICKCORE_OPENMP_SUPPORT) |
|---|
| 3384 | #pragma omp parallel for schedule(static,4) shared(status) \ |
|---|
| 3385 | magick_threads(image,image,image->rows,1) |
|---|
| 3386 | #endif |
|---|
| 3387 | for (y=0; y < (ssize_t) image->rows; y++) |
|---|
| 3388 | { |
|---|
| 3389 | register Quantum |
|---|
| 3390 | *restrict q; |
|---|
| 3391 | |
|---|
| 3392 | register ssize_t |
|---|
| 3393 | x; |
|---|
| 3394 | |
|---|
| 3395 | if (status == MagickFalse) |
|---|
| 3396 | continue; |
|---|
| 3397 | q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception); |
|---|
| 3398 | if (q == (Quantum *) NULL) |
|---|
| 3399 | { |
|---|
| 3400 | status=MagickFalse; |
|---|
| 3401 | continue; |
|---|
| 3402 | } |
|---|
| 3403 | for (x=0; x < (ssize_t) image->columns; x++) |
|---|
| 3404 | { |
|---|
| 3405 | SetPixelIndex(image,(Quantum) colormap_index[ScaleQuantumToMap( |
|---|
| 3406 | GetPixelIndex(image,q))],q); |
|---|
| 3407 | q+=GetPixelChannels(image); |
|---|
| 3408 | } |
|---|
| 3409 | if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse) |
|---|
| 3410 | status=MagickFalse; |
|---|
| 3411 | } |
|---|
| 3412 | image_view=DestroyCacheView(image_view); |
|---|
| 3413 | colormap_index=(ssize_t *) RelinquishMagickMemory(colormap_index); |
|---|
| 3414 | image->type=GrayscaleType; |
|---|
| 3415 | if (IsImageMonochrome(image,exception) != MagickFalse) |
|---|
| 3416 | image->type=BilevelType; |
|---|
| 3417 | return(status); |
|---|
| 3418 | } |
|---|