cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1 | /* |
| 2 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 3 | % % |
| 4 | % % |
| 5 | % % |
| 6 | % H H IIIII SSSSS TTTTT OOO GGGG RRRR AAA M M % |
| 7 | % H H I SS T O O G R R A A MM MM % |
| 8 | % HHHHH I SSS T O O G GG RRRR AAAAA M M M % |
| 9 | % H H I SS T O O G G R R A A M M % |
| 10 | % H H IIIII SSSSS T OOO GGG R R A A M M % |
| 11 | % % |
| 12 | % % |
| 13 | % MagickCore Histogram Methods % |
| 14 | % % |
| 15 | % Software Design % |
| 16 | % Anthony Thyssen % |
| 17 | % Fred Weinhaus % |
| 18 | % August 2009 % |
| 19 | % % |
| 20 | % % |
cristy | 7e41fe8 | 2010-12-04 23:12:08 +0000 | [diff] [blame] | 21 | % Copyright 1999-2011 ImageMagick Studio LLC, a non-profit organization % |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 22 | % dedicated to making software imaging solutions freely available. % |
| 23 | % % |
| 24 | % You may not use this file except in compliance with the License. You may % |
| 25 | % obtain a copy of the License at % |
| 26 | % % |
| 27 | % http://www.imagemagick.org/script/license.php % |
| 28 | % % |
| 29 | % Unless required by applicable law or agreed to in writing, software % |
| 30 | % distributed under the License is distributed on an "AS IS" BASIS, % |
| 31 | % WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. % |
| 32 | % See the License for the specific language governing permissions and % |
| 33 | % limitations under the License. % |
| 34 | % % |
| 35 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 36 | % |
| 37 | % |
| 38 | */ |
| 39 | |
| 40 | /* |
| 41 | Include declarations. |
| 42 | */ |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 43 | #include "MagickCore/studio.h" |
| 44 | #include "MagickCore/cache-view.h" |
| 45 | #include "MagickCore/color-private.h" |
| 46 | #include "MagickCore/enhance.h" |
| 47 | #include "MagickCore/exception.h" |
| 48 | #include "MagickCore/exception-private.h" |
| 49 | #include "MagickCore/hashmap.h" |
| 50 | #include "MagickCore/histogram.h" |
| 51 | #include "MagickCore/image.h" |
| 52 | #include "MagickCore/list.h" |
| 53 | #include "MagickCore/memory_.h" |
| 54 | #include "MagickCore/monitor-private.h" |
| 55 | #include "MagickCore/pixel-accessor.h" |
| 56 | #include "MagickCore/prepress.h" |
| 57 | #include "MagickCore/quantize.h" |
| 58 | #include "MagickCore/registry.h" |
| 59 | #include "MagickCore/semaphore.h" |
| 60 | #include "MagickCore/splay-tree.h" |
| 61 | #include "MagickCore/statistic.h" |
| 62 | #include "MagickCore/string_.h" |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 63 | |
| 64 | /* |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 65 | Define declarations. |
| 66 | */ |
| 67 | #define MaxTreeDepth 8 |
| 68 | #define NodesInAList 1536 |
| 69 | |
| 70 | /* |
| 71 | Typedef declarations. |
| 72 | */ |
| 73 | typedef struct _NodeInfo |
| 74 | { |
| 75 | struct _NodeInfo |
| 76 | *child[16]; |
| 77 | |
cristy | 101ab70 | 2011-10-13 13:06:32 +0000 | [diff] [blame] | 78 | PixelInfo |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 79 | *list; |
| 80 | |
| 81 | MagickSizeType |
| 82 | number_unique; |
| 83 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 84 | size_t |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 85 | level; |
| 86 | } NodeInfo; |
| 87 | |
| 88 | typedef struct _Nodes |
| 89 | { |
| 90 | NodeInfo |
| 91 | nodes[NodesInAList]; |
| 92 | |
| 93 | struct _Nodes |
| 94 | *next; |
| 95 | } Nodes; |
| 96 | |
| 97 | typedef struct _CubeInfo |
| 98 | { |
| 99 | NodeInfo |
| 100 | *root; |
| 101 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 102 | ssize_t |
cristy | cee9711 | 2010-05-28 00:44:52 +0000 | [diff] [blame] | 103 | x; |
| 104 | |
| 105 | MagickOffsetType |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 106 | progress; |
| 107 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 108 | size_t |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 109 | colors, |
| 110 | free_nodes; |
| 111 | |
| 112 | NodeInfo |
| 113 | *node_info; |
| 114 | |
| 115 | Nodes |
| 116 | *node_queue; |
| 117 | } CubeInfo; |
| 118 | |
| 119 | /* |
| 120 | Forward declarations. |
| 121 | */ |
| 122 | static CubeInfo |
| 123 | *GetCubeInfo(void); |
| 124 | |
| 125 | static NodeInfo |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 126 | *GetNodeInfo(CubeInfo *,const size_t); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 127 | |
| 128 | static void |
| 129 | DestroyColorCube(const Image *,NodeInfo *); |
| 130 | |
| 131 | /* |
| 132 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 133 | % % |
| 134 | % % |
| 135 | % % |
| 136 | + C l a s s i f y I m a g e C o l o r s % |
| 137 | % % |
| 138 | % % |
| 139 | % % |
| 140 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 141 | % |
| 142 | % ClassifyImageColors() builds a populated CubeInfo tree for the specified |
| 143 | % image. The returned tree should be deallocated using DestroyCubeInfo() |
cristy | a03e799 | 2010-06-25 12:18:06 +0000 | [diff] [blame] | 144 | % once it is no longer needed. |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 145 | % |
| 146 | % The format of the ClassifyImageColors() method is: |
| 147 | % |
| 148 | % CubeInfo *ClassifyImageColors(const Image *image, |
| 149 | % ExceptionInfo *exception) |
| 150 | % |
| 151 | % A description of each parameter follows. |
| 152 | % |
| 153 | % o image: the image. |
| 154 | % |
| 155 | % o exception: return any errors or warnings in this structure. |
| 156 | % |
| 157 | */ |
| 158 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 159 | static inline size_t ColorToNodeId(const Image *image, |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 160 | const PixelInfo *pixel,size_t index) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 161 | { |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 162 | size_t |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 163 | id; |
| 164 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 165 | id=(size_t) ( |
cristy | ce70c17 | 2010-01-07 17:15:30 +0000 | [diff] [blame] | 166 | ((ScaleQuantumToChar(ClampToQuantum(pixel->red)) >> index) & 0x01) | |
| 167 | ((ScaleQuantumToChar(ClampToQuantum(pixel->green)) >> index) & 0x01) << 1 | |
| 168 | ((ScaleQuantumToChar(ClampToQuantum(pixel->blue)) >> index) & 0x01) << 2); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 169 | if (image->matte != MagickFalse) |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 170 | id|=((ScaleQuantumToChar(ClampToQuantum(pixel->alpha)) >> index) & |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 171 | 0x01) << 3; |
| 172 | return(id); |
| 173 | } |
| 174 | |
| 175 | static CubeInfo *ClassifyImageColors(const Image *image, |
| 176 | ExceptionInfo *exception) |
| 177 | { |
| 178 | #define EvaluateImageTag " Compute image colors... " |
| 179 | |
cristy | c4c8d13 | 2010-01-07 01:58:38 +0000 | [diff] [blame] | 180 | CacheView |
| 181 | *image_view; |
| 182 | |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 183 | CubeInfo |
| 184 | *cube_info; |
| 185 | |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 186 | MagickBooleanType |
| 187 | proceed; |
| 188 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 189 | PixelInfo |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 190 | pixel, |
| 191 | target; |
| 192 | |
| 193 | NodeInfo |
| 194 | *node_info; |
| 195 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 196 | register const Quantum |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 197 | *p; |
| 198 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 199 | register size_t |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 200 | id, |
| 201 | index, |
| 202 | level; |
| 203 | |
cristy | 9d314ff | 2011-03-09 01:30:28 +0000 | [diff] [blame] | 204 | register ssize_t |
| 205 | i, |
| 206 | x; |
| 207 | |
| 208 | ssize_t |
| 209 | y; |
| 210 | |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 211 | /* |
| 212 | Initialize color description tree. |
| 213 | */ |
| 214 | assert(image != (const Image *) NULL); |
| 215 | assert(image->signature == MagickSignature); |
| 216 | if (image->debug != MagickFalse) |
| 217 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename); |
| 218 | cube_info=GetCubeInfo(); |
| 219 | if (cube_info == (CubeInfo *) NULL) |
| 220 | { |
| 221 | (void) ThrowMagickException(exception,GetMagickModule(), |
| 222 | ResourceLimitError,"MemoryAllocationFailed","`%s'",image->filename); |
| 223 | return(cube_info); |
| 224 | } |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 225 | GetPixelInfo(image,&pixel); |
| 226 | GetPixelInfo(image,&target); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 227 | image_view=AcquireCacheView(image); |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 228 | for (y=0; y < (ssize_t) image->rows; y++) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 229 | { |
| 230 | p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 231 | if (p == (const Quantum *) NULL) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 232 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 233 | for (x=0; x < (ssize_t) image->columns; x++) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 234 | { |
| 235 | /* |
| 236 | Start at the root and proceed level by level. |
| 237 | */ |
| 238 | node_info=cube_info->root; |
| 239 | index=MaxTreeDepth-1; |
| 240 | for (level=1; level < MaxTreeDepth; level++) |
| 241 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 242 | SetPixelInfo(image,p,&pixel); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 243 | id=ColorToNodeId(image,&pixel,index); |
| 244 | if (node_info->child[id] == (NodeInfo *) NULL) |
| 245 | { |
| 246 | node_info->child[id]=GetNodeInfo(cube_info,level); |
| 247 | if (node_info->child[id] == (NodeInfo *) NULL) |
| 248 | { |
| 249 | (void) ThrowMagickException(exception,GetMagickModule(), |
| 250 | ResourceLimitError,"MemoryAllocationFailed","`%s'", |
| 251 | image->filename); |
| 252 | return(0); |
| 253 | } |
| 254 | } |
| 255 | node_info=node_info->child[id]; |
| 256 | index--; |
| 257 | } |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 258 | for (i=0; i < (ssize_t) node_info->number_unique; i++) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 259 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 260 | SetPixelInfoPacket(image,&node_info->list[i],&target); |
| 261 | if (IsPixelInfoEquivalent(&pixel,&target) != MagickFalse) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 262 | break; |
| 263 | } |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 264 | if (i < (ssize_t) node_info->number_unique) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 265 | node_info->list[i].count++; |
| 266 | else |
| 267 | { |
| 268 | if (node_info->number_unique == 0) |
cristy | 101ab70 | 2011-10-13 13:06:32 +0000 | [diff] [blame] | 269 | node_info->list=(PixelInfo *) AcquireMagickMemory( |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 270 | sizeof(*node_info->list)); |
| 271 | else |
cristy | 101ab70 | 2011-10-13 13:06:32 +0000 | [diff] [blame] | 272 | node_info->list=(PixelInfo *) ResizeQuantumMemory(node_info->list, |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 273 | (size_t) (i+1),sizeof(*node_info->list)); |
cristy | 101ab70 | 2011-10-13 13:06:32 +0000 | [diff] [blame] | 274 | if (node_info->list == (PixelInfo *) NULL) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 275 | { |
| 276 | (void) ThrowMagickException(exception,GetMagickModule(), |
| 277 | ResourceLimitError,"MemoryAllocationFailed","`%s'", |
| 278 | image->filename); |
| 279 | return(0); |
| 280 | } |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 281 | node_info->list[i].red=GetPixelRed(image,p); |
| 282 | node_info->list[i].green=GetPixelGreen(image,p); |
| 283 | node_info->list[i].blue=GetPixelBlue(image,p); |
| 284 | if (image->colorspace == CMYKColorspace) |
| 285 | node_info->list[i].black=GetPixelBlack(image,p); |
| 286 | node_info->list[i].alpha=GetPixelAlpha(image,p); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 287 | node_info->list[i].count=1; |
| 288 | node_info->number_unique++; |
| 289 | cube_info->colors++; |
| 290 | } |
cristy | ed23157 | 2011-07-14 02:18:59 +0000 | [diff] [blame] | 291 | p+=GetPixelChannels(image); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 292 | } |
cristy | cee9711 | 2010-05-28 00:44:52 +0000 | [diff] [blame] | 293 | proceed=SetImageProgress(image,EvaluateImageTag,(MagickOffsetType) y, |
| 294 | image->rows); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 295 | if (proceed == MagickFalse) |
| 296 | break; |
| 297 | } |
| 298 | image_view=DestroyCacheView(image_view); |
| 299 | return(cube_info); |
| 300 | } |
| 301 | |
| 302 | /* |
| 303 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 304 | % % |
| 305 | % % |
| 306 | % % |
| 307 | + D e f i n e I m a g e H i s t o g r a m % |
| 308 | % % |
| 309 | % % |
| 310 | % % |
| 311 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 312 | % |
| 313 | % DefineImageHistogram() traverses the color cube tree and notes each colormap |
| 314 | % entry. A colormap entry is any node in the color cube tree where the |
| 315 | % of unique colors is not zero. |
| 316 | % |
| 317 | % The format of the DefineImageHistogram method is: |
| 318 | % |
| 319 | % DefineImageHistogram(const Image *image,NodeInfo *node_info, |
cristy | 101ab70 | 2011-10-13 13:06:32 +0000 | [diff] [blame] | 320 | % PixelInfo **unique_colors) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 321 | % |
| 322 | % A description of each parameter follows. |
| 323 | % |
| 324 | % o image: the image. |
| 325 | % |
| 326 | % o node_info: the address of a structure of type NodeInfo which points to a |
| 327 | % node in the color cube tree that is to be pruned. |
| 328 | % |
| 329 | % o histogram: the image histogram. |
| 330 | % |
| 331 | */ |
| 332 | static void DefineImageHistogram(const Image *image,NodeInfo *node_info, |
cristy | 101ab70 | 2011-10-13 13:06:32 +0000 | [diff] [blame] | 333 | PixelInfo **histogram) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 334 | { |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 335 | register ssize_t |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 336 | i; |
| 337 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 338 | size_t |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 339 | number_children; |
| 340 | |
| 341 | /* |
| 342 | Traverse any children. |
| 343 | */ |
| 344 | number_children=image->matte == MagickFalse ? 8UL : 16UL; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 345 | for (i=0; i < (ssize_t) number_children; i++) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 346 | if (node_info->child[i] != (NodeInfo *) NULL) |
| 347 | DefineImageHistogram(image,node_info->child[i],histogram); |
| 348 | if (node_info->level == (MaxTreeDepth-1)) |
| 349 | { |
cristy | 101ab70 | 2011-10-13 13:06:32 +0000 | [diff] [blame] | 350 | register PixelInfo |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 351 | *p; |
| 352 | |
| 353 | p=node_info->list; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 354 | for (i=0; i < (ssize_t) node_info->number_unique; i++) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 355 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 356 | (*histogram)->red=p->red; |
| 357 | (*histogram)->green=p->green; |
| 358 | (*histogram)->blue=p->blue; |
| 359 | (*histogram)->black=p->black; |
| 360 | (*histogram)->alpha=p->alpha; |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 361 | (*histogram)->count=p->count; |
| 362 | (*histogram)++; |
| 363 | p++; |
| 364 | } |
| 365 | } |
| 366 | } |
| 367 | |
| 368 | /* |
| 369 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 370 | % % |
| 371 | % % |
| 372 | % % |
| 373 | + D e s t r o y C u b e I n f o % |
| 374 | % % |
| 375 | % % |
| 376 | % % |
| 377 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 378 | % |
| 379 | % DestroyCubeInfo() deallocates memory associated with a CubeInfo structure. |
| 380 | % |
| 381 | % The format of the DestroyCubeInfo method is: |
| 382 | % |
| 383 | % DestroyCubeInfo(const Image *image,CubeInfo *cube_info) |
| 384 | % |
| 385 | % A description of each parameter follows: |
| 386 | % |
| 387 | % o image: the image. |
| 388 | % |
| 389 | % o cube_info: the address of a structure of type CubeInfo. |
| 390 | % |
| 391 | */ |
| 392 | static CubeInfo *DestroyCubeInfo(const Image *image,CubeInfo *cube_info) |
| 393 | { |
| 394 | register Nodes |
| 395 | *nodes; |
| 396 | |
| 397 | /* |
| 398 | Release color cube tree storage. |
| 399 | */ |
| 400 | DestroyColorCube(image,cube_info->root); |
| 401 | do |
| 402 | { |
| 403 | nodes=cube_info->node_queue->next; |
| 404 | cube_info->node_queue=(Nodes *) |
| 405 | RelinquishMagickMemory(cube_info->node_queue); |
| 406 | cube_info->node_queue=nodes; |
| 407 | } while (cube_info->node_queue != (Nodes *) NULL); |
| 408 | return((CubeInfo *) RelinquishMagickMemory(cube_info)); |
| 409 | } |
| 410 | |
| 411 | /* |
| 412 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 413 | % % |
| 414 | % % |
| 415 | % % |
| 416 | + D e s t r o y C o l o r C u b e % |
| 417 | % % |
| 418 | % % |
| 419 | % % |
| 420 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 421 | % |
| 422 | % DestroyColorCube() traverses the color cube tree and frees the list of |
| 423 | % unique colors. |
| 424 | % |
| 425 | % The format of the DestroyColorCube method is: |
| 426 | % |
| 427 | % void DestroyColorCube(const Image *image,const NodeInfo *node_info) |
| 428 | % |
| 429 | % A description of each parameter follows. |
| 430 | % |
| 431 | % o image: the image. |
| 432 | % |
| 433 | % o node_info: the address of a structure of type NodeInfo which points to a |
| 434 | % node in the color cube tree that is to be pruned. |
| 435 | % |
| 436 | */ |
| 437 | static void DestroyColorCube(const Image *image,NodeInfo *node_info) |
| 438 | { |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 439 | register ssize_t |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 440 | i; |
| 441 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 442 | size_t |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 443 | number_children; |
| 444 | |
| 445 | /* |
| 446 | Traverse any children. |
| 447 | */ |
| 448 | number_children=image->matte == MagickFalse ? 8UL : 16UL; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 449 | for (i=0; i < (ssize_t) number_children; i++) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 450 | if (node_info->child[i] != (NodeInfo *) NULL) |
| 451 | DestroyColorCube(image,node_info->child[i]); |
cristy | 101ab70 | 2011-10-13 13:06:32 +0000 | [diff] [blame] | 452 | if (node_info->list != (PixelInfo *) NULL) |
| 453 | node_info->list=(PixelInfo *) RelinquishMagickMemory(node_info->list); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 454 | } |
| 455 | |
| 456 | /* |
| 457 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 458 | % % |
| 459 | % % |
| 460 | % % |
| 461 | + G e t C u b e I n f o % |
| 462 | % % |
| 463 | % % |
| 464 | % % |
| 465 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 466 | % |
| 467 | % GetCubeInfo() initializes the CubeInfo data structure. |
| 468 | % |
| 469 | % The format of the GetCubeInfo method is: |
| 470 | % |
| 471 | % cube_info=GetCubeInfo() |
| 472 | % |
| 473 | % A description of each parameter follows. |
| 474 | % |
| 475 | % o cube_info: A pointer to the Cube structure. |
| 476 | % |
| 477 | */ |
| 478 | static CubeInfo *GetCubeInfo(void) |
| 479 | { |
| 480 | CubeInfo |
| 481 | *cube_info; |
| 482 | |
| 483 | /* |
| 484 | Initialize tree to describe color cube. |
| 485 | */ |
cristy | 73bd4a5 | 2010-10-05 11:24:23 +0000 | [diff] [blame] | 486 | cube_info=(CubeInfo *) AcquireMagickMemory(sizeof(*cube_info)); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 487 | if (cube_info == (CubeInfo *) NULL) |
| 488 | return((CubeInfo *) NULL); |
| 489 | (void) ResetMagickMemory(cube_info,0,sizeof(*cube_info)); |
| 490 | /* |
| 491 | Initialize root node. |
| 492 | */ |
| 493 | cube_info->root=GetNodeInfo(cube_info,0); |
| 494 | if (cube_info->root == (NodeInfo *) NULL) |
| 495 | return((CubeInfo *) NULL); |
| 496 | return(cube_info); |
| 497 | } |
| 498 | |
| 499 | /* |
| 500 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 501 | % % |
| 502 | % % |
| 503 | % % |
| 504 | % G e t I m a g e H i s t o g r a m % |
| 505 | % % |
| 506 | % % |
| 507 | % % |
| 508 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 509 | % |
| 510 | % GetImageHistogram() returns the unique colors in an image. |
| 511 | % |
| 512 | % The format of the GetImageHistogram method is: |
| 513 | % |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 514 | % size_t GetImageHistogram(const Image *image, |
| 515 | % size_t *number_colors,ExceptionInfo *exception) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 516 | % |
| 517 | % A description of each parameter follows. |
| 518 | % |
| 519 | % o image: the image. |
| 520 | % |
| 521 | % o file: Write a histogram of the color distribution to this file handle. |
| 522 | % |
| 523 | % o exception: return any errors or warnings in this structure. |
| 524 | % |
| 525 | */ |
cristy | 101ab70 | 2011-10-13 13:06:32 +0000 | [diff] [blame] | 526 | MagickExport PixelInfo *GetImageHistogram(const Image *image, |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 527 | size_t *number_colors,ExceptionInfo *exception) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 528 | { |
cristy | 101ab70 | 2011-10-13 13:06:32 +0000 | [diff] [blame] | 529 | PixelInfo |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 530 | *histogram; |
| 531 | |
| 532 | CubeInfo |
| 533 | *cube_info; |
| 534 | |
| 535 | *number_colors=0; |
cristy | 101ab70 | 2011-10-13 13:06:32 +0000 | [diff] [blame] | 536 | histogram=(PixelInfo *) NULL; |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 537 | cube_info=ClassifyImageColors(image,exception); |
| 538 | if (cube_info != (CubeInfo *) NULL) |
| 539 | { |
cristy | 101ab70 | 2011-10-13 13:06:32 +0000 | [diff] [blame] | 540 | histogram=(PixelInfo *) AcquireQuantumMemory((size_t) cube_info->colors, |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 541 | sizeof(*histogram)); |
cristy | 101ab70 | 2011-10-13 13:06:32 +0000 | [diff] [blame] | 542 | if (histogram == (PixelInfo *) NULL) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 543 | (void) ThrowMagickException(exception,GetMagickModule(), |
| 544 | ResourceLimitError,"MemoryAllocationFailed","`%s'",image->filename); |
| 545 | else |
| 546 | { |
cristy | 101ab70 | 2011-10-13 13:06:32 +0000 | [diff] [blame] | 547 | PixelInfo |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 548 | *root; |
| 549 | |
| 550 | *number_colors=cube_info->colors; |
| 551 | root=histogram; |
| 552 | DefineImageHistogram(image,cube_info->root,&root); |
| 553 | } |
| 554 | } |
| 555 | cube_info=DestroyCubeInfo(image,cube_info); |
| 556 | return(histogram); |
| 557 | } |
| 558 | |
| 559 | /* |
| 560 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 561 | % % |
| 562 | % % |
| 563 | % % |
| 564 | + G e t N o d e I n f o % |
| 565 | % % |
| 566 | % % |
| 567 | % % |
| 568 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 569 | % |
| 570 | % GetNodeInfo() allocates memory for a new node in the color cube tree and |
| 571 | % presets all fields to zero. |
| 572 | % |
| 573 | % The format of the GetNodeInfo method is: |
| 574 | % |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 575 | % NodeInfo *GetNodeInfo(CubeInfo *cube_info,const size_t level) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 576 | % |
| 577 | % A description of each parameter follows. |
| 578 | % |
| 579 | % o cube_info: A pointer to the CubeInfo structure. |
| 580 | % |
| 581 | % o level: Specifies the level in the storage_class the node resides. |
| 582 | % |
| 583 | */ |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 584 | static NodeInfo *GetNodeInfo(CubeInfo *cube_info,const size_t level) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 585 | { |
| 586 | NodeInfo |
| 587 | *node_info; |
| 588 | |
| 589 | if (cube_info->free_nodes == 0) |
| 590 | { |
| 591 | Nodes |
| 592 | *nodes; |
| 593 | |
| 594 | /* |
| 595 | Allocate a new nodes of nodes. |
| 596 | */ |
cristy | 73bd4a5 | 2010-10-05 11:24:23 +0000 | [diff] [blame] | 597 | nodes=(Nodes *) AcquireMagickMemory(sizeof(*nodes)); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 598 | if (nodes == (Nodes *) NULL) |
| 599 | return((NodeInfo *) NULL); |
| 600 | nodes->next=cube_info->node_queue; |
| 601 | cube_info->node_queue=nodes; |
| 602 | cube_info->node_info=nodes->nodes; |
| 603 | cube_info->free_nodes=NodesInAList; |
| 604 | } |
| 605 | cube_info->free_nodes--; |
| 606 | node_info=cube_info->node_info++; |
| 607 | (void) ResetMagickMemory(node_info,0,sizeof(*node_info)); |
| 608 | node_info->level=level; |
| 609 | return(node_info); |
| 610 | } |
| 611 | |
| 612 | /* |
| 613 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 614 | % % |
| 615 | % % |
| 616 | % % |
| 617 | % I s H i s t o g r a m I m a g e % |
| 618 | % % |
| 619 | % % |
| 620 | % % |
| 621 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 622 | % |
| 623 | % IsHistogramImage() returns MagickTrue if the image has 1024 unique colors or |
| 624 | % less. |
| 625 | % |
| 626 | % The format of the IsHistogramImage method is: |
| 627 | % |
| 628 | % MagickBooleanType IsHistogramImage(const Image *image, |
| 629 | % ExceptionInfo *exception) |
| 630 | % |
| 631 | % A description of each parameter follows. |
| 632 | % |
| 633 | % o image: the image. |
| 634 | % |
| 635 | % o exception: return any errors or warnings in this structure. |
| 636 | % |
| 637 | */ |
| 638 | MagickExport MagickBooleanType IsHistogramImage(const Image *image, |
| 639 | ExceptionInfo *exception) |
| 640 | { |
| 641 | #define MaximumUniqueColors 1024 |
| 642 | |
cristy | c4c8d13 | 2010-01-07 01:58:38 +0000 | [diff] [blame] | 643 | CacheView |
| 644 | *image_view; |
| 645 | |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 646 | CubeInfo |
| 647 | *cube_info; |
| 648 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 649 | PixelInfo |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 650 | pixel, |
| 651 | target; |
| 652 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 653 | register const Quantum |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 654 | *p; |
| 655 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 656 | register ssize_t |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 657 | x; |
| 658 | |
| 659 | register NodeInfo |
| 660 | *node_info; |
| 661 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 662 | register ssize_t |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 663 | i; |
| 664 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 665 | size_t |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 666 | id, |
| 667 | index, |
| 668 | level; |
| 669 | |
cristy | 9d314ff | 2011-03-09 01:30:28 +0000 | [diff] [blame] | 670 | ssize_t |
| 671 | y; |
| 672 | |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 673 | assert(image != (Image *) NULL); |
| 674 | assert(image->signature == MagickSignature); |
| 675 | if (image->debug != MagickFalse) |
| 676 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename); |
| 677 | if ((image->storage_class == PseudoClass) && (image->colors <= 256)) |
| 678 | return(MagickTrue); |
| 679 | if (image->storage_class == PseudoClass) |
| 680 | return(MagickFalse); |
| 681 | /* |
| 682 | Initialize color description tree. |
| 683 | */ |
| 684 | cube_info=GetCubeInfo(); |
| 685 | if (cube_info == (CubeInfo *) NULL) |
| 686 | { |
| 687 | (void) ThrowMagickException(exception,GetMagickModule(), |
| 688 | ResourceLimitError,"MemoryAllocationFailed","`%s'",image->filename); |
| 689 | return(MagickFalse); |
| 690 | } |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 691 | GetPixelInfo(image,&pixel); |
| 692 | GetPixelInfo(image,&target); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 693 | image_view=AcquireCacheView(image); |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 694 | for (y=0; y < (ssize_t) image->rows; y++) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 695 | { |
| 696 | p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 697 | if (p == (const Quantum *) NULL) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 698 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 699 | for (x=0; x < (ssize_t) image->columns; x++) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 700 | { |
| 701 | /* |
| 702 | Start at the root and proceed level by level. |
| 703 | */ |
| 704 | node_info=cube_info->root; |
| 705 | index=MaxTreeDepth-1; |
| 706 | for (level=1; level < MaxTreeDepth; level++) |
| 707 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 708 | SetPixelInfo(image,p,&pixel); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 709 | id=ColorToNodeId(image,&pixel,index); |
| 710 | if (node_info->child[id] == (NodeInfo *) NULL) |
| 711 | { |
| 712 | node_info->child[id]=GetNodeInfo(cube_info,level); |
| 713 | if (node_info->child[id] == (NodeInfo *) NULL) |
| 714 | { |
| 715 | (void) ThrowMagickException(exception,GetMagickModule(), |
| 716 | ResourceLimitError,"MemoryAllocationFailed","`%s'", |
| 717 | image->filename); |
| 718 | break; |
| 719 | } |
| 720 | } |
| 721 | node_info=node_info->child[id]; |
| 722 | index--; |
| 723 | } |
| 724 | if (level < MaxTreeDepth) |
| 725 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 726 | for (i=0; i < (ssize_t) node_info->number_unique; i++) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 727 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 728 | SetPixelInfoPacket(image,&node_info->list[i],&target); |
| 729 | if (IsPixelInfoEquivalent(&pixel,&target) != MagickFalse) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 730 | break; |
| 731 | } |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 732 | if (i < (ssize_t) node_info->number_unique) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 733 | node_info->list[i].count++; |
| 734 | else |
| 735 | { |
| 736 | /* |
| 737 | Add this unique color to the color list. |
| 738 | */ |
| 739 | if (node_info->number_unique == 0) |
cristy | 101ab70 | 2011-10-13 13:06:32 +0000 | [diff] [blame] | 740 | node_info->list=(PixelInfo *) AcquireMagickMemory( |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 741 | sizeof(*node_info->list)); |
| 742 | else |
cristy | 101ab70 | 2011-10-13 13:06:32 +0000 | [diff] [blame] | 743 | node_info->list=(PixelInfo *) ResizeQuantumMemory(node_info->list, |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 744 | (size_t) (i+1),sizeof(*node_info->list)); |
cristy | 101ab70 | 2011-10-13 13:06:32 +0000 | [diff] [blame] | 745 | if (node_info->list == (PixelInfo *) NULL) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 746 | { |
| 747 | (void) ThrowMagickException(exception,GetMagickModule(), |
| 748 | ResourceLimitError,"MemoryAllocationFailed","`%s'", |
| 749 | image->filename); |
| 750 | break; |
| 751 | } |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 752 | node_info->list[i].red=GetPixelRed(image,p); |
| 753 | node_info->list[i].green=GetPixelGreen(image,p); |
| 754 | node_info->list[i].blue=GetPixelBlue(image,p); |
| 755 | if (image->colorspace == CMYKColorspace) |
| 756 | node_info->list[i].black=GetPixelBlack(image,p); |
| 757 | node_info->list[i].alpha=GetPixelAlpha(image,p); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 758 | node_info->list[i].count=1; |
| 759 | node_info->number_unique++; |
| 760 | cube_info->colors++; |
| 761 | if (cube_info->colors > MaximumUniqueColors) |
| 762 | break; |
| 763 | } |
cristy | ed23157 | 2011-07-14 02:18:59 +0000 | [diff] [blame] | 764 | p+=GetPixelChannels(image); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 765 | } |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 766 | if (x < (ssize_t) image->columns) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 767 | break; |
| 768 | } |
| 769 | image_view=DestroyCacheView(image_view); |
| 770 | cube_info=DestroyCubeInfo(image,cube_info); |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 771 | return(y < (ssize_t) image->rows ? MagickFalse : MagickTrue); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 772 | } |
| 773 | |
| 774 | /* |
| 775 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 776 | % % |
| 777 | % % |
| 778 | % % |
| 779 | % I s P a l e t t e I m a g e % |
| 780 | % % |
| 781 | % % |
| 782 | % % |
| 783 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 784 | % |
| 785 | % IsPaletteImage() returns MagickTrue if the image is PseudoClass and has 256 |
| 786 | % unique colors or less. |
| 787 | % |
| 788 | % The format of the IsPaletteImage method is: |
| 789 | % |
| 790 | % MagickBooleanType IsPaletteImage(const Image *image, |
| 791 | % ExceptionInfo *exception) |
| 792 | % |
| 793 | % A description of each parameter follows. |
| 794 | % |
| 795 | % o image: the image. |
| 796 | % |
| 797 | % o exception: return any errors or warnings in this structure. |
| 798 | % |
| 799 | */ |
| 800 | MagickExport MagickBooleanType IsPaletteImage(const Image *image, |
| 801 | ExceptionInfo *exception) |
| 802 | { |
cristy | c4c8d13 | 2010-01-07 01:58:38 +0000 | [diff] [blame] | 803 | CacheView |
| 804 | *image_view; |
| 805 | |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 806 | CubeInfo |
| 807 | *cube_info; |
| 808 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 809 | PixelInfo |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 810 | pixel, |
| 811 | target; |
| 812 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 813 | register const Quantum |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 814 | *p; |
| 815 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 816 | register ssize_t |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 817 | x; |
| 818 | |
| 819 | register NodeInfo |
| 820 | *node_info; |
| 821 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 822 | register ssize_t |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 823 | i; |
| 824 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 825 | size_t |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 826 | id, |
| 827 | index, |
| 828 | level; |
| 829 | |
cristy | 9d314ff | 2011-03-09 01:30:28 +0000 | [diff] [blame] | 830 | ssize_t |
| 831 | y; |
| 832 | |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 833 | assert(image != (Image *) NULL); |
| 834 | assert(image->signature == MagickSignature); |
| 835 | if (image->debug != MagickFalse) |
| 836 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename); |
| 837 | if ((image->storage_class == PseudoClass) && (image->colors <= 256)) |
| 838 | return(MagickTrue); |
| 839 | if (image->storage_class == PseudoClass) |
| 840 | return(MagickFalse); |
| 841 | /* |
| 842 | Initialize color description tree. |
| 843 | */ |
| 844 | cube_info=GetCubeInfo(); |
| 845 | if (cube_info == (CubeInfo *) NULL) |
| 846 | { |
| 847 | (void) ThrowMagickException(exception,GetMagickModule(), |
| 848 | ResourceLimitError,"MemoryAllocationFailed","`%s'",image->filename); |
| 849 | return(MagickFalse); |
| 850 | } |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 851 | GetPixelInfo(image,&pixel); |
| 852 | GetPixelInfo(image,&target); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 853 | image_view=AcquireCacheView(image); |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 854 | for (y=0; y < (ssize_t) image->rows; y++) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 855 | { |
| 856 | p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 857 | if (p == (const Quantum *) NULL) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 858 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 859 | for (x=0; x < (ssize_t) image->columns; x++) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 860 | { |
| 861 | /* |
| 862 | Start at the root and proceed level by level. |
| 863 | */ |
| 864 | node_info=cube_info->root; |
| 865 | index=MaxTreeDepth-1; |
| 866 | for (level=1; level < MaxTreeDepth; level++) |
| 867 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 868 | SetPixelInfo(image,p,&pixel); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 869 | id=ColorToNodeId(image,&pixel,index); |
| 870 | if (node_info->child[id] == (NodeInfo *) NULL) |
| 871 | { |
| 872 | node_info->child[id]=GetNodeInfo(cube_info,level); |
| 873 | if (node_info->child[id] == (NodeInfo *) NULL) |
| 874 | { |
| 875 | (void) ThrowMagickException(exception,GetMagickModule(), |
| 876 | ResourceLimitError,"MemoryAllocationFailed","`%s'", |
| 877 | image->filename); |
| 878 | break; |
| 879 | } |
| 880 | } |
| 881 | node_info=node_info->child[id]; |
| 882 | index--; |
| 883 | } |
| 884 | if (level < MaxTreeDepth) |
| 885 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 886 | for (i=0; i < (ssize_t) node_info->number_unique; i++) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 887 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 888 | SetPixelInfoPacket(image,&node_info->list[i],&target); |
| 889 | if (IsPixelInfoEquivalent(&pixel,&target) != MagickFalse) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 890 | break; |
| 891 | } |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 892 | if (i < (ssize_t) node_info->number_unique) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 893 | node_info->list[i].count++; |
| 894 | else |
| 895 | { |
| 896 | /* |
| 897 | Add this unique color to the color list. |
| 898 | */ |
| 899 | if (node_info->number_unique == 0) |
cristy | 101ab70 | 2011-10-13 13:06:32 +0000 | [diff] [blame] | 900 | node_info->list=(PixelInfo *) AcquireMagickMemory( |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 901 | sizeof(*node_info->list)); |
| 902 | else |
cristy | 101ab70 | 2011-10-13 13:06:32 +0000 | [diff] [blame] | 903 | node_info->list=(PixelInfo *) ResizeQuantumMemory(node_info->list, |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 904 | (size_t) (i+1),sizeof(*node_info->list)); |
cristy | 101ab70 | 2011-10-13 13:06:32 +0000 | [diff] [blame] | 905 | if (node_info->list == (PixelInfo *) NULL) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 906 | { |
| 907 | (void) ThrowMagickException(exception,GetMagickModule(), |
| 908 | ResourceLimitError,"MemoryAllocationFailed","`%s'", |
| 909 | image->filename); |
| 910 | break; |
| 911 | } |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 912 | node_info->list[i].red=GetPixelRed(image,p); |
| 913 | node_info->list[i].green=GetPixelGreen(image,p); |
| 914 | node_info->list[i].blue=GetPixelBlue(image,p); |
| 915 | if (image->colorspace == CMYKColorspace) |
| 916 | node_info->list[i].black=GetPixelBlack(image,p); |
| 917 | node_info->list[i].alpha=GetPixelAlpha(image,p); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 918 | node_info->list[i].count=1; |
| 919 | node_info->number_unique++; |
| 920 | cube_info->colors++; |
| 921 | if (cube_info->colors > 256) |
| 922 | break; |
| 923 | } |
cristy | ed23157 | 2011-07-14 02:18:59 +0000 | [diff] [blame] | 924 | p+=GetPixelChannels(image); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 925 | } |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 926 | if (x < (ssize_t) image->columns) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 927 | break; |
| 928 | } |
| 929 | image_view=DestroyCacheView(image_view); |
| 930 | cube_info=DestroyCubeInfo(image,cube_info); |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 931 | return(y < (ssize_t) image->rows ? MagickFalse : MagickTrue); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 932 | } |
| 933 | |
| 934 | /* |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 935 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 936 | % % |
| 937 | % % |
| 938 | % % |
| 939 | % M i n M a x S t r e t c h I m a g e % |
| 940 | % % |
| 941 | % % |
| 942 | % % |
| 943 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 944 | % |
| 945 | % MinMaxStretchImage() uses the exact minimum and maximum values found in |
| 946 | % each of the channels given, as the BlackPoint and WhitePoint to linearly |
| 947 | % stretch the colors (and histogram) of the image. The stretch points are |
| 948 | % also moved further inward by the adjustment values given. |
| 949 | % |
glennrp | f0a92fd | 2011-04-27 13:17:21 +0000 | [diff] [blame] | 950 | % If the adjustment values are both zero this function is equivalent to a |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 951 | % perfect normalization (or autolevel) of the image. |
| 952 | % |
| 953 | % Each channel is stretched independantally of each other (producing color |
| 954 | % distortion) unless the special 'SyncChannels' flag is also provided in the |
| 955 | % channels setting. If this flag is present the minimum and maximum point |
| 956 | % will be extracted from all the given channels, and those channels will be |
| 957 | % stretched by exactly the same amount (preventing color distortion). |
| 958 | % |
anthony | 7fe39fc | 2010-04-06 03:19:20 +0000 | [diff] [blame] | 959 | % In the special case that only ONE value is found in a channel of the image |
| 960 | % that value is not stretched, that value is left as is. |
| 961 | % |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 962 | % The 'SyncChannels' is turned on in the 'DefaultChannels' setting by |
| 963 | % default. |
| 964 | % |
| 965 | % The format of the MinMaxStretchImage method is: |
| 966 | % |
cristy | 490408a | 2011-07-07 14:42:05 +0000 | [diff] [blame] | 967 | % MagickBooleanType MinMaxStretchImage(Image *image,const double black, |
cristy | a63e4a9 | 2011-09-09 00:47:59 +0000 | [diff] [blame] | 968 | % const double white,const double gamma,ExceptionInfo *exception) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 969 | % |
| 970 | % A description of each parameter follows: |
| 971 | % |
| 972 | % o image: The image to auto-level |
| 973 | % |
cristy | 490408a | 2011-07-07 14:42:05 +0000 | [diff] [blame] | 974 | % o black, white: move the black / white point inward from the minimum and |
| 975 | % maximum points by this color value. |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 976 | % |
cristy | a63e4a9 | 2011-09-09 00:47:59 +0000 | [diff] [blame] | 977 | % o gamma: the gamma. |
| 978 | % |
cristy | 9511120 | 2011-08-09 19:41:42 +0000 | [diff] [blame] | 979 | % o exception: return any errors or warnings in this structure. |
| 980 | % |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 981 | */ |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 982 | MagickExport MagickBooleanType MinMaxStretchImage(Image *image, |
cristy | a63e4a9 | 2011-09-09 00:47:59 +0000 | [diff] [blame] | 983 | const double black,const double white,const double gamma, |
| 984 | ExceptionInfo *exception) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 985 | { |
| 986 | double |
cristy | 19eb641 | 2010-04-23 14:42:29 +0000 | [diff] [blame] | 987 | min, |
| 988 | max; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 989 | |
cristy | a63e4a9 | 2011-09-09 00:47:59 +0000 | [diff] [blame] | 990 | register ssize_t |
| 991 | i; |
| 992 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 993 | MagickStatusType |
| 994 | status; |
| 995 | |
anthony | 7fe39fc | 2010-04-06 03:19:20 +0000 | [diff] [blame] | 996 | status=MagickTrue; |
cristy | 5f95f4f | 2011-10-23 01:01:01 +0000 | [diff] [blame^] | 997 | if (image->channel_mask == DefaultChannels) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 998 | { |
| 999 | /* |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1000 | Auto-level all channels equally. |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1001 | */ |
cristy | 9511120 | 2011-08-09 19:41:42 +0000 | [diff] [blame] | 1002 | (void) GetImageRange(image,&min,&max,exception); |
cristy | 490408a | 2011-07-07 14:42:05 +0000 | [diff] [blame] | 1003 | min+=black; |
| 1004 | max-=white; |
cristy | 19eb641 | 2010-04-23 14:42:29 +0000 | [diff] [blame] | 1005 | if (fabs(min-max) >= MagickEpsilon) |
cristy | a63e4a9 | 2011-09-09 00:47:59 +0000 | [diff] [blame] | 1006 | status&=LevelImage(image,min,max,gamma,exception); |
cristy | 19eb641 | 2010-04-23 14:42:29 +0000 | [diff] [blame] | 1007 | return(status != 0 ? MagickTrue : MagickFalse); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1008 | } |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1009 | /* |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1010 | Auto-level each channel separately. |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1011 | */ |
cristy | a63e4a9 | 2011-09-09 00:47:59 +0000 | [diff] [blame] | 1012 | for (i=0; i < (ssize_t) GetPixelChannels(image); i++) |
| 1013 | { |
| 1014 | ChannelType |
| 1015 | channel_mask; |
| 1016 | |
| 1017 | PixelTrait |
| 1018 | traits; |
| 1019 | |
| 1020 | traits=GetPixelChannelMapTraits(image,(PixelChannel) i); |
| 1021 | if ((traits & UpdatePixelTrait) == 0) |
| 1022 | continue; |
cristy | a13d082 | 2011-09-19 00:19:19 +0000 | [diff] [blame] | 1023 | channel_mask=SetPixelChannelMask(image,(ChannelType) (1 << i)); |
cristy | a63e4a9 | 2011-09-09 00:47:59 +0000 | [diff] [blame] | 1024 | status&=GetImageRange(image,&min,&max,exception); |
| 1025 | min+=black; |
| 1026 | max-=white; |
| 1027 | if (fabs(min-max) >= MagickEpsilon) |
| 1028 | status&=LevelImage(image,min,max,gamma,exception); |
| 1029 | (void) SetPixelChannelMask(image,channel_mask); |
| 1030 | } |
cristy | 19eb641 | 2010-04-23 14:42:29 +0000 | [diff] [blame] | 1031 | return(status != 0 ? MagickTrue : MagickFalse); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1032 | } |
| 1033 | |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1034 | /* |
| 1035 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 1036 | % % |
| 1037 | % % |
| 1038 | % % |
| 1039 | % G e t N u m b e r C o l o r s % |
| 1040 | % % |
| 1041 | % % |
| 1042 | % % |
| 1043 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 1044 | % |
| 1045 | % GetNumberColors() returns the number of unique colors in an image. |
| 1046 | % |
| 1047 | % The format of the GetNumberColors method is: |
| 1048 | % |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1049 | % size_t GetNumberColors(const Image *image,FILE *file, |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1050 | % ExceptionInfo *exception) |
| 1051 | % |
| 1052 | % A description of each parameter follows. |
| 1053 | % |
| 1054 | % o image: the image. |
| 1055 | % |
| 1056 | % o file: Write a histogram of the color distribution to this file handle. |
| 1057 | % |
| 1058 | % o exception: return any errors or warnings in this structure. |
| 1059 | % |
| 1060 | */ |
| 1061 | |
| 1062 | #if defined(__cplusplus) || defined(c_plusplus) |
| 1063 | extern "C" { |
| 1064 | #endif |
| 1065 | |
| 1066 | static int HistogramCompare(const void *x,const void *y) |
| 1067 | { |
cristy | 101ab70 | 2011-10-13 13:06:32 +0000 | [diff] [blame] | 1068 | const PixelInfo |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1069 | *color_1, |
| 1070 | *color_2; |
| 1071 | |
cristy | 101ab70 | 2011-10-13 13:06:32 +0000 | [diff] [blame] | 1072 | color_1=(const PixelInfo *) x; |
| 1073 | color_2=(const PixelInfo *) y; |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1074 | if (color_2->red != color_1->red) |
| 1075 | return((int) color_1->red-(int) color_2->red); |
| 1076 | if (color_2->green != color_1->green) |
| 1077 | return((int) color_1->green-(int) color_2->green); |
| 1078 | if (color_2->blue != color_1->blue) |
| 1079 | return((int) color_1->blue-(int) color_2->blue); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1080 | return((int) color_2->count-(int) color_1->count); |
| 1081 | } |
| 1082 | |
| 1083 | #if defined(__cplusplus) || defined(c_plusplus) |
| 1084 | } |
| 1085 | #endif |
| 1086 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1087 | MagickExport size_t GetNumberColors(const Image *image,FILE *file, |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1088 | ExceptionInfo *exception) |
| 1089 | { |
| 1090 | #define HistogramImageTag "Histogram/Image" |
| 1091 | |
| 1092 | char |
| 1093 | color[MaxTextExtent], |
| 1094 | hex[MaxTextExtent], |
| 1095 | tuple[MaxTextExtent]; |
| 1096 | |
cristy | 101ab70 | 2011-10-13 13:06:32 +0000 | [diff] [blame] | 1097 | PixelInfo |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1098 | *histogram; |
| 1099 | |
cristy | 8b27a6d | 2010-02-14 03:31:15 +0000 | [diff] [blame] | 1100 | MagickBooleanType |
| 1101 | status; |
| 1102 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1103 | PixelInfo |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1104 | pixel; |
| 1105 | |
cristy | 101ab70 | 2011-10-13 13:06:32 +0000 | [diff] [blame] | 1106 | register PixelInfo |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1107 | *p; |
| 1108 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1109 | register ssize_t |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1110 | i; |
| 1111 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1112 | size_t |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1113 | number_colors; |
| 1114 | |
| 1115 | number_colors=0; |
| 1116 | if (file == (FILE *) NULL) |
| 1117 | { |
| 1118 | CubeInfo |
| 1119 | *cube_info; |
| 1120 | |
| 1121 | cube_info=ClassifyImageColors(image,exception); |
| 1122 | if (cube_info != (CubeInfo *) NULL) |
| 1123 | number_colors=cube_info->colors; |
| 1124 | cube_info=DestroyCubeInfo(image,cube_info); |
| 1125 | return(number_colors); |
| 1126 | } |
| 1127 | histogram=GetImageHistogram(image,&number_colors,exception); |
cristy | 101ab70 | 2011-10-13 13:06:32 +0000 | [diff] [blame] | 1128 | if (histogram == (PixelInfo *) NULL) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1129 | return(number_colors); |
| 1130 | qsort((void *) histogram,(size_t) number_colors,sizeof(*histogram), |
| 1131 | HistogramCompare); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1132 | GetPixelInfo(image,&pixel); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1133 | p=histogram; |
cristy | da16f16 | 2011-02-19 23:52:17 +0000 | [diff] [blame] | 1134 | status=MagickTrue; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1135 | for (i=0; i < (ssize_t) number_colors; i++) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1136 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1137 | SetPixelInfoPacket(image,p,&pixel); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1138 | (void) CopyMagickString(tuple,"(",MaxTextExtent); |
cristy | ed23157 | 2011-07-14 02:18:59 +0000 | [diff] [blame] | 1139 | ConcatenateColorComponent(&pixel,RedPixelChannel,X11Compliance,tuple); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1140 | (void) ConcatenateMagickString(tuple,",",MaxTextExtent); |
cristy | ed23157 | 2011-07-14 02:18:59 +0000 | [diff] [blame] | 1141 | ConcatenateColorComponent(&pixel,GreenPixelChannel,X11Compliance,tuple); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1142 | (void) ConcatenateMagickString(tuple,",",MaxTextExtent); |
cristy | ed23157 | 2011-07-14 02:18:59 +0000 | [diff] [blame] | 1143 | ConcatenateColorComponent(&pixel,BluePixelChannel,X11Compliance,tuple); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1144 | if (pixel.colorspace == CMYKColorspace) |
| 1145 | { |
| 1146 | (void) ConcatenateMagickString(tuple,",",MaxTextExtent); |
cristy | ed23157 | 2011-07-14 02:18:59 +0000 | [diff] [blame] | 1147 | ConcatenateColorComponent(&pixel,BlackPixelChannel,X11Compliance, |
cristy | fa806a7 | 2011-07-04 02:06:13 +0000 | [diff] [blame] | 1148 | tuple); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1149 | } |
| 1150 | if (pixel.matte != MagickFalse) |
| 1151 | { |
| 1152 | (void) ConcatenateMagickString(tuple,",",MaxTextExtent); |
cristy | ed23157 | 2011-07-14 02:18:59 +0000 | [diff] [blame] | 1153 | ConcatenateColorComponent(&pixel,AlphaPixelChannel,X11Compliance, |
cristy | fa806a7 | 2011-07-04 02:06:13 +0000 | [diff] [blame] | 1154 | tuple); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1155 | } |
| 1156 | (void) ConcatenateMagickString(tuple,")",MaxTextExtent); |
cristy | 269c941 | 2011-10-13 23:41:15 +0000 | [diff] [blame] | 1157 | (void) QueryColorname(image,&pixel,SVGCompliance,color,exception); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1158 | GetColorTuple(&pixel,MagickTrue,hex); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 1159 | (void) FormatLocaleFile(file,"%10" MagickSizeFormat,p->count); |
| 1160 | (void) FormatLocaleFile(file,": %s %s %s\n",tuple,hex,color); |
cristy | 8b27a6d | 2010-02-14 03:31:15 +0000 | [diff] [blame] | 1161 | if (image->progress_monitor != (MagickProgressMonitor) NULL) |
| 1162 | { |
| 1163 | MagickBooleanType |
| 1164 | proceed; |
| 1165 | |
cristy | cee9711 | 2010-05-28 00:44:52 +0000 | [diff] [blame] | 1166 | proceed=SetImageProgress(image,HistogramImageTag,(MagickOffsetType) i, |
| 1167 | number_colors); |
cristy | 8b27a6d | 2010-02-14 03:31:15 +0000 | [diff] [blame] | 1168 | if (proceed == MagickFalse) |
| 1169 | status=MagickFalse; |
| 1170 | } |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1171 | p++; |
| 1172 | } |
| 1173 | (void) fflush(file); |
cristy | 101ab70 | 2011-10-13 13:06:32 +0000 | [diff] [blame] | 1174 | histogram=(PixelInfo *) RelinquishMagickMemory(histogram); |
cristy | da16f16 | 2011-02-19 23:52:17 +0000 | [diff] [blame] | 1175 | if (status == MagickFalse) |
| 1176 | return(0); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1177 | return(number_colors); |
| 1178 | } |
| 1179 | |
| 1180 | /* |
| 1181 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 1182 | % % |
| 1183 | % % |
| 1184 | % % |
| 1185 | % U n i q u e I m a g e C o l o r s % |
| 1186 | % % |
| 1187 | % % |
| 1188 | % % |
| 1189 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 1190 | % |
| 1191 | % UniqueImageColors() returns the unique colors of an image. |
| 1192 | % |
| 1193 | % The format of the UniqueImageColors method is: |
| 1194 | % |
| 1195 | % Image *UniqueImageColors(const Image *image,ExceptionInfo *exception) |
| 1196 | % |
| 1197 | % A description of each parameter follows. |
| 1198 | % |
| 1199 | % o image: the image. |
| 1200 | % |
| 1201 | % o exception: return any errors or warnings in this structure. |
| 1202 | % |
| 1203 | */ |
| 1204 | |
cristy | c5c6f66 | 2010-09-22 14:23:02 +0000 | [diff] [blame] | 1205 | static void UniqueColorsToImage(Image *unique_image,CacheView *unique_view, |
| 1206 | CubeInfo *cube_info,const NodeInfo *node_info,ExceptionInfo *exception) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1207 | { |
| 1208 | #define UniqueColorsImageTag "UniqueColors/Image" |
| 1209 | |
cristy | 8b27a6d | 2010-02-14 03:31:15 +0000 | [diff] [blame] | 1210 | MagickBooleanType |
| 1211 | status; |
| 1212 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1213 | register ssize_t |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1214 | i; |
| 1215 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1216 | size_t |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1217 | number_children; |
| 1218 | |
| 1219 | /* |
| 1220 | Traverse any children. |
| 1221 | */ |
cristy | c5c6f66 | 2010-09-22 14:23:02 +0000 | [diff] [blame] | 1222 | number_children=unique_image->matte == MagickFalse ? 8UL : 16UL; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1223 | for (i=0; i < (ssize_t) number_children; i++) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1224 | if (node_info->child[i] != (NodeInfo *) NULL) |
cristy | c5c6f66 | 2010-09-22 14:23:02 +0000 | [diff] [blame] | 1225 | UniqueColorsToImage(unique_image,unique_view,cube_info, |
| 1226 | node_info->child[i],exception); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1227 | if (node_info->level == (MaxTreeDepth-1)) |
| 1228 | { |
cristy | 101ab70 | 2011-10-13 13:06:32 +0000 | [diff] [blame] | 1229 | register PixelInfo |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1230 | *p; |
| 1231 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1232 | register Quantum |
cristy | c47d1f8 | 2009-11-26 01:44:43 +0000 | [diff] [blame] | 1233 | *restrict q; |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1234 | |
cristy | da16f16 | 2011-02-19 23:52:17 +0000 | [diff] [blame] | 1235 | status=MagickTrue; |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1236 | p=node_info->list; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1237 | for (i=0; i < (ssize_t) node_info->number_unique; i++) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1238 | { |
cristy | c5c6f66 | 2010-09-22 14:23:02 +0000 | [diff] [blame] | 1239 | q=QueueCacheViewAuthenticPixels(unique_view,cube_info->x,0,1,1, |
| 1240 | exception); |
cristy | acd2ed2 | 2011-08-30 01:44:23 +0000 | [diff] [blame] | 1241 | if (q == (Quantum *) NULL) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1242 | continue; |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1243 | SetPixelRed(unique_image,p->red,q); |
| 1244 | SetPixelGreen(unique_image,p->green,q); |
| 1245 | SetPixelBlue(unique_image,p->blue,q); |
| 1246 | SetPixelAlpha(unique_image,p->alpha,q); |
cristy | c5c6f66 | 2010-09-22 14:23:02 +0000 | [diff] [blame] | 1247 | if (unique_image->colorspace == CMYKColorspace) |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1248 | SetPixelBlack(unique_image,p->black,q); |
cristy | c5c6f66 | 2010-09-22 14:23:02 +0000 | [diff] [blame] | 1249 | if (SyncCacheViewAuthenticPixels(unique_view,exception) == MagickFalse) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1250 | break; |
| 1251 | cube_info->x++; |
| 1252 | p++; |
| 1253 | } |
cristy | c5c6f66 | 2010-09-22 14:23:02 +0000 | [diff] [blame] | 1254 | if (unique_image->progress_monitor != (MagickProgressMonitor) NULL) |
cristy | 8b27a6d | 2010-02-14 03:31:15 +0000 | [diff] [blame] | 1255 | { |
| 1256 | MagickBooleanType |
| 1257 | proceed; |
| 1258 | |
cristy | c5c6f66 | 2010-09-22 14:23:02 +0000 | [diff] [blame] | 1259 | proceed=SetImageProgress(unique_image,UniqueColorsImageTag, |
cristy | 8b27a6d | 2010-02-14 03:31:15 +0000 | [diff] [blame] | 1260 | cube_info->progress,cube_info->colors); |
| 1261 | if (proceed == MagickFalse) |
| 1262 | status=MagickFalse; |
| 1263 | } |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1264 | cube_info->progress++; |
cristy | da16f16 | 2011-02-19 23:52:17 +0000 | [diff] [blame] | 1265 | if (status == MagickFalse) |
| 1266 | return; |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1267 | } |
| 1268 | } |
| 1269 | |
| 1270 | MagickExport Image *UniqueImageColors(const Image *image, |
| 1271 | ExceptionInfo *exception) |
| 1272 | { |
cristy | c5c6f66 | 2010-09-22 14:23:02 +0000 | [diff] [blame] | 1273 | CacheView |
| 1274 | *unique_view; |
| 1275 | |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1276 | CubeInfo |
| 1277 | *cube_info; |
| 1278 | |
| 1279 | Image |
| 1280 | *unique_image; |
| 1281 | |
| 1282 | cube_info=ClassifyImageColors(image,exception); |
| 1283 | if (cube_info == (CubeInfo *) NULL) |
| 1284 | return((Image *) NULL); |
| 1285 | unique_image=CloneImage(image,cube_info->colors,1,MagickTrue,exception); |
| 1286 | if (unique_image == (Image *) NULL) |
| 1287 | return(unique_image); |
cristy | 574cc26 | 2011-08-05 01:23:58 +0000 | [diff] [blame] | 1288 | if (SetImageStorageClass(unique_image,DirectClass,exception) == MagickFalse) |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1289 | { |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1290 | unique_image=DestroyImage(unique_image); |
| 1291 | return((Image *) NULL); |
| 1292 | } |
cristy | c5c6f66 | 2010-09-22 14:23:02 +0000 | [diff] [blame] | 1293 | unique_view=AcquireCacheView(unique_image); |
| 1294 | UniqueColorsToImage(unique_image,unique_view,cube_info,cube_info->root, |
| 1295 | exception); |
| 1296 | unique_view=DestroyCacheView(unique_view); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1297 | if (cube_info->colors < MaxColormapSize) |
| 1298 | { |
| 1299 | QuantizeInfo |
| 1300 | *quantize_info; |
| 1301 | |
| 1302 | quantize_info=AcquireQuantizeInfo((ImageInfo *) NULL); |
| 1303 | quantize_info->number_colors=MaxColormapSize; |
| 1304 | quantize_info->dither=MagickFalse; |
| 1305 | quantize_info->tree_depth=8; |
cristy | 018f07f | 2011-09-04 21:15:19 +0000 | [diff] [blame] | 1306 | (void) QuantizeImage(quantize_info,unique_image,exception); |
cristy | f2e1166 | 2009-10-14 01:24:43 +0000 | [diff] [blame] | 1307 | quantize_info=DestroyQuantizeInfo(quantize_info); |
| 1308 | } |
| 1309 | cube_info=DestroyCubeInfo(image,cube_info); |
| 1310 | return(unique_image); |
| 1311 | } |