blob: 48070b33a19a42b526ecf2e6814029317042f587 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% RRRR EEEEE SSSSS AAA M M PPPP L EEEEE %
7% R R E SS A A MM MM P P L E %
8% RRRR EEE SSS AAAAA M M M PPPP L EEE %
9% R R E SS A A M M P L E %
10% R R EEEEE SSSSS A A M M P LLLLL EEEEE %
11% %
12% %
13% MagickCore Pixel Resampling Methods %
14% %
15% Software Design %
16% John Cristy %
17% Anthony Thyssen %
18% August 2007 %
19% %
20% %
cristy16af1cb2009-12-11 21:38:29 +000021% Copyright 1999-2010 ImageMagick Studio LLC, a non-profit organization %
cristy3ed852e2009-09-05 21:47:34 +000022% 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*/
43#include "magick/studio.h"
44#include "magick/artifact.h"
45#include "magick/color-private.h"
46#include "magick/cache.h"
47#include "magick/draw.h"
48#include "magick/exception-private.h"
49#include "magick/gem.h"
50#include "magick/image.h"
51#include "magick/image-private.h"
52#include "magick/log.h"
anthonyd638d312010-09-15 13:13:01 +000053#include "magick/magick.h"
cristy3ed852e2009-09-05 21:47:34 +000054#include "magick/memory_.h"
55#include "magick/pixel-private.h"
56#include "magick/quantum.h"
57#include "magick/random_.h"
58#include "magick/resample.h"
59#include "magick/resize.h"
60#include "magick/resize-private.h"
61#include "magick/transform.h"
62#include "magick/signature-private.h"
anthony28ad1d72010-10-26 06:30:24 +000063#include "magick/utility.h"
cristy3ed852e2009-09-05 21:47:34 +000064/*
anthony490ab032010-09-20 00:02:08 +000065 EWA Resampling Options
66*/
anthonyc7b82f22010-09-27 10:42:29 +000067
68/* select ONE resampling method */
69#define EWA 1 /* Normal EWA handling - raw or clamped */
70 /* if 0 then use "High Quality EWA" */
71#define EWA_CLAMP 1 /* EWA Clamping from Nicolas Robidoux */
72
anthony5b697cd2010-10-10 03:48:57 +000073#define FILTER_LUT 1 /* Use a LUT rather then direct filter calls */
74
anthonyc7b82f22010-09-27 10:42:29 +000075/* output debugging information */
anthony490ab032010-09-20 00:02:08 +000076#define DEBUG_ELLIPSE 0 /* output ellipse info for debug */
anthony2e6ab682010-09-28 12:02:25 +000077#define DEBUG_HIT_MISS 0 /* output hit/miss pixels (as gnuplot commands) */
78#define DEBUG_NO_PIXEL_HIT 0 /* Make pixels that fail to hit anything - RED */
anthony490ab032010-09-20 00:02:08 +000079
anthony5b697cd2010-10-10 03:48:57 +000080#if ! FILTER_DIRECT
81#define WLUT_WIDTH 1024 /* size of the filter cache */
82#endif
83
anthony490ab032010-09-20 00:02:08 +000084/*
cristy3ed852e2009-09-05 21:47:34 +000085 Typedef declarations.
86*/
cristy3ed852e2009-09-05 21:47:34 +000087struct _ResampleFilter
88{
cristy3ed852e2009-09-05 21:47:34 +000089 CacheView
90 *view;
91
cristyc4c8d132010-01-07 01:58:38 +000092 Image
93 *image;
94
cristy3ed852e2009-09-05 21:47:34 +000095 ExceptionInfo
96 *exception;
97
98 MagickBooleanType
99 debug;
100
101 /* Information about image being resampled */
cristybb503372010-05-27 20:51:26 +0000102 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000103 image_area;
104
105 InterpolatePixelMethod
106 interpolate;
107
108 VirtualPixelMethod
109 virtual_pixel;
110
111 FilterTypes
112 filter;
113
114 /* processing settings needed */
115 MagickBooleanType
116 limit_reached,
117 do_interpolate,
118 average_defined;
119
120 MagickPixelPacket
121 average_pixel;
122
123 /* current ellipitical area being resampled around center point */
124 double
125 A, B, C,
anthonyd638d312010-09-15 13:13:01 +0000126 Vlimit, Ulimit, Uwidth, slope;
cristy3ed852e2009-09-05 21:47:34 +0000127
anthony175defe2010-10-10 04:28:31 +0000128#if FILTER_LUT
cristy3ed852e2009-09-05 21:47:34 +0000129 /* LUT of weights for filtered average in elliptical area */
130 double
anthony5b697cd2010-10-10 03:48:57 +0000131 filter_lut[WLUT_WIDTH];
132#else
133 /* Use a Direct call to the filter functions */
134 ResizeFilter
135 *filter_def;
anthony582b6d72010-10-10 06:45:41 +0000136
137 double
138 F;
anthony5b697cd2010-10-10 03:48:57 +0000139#endif
140
141 /* the practical working support of the filter */
142 double
cristy3ed852e2009-09-05 21:47:34 +0000143 support;
144
cristybb503372010-05-27 20:51:26 +0000145 size_t
cristy3ed852e2009-09-05 21:47:34 +0000146 signature;
147};
148
149/*
150%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
151% %
152% %
153% %
154% A c q u i r e R e s a m p l e I n f o %
155% %
156% %
157% %
158%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
159%
160% AcquireResampleFilter() initializes the information resample needs do to a
161% scaled lookup of a color from an image, using area sampling.
162%
163% The algorithm is based on a Elliptical Weighted Average, where the pixels
164% found in a large elliptical area is averaged together according to a
165% weighting (filter) function. For more details see "Fundamentals of Texture
166% Mapping and Image Warping" a master's thesis by Paul.S.Heckbert, June 17,
167% 1989. Available for free from, http://www.cs.cmu.edu/~ph/
168%
169% As EWA resampling (or any sort of resampling) can require a lot of
170% calculations to produce a distorted scaling of the source image for each
171% output pixel, the ResampleFilter structure generated holds that information
172% between individual image resampling.
173%
174% This function will make the appropriate AcquireCacheView() calls
175% to view the image, calling functions do not need to open a cache view.
176%
177% Usage Example...
178% resample_filter=AcquireResampleFilter(image,exception);
anthonyc7b82f22010-09-27 10:42:29 +0000179% SetResampleFilter(resample_filter, GaussianFilter, 1.0);
cristybb503372010-05-27 20:51:26 +0000180% for (y=0; y < (ssize_t) image->rows; y++) {
181% for (x=0; x < (ssize_t) image->columns; x++) {
anthonyc7b82f22010-09-27 10:42:29 +0000182% u= ....; v= ....;
cristy3ed852e2009-09-05 21:47:34 +0000183% ScaleResampleFilter(resample_filter, ... scaling vectors ...);
anthonyc7b82f22010-09-27 10:42:29 +0000184% (void) ResamplePixelColor(resample_filter,u,v,&pixel);
cristy3ed852e2009-09-05 21:47:34 +0000185% ... assign resampled pixel value ...
186% }
187% }
188% DestroyResampleFilter(resample_filter);
189%
190% The format of the AcquireResampleFilter method is:
191%
192% ResampleFilter *AcquireResampleFilter(const Image *image,
193% ExceptionInfo *exception)
194%
195% A description of each parameter follows:
196%
197% o image: the image.
198%
199% o exception: return any errors or warnings in this structure.
200%
201*/
202MagickExport ResampleFilter *AcquireResampleFilter(const Image *image,
203 ExceptionInfo *exception)
204{
205 register ResampleFilter
206 *resample_filter;
207
208 assert(image != (Image *) NULL);
209 assert(image->signature == MagickSignature);
210 if (image->debug != MagickFalse)
211 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
212 assert(exception != (ExceptionInfo *) NULL);
213 assert(exception->signature == MagickSignature);
214
215 resample_filter=(ResampleFilter *) AcquireMagickMemory(
216 sizeof(*resample_filter));
217 if (resample_filter == (ResampleFilter *) NULL)
218 ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed");
219 (void) ResetMagickMemory(resample_filter,0,sizeof(*resample_filter));
220
221 resample_filter->image=ReferenceImage((Image *) image);
222 resample_filter->view=AcquireCacheView(resample_filter->image);
223 resample_filter->exception=exception;
224
225 resample_filter->debug=IsEventLogging();
226 resample_filter->signature=MagickSignature;
227
anthony5b697cd2010-10-10 03:48:57 +0000228 resample_filter->image_area=(ssize_t) (image->columns*image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000229 resample_filter->average_defined = MagickFalse;
230
231 /* initialise the resampling filter settings */
anthony5b697cd2010-10-10 03:48:57 +0000232 SetResampleFilter(resample_filter, image->filter, image->blur);
cristy82fea932010-10-14 01:17:55 +0000233 (void) SetResampleFilterInterpolateMethod(resample_filter,
234 image->interpolate);
235 (void) SetResampleFilterVirtualPixelMethod(resample_filter,
anthony72949792010-10-08 04:44:56 +0000236 GetImageVirtualPixelMethod(image));
cristy3ed852e2009-09-05 21:47:34 +0000237
cristy3ed852e2009-09-05 21:47:34 +0000238 return(resample_filter);
239}
240
241/*
242%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
243% %
244% %
245% %
246% D e s t r o y R e s a m p l e I n f o %
247% %
248% %
249% %
250%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
251%
252% DestroyResampleFilter() finalizes and cleans up the resampling
253% resample_filter as returned by AcquireResampleFilter(), freeing any memory
254% or other information as needed.
255%
256% The format of the DestroyResampleFilter method is:
257%
258% ResampleFilter *DestroyResampleFilter(ResampleFilter *resample_filter)
259%
260% A description of each parameter follows:
261%
262% o resample_filter: resampling information structure
263%
264*/
265MagickExport ResampleFilter *DestroyResampleFilter(
266 ResampleFilter *resample_filter)
267{
268 assert(resample_filter != (ResampleFilter *) NULL);
269 assert(resample_filter->signature == MagickSignature);
270 assert(resample_filter->image != (Image *) NULL);
271 if (resample_filter->debug != MagickFalse)
272 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
273 resample_filter->image->filename);
274 resample_filter->view=DestroyCacheView(resample_filter->view);
275 resample_filter->image=DestroyImage(resample_filter->image);
anthony5b697cd2010-10-10 03:48:57 +0000276#if ! FILTER_LUT
277 resample_filter->filter_def=DestroyResizeFilter(resample_filter->filter_def);
278#endif
cristy3ed852e2009-09-05 21:47:34 +0000279 resample_filter->signature=(~MagickSignature);
280 resample_filter=(ResampleFilter *) RelinquishMagickMemory(resample_filter);
281 return(resample_filter);
282}
283
284/*
285%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
286% %
287% %
288% %
289% I n t e r p o l a t e R e s a m p l e F i l t e r %
290% %
291% %
292% %
293%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
294%
295% InterpolateResampleFilter() applies bi-linear or tri-linear interpolation
296% between a floating point coordinate and the pixels surrounding that
297% coordinate. No pixel area resampling, or scaling of the result is
298% performed.
299%
300% The format of the InterpolateResampleFilter method is:
301%
302% MagickBooleanType InterpolateResampleFilter(
303% ResampleInfo *resample_filter,const InterpolatePixelMethod method,
304% const double x,const double y,MagickPixelPacket *pixel)
305%
306% A description of each parameter follows:
307%
308% o resample_filter: the resample filter.
309%
310% o method: the pixel clor interpolation method.
311%
312% o x,y: A double representing the current (x,y) position of the pixel.
313%
314% o pixel: return the interpolated pixel here.
315%
316*/
317
318static inline double MagickMax(const double x,const double y)
319{
320 if (x > y)
321 return(x);
322 return(y);
323}
324
325static void BicubicInterpolate(const MagickPixelPacket *pixels,const double dx,
326 MagickPixelPacket *pixel)
327{
328 MagickRealType
329 dx2,
330 p,
331 q,
332 r,
333 s;
334
335 dx2=dx*dx;
336 p=(pixels[3].red-pixels[2].red)-(pixels[0].red-pixels[1].red);
337 q=(pixels[0].red-pixels[1].red)-p;
338 r=pixels[2].red-pixels[0].red;
339 s=pixels[1].red;
340 pixel->red=(dx*dx2*p)+(dx2*q)+(dx*r)+s;
341 p=(pixels[3].green-pixels[2].green)-(pixels[0].green-pixels[1].green);
342 q=(pixels[0].green-pixels[1].green)-p;
343 r=pixels[2].green-pixels[0].green;
344 s=pixels[1].green;
345 pixel->green=(dx*dx2*p)+(dx2*q)+(dx*r)+s;
346 p=(pixels[3].blue-pixels[2].blue)-(pixels[0].blue-pixels[1].blue);
347 q=(pixels[0].blue-pixels[1].blue)-p;
348 r=pixels[2].blue-pixels[0].blue;
349 s=pixels[1].blue;
350 pixel->blue=(dx*dx2*p)+(dx2*q)+(dx*r)+s;
351 p=(pixels[3].opacity-pixels[2].opacity)-(pixels[0].opacity-pixels[1].opacity);
352 q=(pixels[0].opacity-pixels[1].opacity)-p;
353 r=pixels[2].opacity-pixels[0].opacity;
354 s=pixels[1].opacity;
355 pixel->opacity=(dx*dx2*p)+(dx2*q)+(dx*r)+s;
356 if (pixel->colorspace == CMYKColorspace)
357 {
358 p=(pixels[3].index-pixels[2].index)-(pixels[0].index-pixels[1].index);
359 q=(pixels[0].index-pixels[1].index)-p;
360 r=pixels[2].index-pixels[0].index;
361 s=pixels[1].index;
362 pixel->index=(dx*dx2*p)+(dx2*q)+(dx*r)+s;
363 }
364}
365
366static inline MagickRealType CubicWeightingFunction(const MagickRealType x)
367{
368 MagickRealType
369 alpha,
370 gamma;
371
372 alpha=MagickMax(x+2.0,0.0);
373 gamma=1.0*alpha*alpha*alpha;
374 alpha=MagickMax(x+1.0,0.0);
375 gamma-=4.0*alpha*alpha*alpha;
376 alpha=MagickMax(x+0.0,0.0);
377 gamma+=6.0*alpha*alpha*alpha;
378 alpha=MagickMax(x-1.0,0.0);
379 gamma-=4.0*alpha*alpha*alpha;
380 return(gamma/6.0);
381}
382
383static inline double MeshInterpolate(const PointInfo *delta,const double p,
384 const double x,const double y)
385{
386 return(delta->x*x+delta->y*y+(1.0-delta->x-delta->y)*p);
387}
388
cristybb503372010-05-27 20:51:26 +0000389static inline ssize_t NearestNeighbor(MagickRealType x)
cristy3ed852e2009-09-05 21:47:34 +0000390{
391 if (x >= 0.0)
cristybb503372010-05-27 20:51:26 +0000392 return((ssize_t) (x+0.5));
393 return((ssize_t) (x-0.5));
cristy3ed852e2009-09-05 21:47:34 +0000394}
395
396static MagickBooleanType InterpolateResampleFilter(
397 ResampleFilter *resample_filter,const InterpolatePixelMethod method,
398 const double x,const double y,MagickPixelPacket *pixel)
399{
400 MagickBooleanType
401 status;
402
403 register const IndexPacket
404 *indexes;
405
406 register const PixelPacket
407 *p;
408
cristybb503372010-05-27 20:51:26 +0000409 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000410 i;
411
412 assert(resample_filter != (ResampleFilter *) NULL);
413 assert(resample_filter->signature == MagickSignature);
414 status=MagickTrue;
anthony2e6ab682010-09-28 12:02:25 +0000415
cristy3ed852e2009-09-05 21:47:34 +0000416 switch (method)
417 {
418 case AverageInterpolatePixel:
419 {
420 MagickPixelPacket
421 pixels[16];
422
423 MagickRealType
424 alpha[16],
425 gamma;
426
cristy54ffe7c2010-07-04 23:54:03 +0000427 p=GetCacheViewVirtualPixels(resample_filter->view,(ssize_t) floor(x)-1,
428 (ssize_t) floor(y)-1,4,4,resample_filter->exception);
cristy3ed852e2009-09-05 21:47:34 +0000429 if (p == (const PixelPacket *) NULL)
430 {
431 status=MagickFalse;
432 break;
433 }
434 indexes=GetCacheViewVirtualIndexQueue(resample_filter->view);
435 for (i=0; i < 16L; i++)
436 {
437 GetMagickPixelPacket(resample_filter->image,pixels+i);
438 SetMagickPixelPacket(resample_filter->image,p,indexes+i,pixels+i);
439 alpha[i]=1.0;
440 if (resample_filter->image->matte != MagickFalse)
441 {
cristy46f08202010-01-10 04:04:21 +0000442 alpha[i]=QuantumScale*((MagickRealType) GetAlphaPixelComponent(p));
cristy3ed852e2009-09-05 21:47:34 +0000443 pixels[i].red*=alpha[i];
444 pixels[i].green*=alpha[i];
445 pixels[i].blue*=alpha[i];
446 if (resample_filter->image->colorspace == CMYKColorspace)
447 pixels[i].index*=alpha[i];
448 }
449 gamma=alpha[i];
450 gamma=1.0/(fabs((double) gamma) <= MagickEpsilon ? 1.0 : gamma);
451 pixel->red+=gamma*0.0625*pixels[i].red;
452 pixel->green+=gamma*0.0625*pixels[i].green;
453 pixel->blue+=gamma*0.0625*pixels[i].blue;
454 pixel->opacity+=0.0625*pixels[i].opacity;
455 if (resample_filter->image->colorspace == CMYKColorspace)
456 pixel->index+=gamma*0.0625*pixels[i].index;
457 p++;
458 }
459 break;
460 }
461 case BicubicInterpolatePixel:
462 {
463 MagickPixelPacket
464 pixels[16],
465 u[4];
466
467 MagickRealType
468 alpha[16];
469
470 PointInfo
471 delta;
472
cristy54ffe7c2010-07-04 23:54:03 +0000473 p=GetCacheViewVirtualPixels(resample_filter->view,(ssize_t) floor(x)-1,
474 (ssize_t) floor(y)-1,4,4,resample_filter->exception);
cristy3ed852e2009-09-05 21:47:34 +0000475 if (p == (const PixelPacket *) NULL)
476 {
477 status=MagickFalse;
478 break;
479 }
480 indexes=GetCacheViewVirtualIndexQueue(resample_filter->view);
481 for (i=0; i < 16L; i++)
482 {
483 GetMagickPixelPacket(resample_filter->image,pixels+i);
484 SetMagickPixelPacket(resample_filter->image,p,indexes+i,pixels+i);
485 alpha[i]=1.0;
486 if (resample_filter->image->matte != MagickFalse)
487 {
cristy46f08202010-01-10 04:04:21 +0000488 alpha[i]=QuantumScale*((MagickRealType) GetAlphaPixelComponent(p));
cristy3ed852e2009-09-05 21:47:34 +0000489 pixels[i].red*=alpha[i];
490 pixels[i].green*=alpha[i];
491 pixels[i].blue*=alpha[i];
492 if (resample_filter->image->colorspace == CMYKColorspace)
493 pixels[i].index*=alpha[i];
494 }
495 p++;
496 }
497 delta.x=x-floor(x);
498 for (i=0; i < 4L; i++)
499 BicubicInterpolate(pixels+4*i,delta.x,u+i);
500 delta.y=y-floor(y);
501 BicubicInterpolate(u,delta.y,pixel);
502 break;
503 }
504 case BilinearInterpolatePixel:
505 default:
506 {
507 MagickPixelPacket
508 pixels[4];
509
510 MagickRealType
511 alpha[4],
512 gamma;
513
514 PointInfo
515 delta,
516 epsilon;
517
cristy54ffe7c2010-07-04 23:54:03 +0000518 p=GetCacheViewVirtualPixels(resample_filter->view,(ssize_t) floor(x),
519 (ssize_t) floor(y),2,2,resample_filter->exception);
cristy3ed852e2009-09-05 21:47:34 +0000520 if (p == (const PixelPacket *) NULL)
521 {
522 status=MagickFalse;
523 break;
524 }
525 indexes=GetCacheViewVirtualIndexQueue(resample_filter->view);
526 for (i=0; i < 4L; i++)
527 {
528 pixels[i].red=(MagickRealType) p[i].red;
529 pixels[i].green=(MagickRealType) p[i].green;
530 pixels[i].blue=(MagickRealType) p[i].blue;
531 pixels[i].opacity=(MagickRealType) p[i].opacity;
532 alpha[i]=1.0;
533 }
534 if (resample_filter->image->matte != MagickFalse)
535 for (i=0; i < 4L; i++)
536 {
537 alpha[i]=QuantumScale*((MagickRealType) QuantumRange-p[i].opacity);
538 pixels[i].red*=alpha[i];
539 pixels[i].green*=alpha[i];
540 pixels[i].blue*=alpha[i];
541 }
542 if (indexes != (IndexPacket *) NULL)
543 for (i=0; i < 4L; i++)
544 {
545 pixels[i].index=(MagickRealType) indexes[i];
546 if (resample_filter->image->colorspace == CMYKColorspace)
547 pixels[i].index*=alpha[i];
548 }
549 delta.x=x-floor(x);
550 delta.y=y-floor(y);
551 epsilon.x=1.0-delta.x;
552 epsilon.y=1.0-delta.y;
553 gamma=((epsilon.y*(epsilon.x*alpha[0]+delta.x*alpha[1])+delta.y*
554 (epsilon.x*alpha[2]+delta.x*alpha[3])));
555 gamma=1.0/(fabs((double) gamma) <= MagickEpsilon ? 1.0 : gamma);
556 pixel->red=gamma*(epsilon.y*(epsilon.x*pixels[0].red+delta.x*
557 pixels[1].red)+delta.y*(epsilon.x*pixels[2].red+delta.x*pixels[3].red));
558 pixel->green=gamma*(epsilon.y*(epsilon.x*pixels[0].green+delta.x*
559 pixels[1].green)+delta.y*(epsilon.x*pixels[2].green+delta.x*
560 pixels[3].green));
561 pixel->blue=gamma*(epsilon.y*(epsilon.x*pixels[0].blue+delta.x*
562 pixels[1].blue)+delta.y*(epsilon.x*pixels[2].blue+delta.x*
563 pixels[3].blue));
564 pixel->opacity=(epsilon.y*(epsilon.x*pixels[0].opacity+delta.x*
565 pixels[1].opacity)+delta.y*(epsilon.x*pixels[2].opacity+delta.x*
566 pixels[3].opacity));
567 if (resample_filter->image->colorspace == CMYKColorspace)
568 pixel->index=gamma*(epsilon.y*(epsilon.x*pixels[0].index+delta.x*
569 pixels[1].index)+delta.y*(epsilon.x*pixels[2].index+delta.x*
570 pixels[3].index));
571 break;
572 }
573 case FilterInterpolatePixel:
574 {
cristy54ffe7c2010-07-04 23:54:03 +0000575 CacheView
576 *filter_view;
577
cristy3ed852e2009-09-05 21:47:34 +0000578 Image
579 *excerpt_image,
580 *filter_image;
581
582 MagickPixelPacket
583 pixels[1];
584
585 RectangleInfo
586 geometry;
587
cristy3ed852e2009-09-05 21:47:34 +0000588 geometry.width=4L;
589 geometry.height=4L;
cristybb503372010-05-27 20:51:26 +0000590 geometry.x=(ssize_t) floor(x)-1L;
591 geometry.y=(ssize_t) floor(y)-1L;
cristy3ed852e2009-09-05 21:47:34 +0000592 excerpt_image=ExcerptImage(resample_filter->image,&geometry,
593 resample_filter->exception);
594 if (excerpt_image == (Image *) NULL)
595 {
596 status=MagickFalse;
597 break;
598 }
599 filter_image=ResizeImage(excerpt_image,1,1,resample_filter->image->filter,
600 resample_filter->image->blur,resample_filter->exception);
601 excerpt_image=DestroyImage(excerpt_image);
602 if (filter_image == (Image *) NULL)
603 break;
604 filter_view=AcquireCacheView(filter_image);
605 p=GetCacheViewVirtualPixels(filter_view,0,0,1,1,
606 resample_filter->exception);
607 if (p != (const PixelPacket *) NULL)
608 {
609 indexes=GetVirtualIndexQueue(filter_image);
610 GetMagickPixelPacket(resample_filter->image,pixels);
611 SetMagickPixelPacket(resample_filter->image,p,indexes,pixel);
612 }
613 filter_view=DestroyCacheView(filter_view);
614 filter_image=DestroyImage(filter_image);
615 break;
616 }
617 case IntegerInterpolatePixel:
618 {
619 MagickPixelPacket
620 pixels[1];
621
cristy54ffe7c2010-07-04 23:54:03 +0000622 p=GetCacheViewVirtualPixels(resample_filter->view,(ssize_t) floor(x),
623 (ssize_t) floor(y),1,1,resample_filter->exception);
cristy3ed852e2009-09-05 21:47:34 +0000624 if (p == (const PixelPacket *) NULL)
625 {
626 status=MagickFalse;
627 break;
628 }
629 indexes=GetCacheViewVirtualIndexQueue(resample_filter->view);
630 GetMagickPixelPacket(resample_filter->image,pixels);
631 SetMagickPixelPacket(resample_filter->image,p,indexes,pixel);
632 break;
633 }
634 case MeshInterpolatePixel:
635 {
636 MagickPixelPacket
637 pixels[4];
638
639 MagickRealType
640 alpha[4],
641 gamma;
642
643 PointInfo
644 delta,
645 luminance;
646
cristy54ffe7c2010-07-04 23:54:03 +0000647 p=GetCacheViewVirtualPixels(resample_filter->view,(ssize_t) floor(x),
648 (ssize_t) floor(y),2,2,resample_filter->exception);
cristy3ed852e2009-09-05 21:47:34 +0000649 if (p == (const PixelPacket *) NULL)
650 {
651 status=MagickFalse;
652 break;
653 }
654 indexes=GetCacheViewVirtualIndexQueue(resample_filter->view);
655 for (i=0; i < 4L; i++)
656 {
657 GetMagickPixelPacket(resample_filter->image,pixels+i);
658 SetMagickPixelPacket(resample_filter->image,p,indexes+i,pixels+i);
659 alpha[i]=1.0;
660 if (resample_filter->image->matte != MagickFalse)
661 {
cristy46f08202010-01-10 04:04:21 +0000662 alpha[i]=QuantumScale*((MagickRealType) GetAlphaPixelComponent(p));
cristy3ed852e2009-09-05 21:47:34 +0000663 pixels[i].red*=alpha[i];
664 pixels[i].green*=alpha[i];
665 pixels[i].blue*=alpha[i];
666 if (resample_filter->image->colorspace == CMYKColorspace)
667 pixels[i].index*=alpha[i];
668 }
669 p++;
670 }
671 delta.x=x-floor(x);
672 delta.y=y-floor(y);
673 luminance.x=MagickPixelLuminance(pixels+0)-MagickPixelLuminance(pixels+3);
674 luminance.y=MagickPixelLuminance(pixels+1)-MagickPixelLuminance(pixels+2);
675 if (fabs(luminance.x) < fabs(luminance.y))
676 {
677 /*
678 Diagonal 0-3 NW-SE.
679 */
680 if (delta.x <= delta.y)
681 {
682 /*
683 Bottom-left triangle (pixel:2, diagonal: 0-3).
684 */
685 delta.y=1.0-delta.y;
686 gamma=MeshInterpolate(&delta,alpha[2],alpha[3],alpha[0]);
687 gamma=1.0/(fabs((double) gamma) <= MagickEpsilon ? 1.0 : gamma);
688 pixel->red=gamma*MeshInterpolate(&delta,pixels[2].red,
689 pixels[3].red,pixels[0].red);
690 pixel->green=gamma*MeshInterpolate(&delta,pixels[2].green,
691 pixels[3].green,pixels[0].green);
692 pixel->blue=gamma*MeshInterpolate(&delta,pixels[2].blue,
693 pixels[3].blue,pixels[0].blue);
694 pixel->opacity=gamma*MeshInterpolate(&delta,pixels[2].opacity,
695 pixels[3].opacity,pixels[0].opacity);
696 if (resample_filter->image->colorspace == CMYKColorspace)
697 pixel->index=gamma*MeshInterpolate(&delta,pixels[2].index,
698 pixels[3].index,pixels[0].index);
699 }
700 else
701 {
702 /*
703 Top-right triangle (pixel:1, diagonal: 0-3).
704 */
705 delta.x=1.0-delta.x;
706 gamma=MeshInterpolate(&delta,alpha[1],alpha[0],alpha[3]);
707 gamma=1.0/(fabs((double) gamma) <= MagickEpsilon ? 1.0 : gamma);
708 pixel->red=gamma*MeshInterpolate(&delta,pixels[1].red,
709 pixels[0].red,pixels[3].red);
710 pixel->green=gamma*MeshInterpolate(&delta,pixels[1].green,
711 pixels[0].green,pixels[3].green);
712 pixel->blue=gamma*MeshInterpolate(&delta,pixels[1].blue,
713 pixels[0].blue,pixels[3].blue);
714 pixel->opacity=gamma*MeshInterpolate(&delta,pixels[1].opacity,
715 pixels[0].opacity,pixels[3].opacity);
716 if (resample_filter->image->colorspace == CMYKColorspace)
717 pixel->index=gamma*MeshInterpolate(&delta,pixels[1].index,
718 pixels[0].index,pixels[3].index);
719 }
720 }
721 else
722 {
723 /*
724 Diagonal 1-2 NE-SW.
725 */
726 if (delta.x <= (1.0-delta.y))
727 {
728 /*
729 Top-left triangle (pixel 0, diagonal: 1-2).
730 */
731 gamma=MeshInterpolate(&delta,alpha[0],alpha[1],alpha[2]);
732 gamma=1.0/(fabs((double) gamma) <= MagickEpsilon ? 1.0 : gamma);
733 pixel->red=gamma*MeshInterpolate(&delta,pixels[0].red,
734 pixels[1].red,pixels[2].red);
735 pixel->green=gamma*MeshInterpolate(&delta,pixels[0].green,
736 pixels[1].green,pixels[2].green);
737 pixel->blue=gamma*MeshInterpolate(&delta,pixels[0].blue,
738 pixels[1].blue,pixels[2].blue);
739 pixel->opacity=gamma*MeshInterpolate(&delta,pixels[0].opacity,
740 pixels[1].opacity,pixels[2].opacity);
741 if (resample_filter->image->colorspace == CMYKColorspace)
742 pixel->index=gamma*MeshInterpolate(&delta,pixels[0].index,
743 pixels[1].index,pixels[2].index);
744 }
745 else
746 {
747 /*
748 Bottom-right triangle (pixel: 3, diagonal: 1-2).
749 */
750 delta.x=1.0-delta.x;
751 delta.y=1.0-delta.y;
752 gamma=MeshInterpolate(&delta,alpha[3],alpha[2],alpha[1]);
753 gamma=1.0/(fabs((double) gamma) <= MagickEpsilon ? 1.0 : gamma);
754 pixel->red=gamma*MeshInterpolate(&delta,pixels[3].red,
755 pixels[2].red,pixels[1].red);
756 pixel->green=gamma*MeshInterpolate(&delta,pixels[3].green,
757 pixels[2].green,pixels[1].green);
758 pixel->blue=gamma*MeshInterpolate(&delta,pixels[3].blue,
759 pixels[2].blue,pixels[1].blue);
760 pixel->opacity=gamma*MeshInterpolate(&delta,pixels[3].opacity,
761 pixels[2].opacity,pixels[1].opacity);
762 if (resample_filter->image->colorspace == CMYKColorspace)
763 pixel->index=gamma*MeshInterpolate(&delta,pixels[3].index,
764 pixels[2].index,pixels[1].index);
765 }
766 }
767 break;
768 }
769 case NearestNeighborInterpolatePixel:
770 {
771 MagickPixelPacket
772 pixels[1];
773
774 p=GetCacheViewVirtualPixels(resample_filter->view,NearestNeighbor(x),
775 NearestNeighbor(y),1,1,resample_filter->exception);
776 if (p == (const PixelPacket *) NULL)
777 {
778 status=MagickFalse;
779 break;
780 }
781 indexes=GetCacheViewVirtualIndexQueue(resample_filter->view);
782 GetMagickPixelPacket(resample_filter->image,pixels);
783 SetMagickPixelPacket(resample_filter->image,p,indexes,pixel);
784 break;
785 }
786 case SplineInterpolatePixel:
787 {
cristy3ed852e2009-09-05 21:47:34 +0000788 MagickPixelPacket
789 pixels[16];
790
791 MagickRealType
792 alpha[16],
793 dx,
794 dy,
795 gamma;
796
797 PointInfo
798 delta;
799
cristy54ffe7c2010-07-04 23:54:03 +0000800 ssize_t
801 j,
802 n;
803
804 p=GetCacheViewVirtualPixels(resample_filter->view,(ssize_t) floor(x)-1,
805 (ssize_t) floor(y)-1,4,4,resample_filter->exception);
cristy3ed852e2009-09-05 21:47:34 +0000806 if (p == (const PixelPacket *) NULL)
807 {
808 status=MagickFalse;
809 break;
810 }
811 indexes=GetCacheViewVirtualIndexQueue(resample_filter->view);
812 n=0;
813 delta.x=x-floor(x);
814 delta.y=y-floor(y);
815 for (i=(-1); i < 3L; i++)
816 {
817 dy=CubicWeightingFunction((MagickRealType) i-delta.y);
818 for (j=(-1); j < 3L; j++)
819 {
820 GetMagickPixelPacket(resample_filter->image,pixels+n);
821 SetMagickPixelPacket(resample_filter->image,p,indexes+n,pixels+n);
822 alpha[n]=1.0;
823 if (resample_filter->image->matte != MagickFalse)
824 {
cristy54ffe7c2010-07-04 23:54:03 +0000825 alpha[n]=QuantumScale*((MagickRealType)
826 GetAlphaPixelComponent(p));
cristy3ed852e2009-09-05 21:47:34 +0000827 pixels[n].red*=alpha[n];
828 pixels[n].green*=alpha[n];
829 pixels[n].blue*=alpha[n];
830 if (resample_filter->image->colorspace == CMYKColorspace)
831 pixels[n].index*=alpha[n];
832 }
833 dx=CubicWeightingFunction(delta.x-(MagickRealType) j);
834 gamma=alpha[n];
835 gamma=1.0/(fabs((double) gamma) <= MagickEpsilon ? 1.0 : gamma);
836 pixel->red+=gamma*dx*dy*pixels[n].red;
837 pixel->green+=gamma*dx*dy*pixels[n].green;
838 pixel->blue+=gamma*dx*dy*pixels[n].blue;
839 if (resample_filter->image->matte != MagickFalse)
840 pixel->opacity+=dx*dy*pixels[n].opacity;
841 if (resample_filter->image->colorspace == CMYKColorspace)
842 pixel->index+=gamma*dx*dy*pixels[n].index;
843 n++;
844 p++;
845 }
846 }
847 break;
848 }
849 }
850 return(status);
851}
852
853/*
854%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
855% %
856% %
857% %
858% R e s a m p l e P i x e l C o l o r %
859% %
860% %
861% %
862%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
863%
864% ResamplePixelColor() samples the pixel values surrounding the location
865% given using an elliptical weighted average, at the scale previously
866% calculated, and in the most efficent manner possible for the
867% VirtualPixelMethod setting.
868%
869% The format of the ResamplePixelColor method is:
870%
871% MagickBooleanType ResamplePixelColor(ResampleFilter *resample_filter,
872% const double u0,const double v0,MagickPixelPacket *pixel)
873%
874% A description of each parameter follows:
875%
876% o resample_filter: the resample filter.
877%
878% o u0,v0: A double representing the center of the area to resample,
879% The distortion transformed transformed x,y coordinate.
880%
881% o pixel: the resampled pixel is returned here.
882%
883*/
884MagickExport MagickBooleanType ResamplePixelColor(
885 ResampleFilter *resample_filter,const double u0,const double v0,
886 MagickPixelPacket *pixel)
887{
888 MagickBooleanType
889 status;
890
anthony490ab032010-09-20 00:02:08 +0000891 ssize_t u,v, v1, v2, uw, hit;
cristy3ed852e2009-09-05 21:47:34 +0000892 double u1;
893 double U,V,Q,DQ,DDQ;
894 double divisor_c,divisor_m;
895 register double weight;
896 register const PixelPacket *pixels;
897 register const IndexPacket *indexes;
898 assert(resample_filter != (ResampleFilter *) NULL);
899 assert(resample_filter->signature == MagickSignature);
900
901 status=MagickTrue;
902 GetMagickPixelPacket(resample_filter->image,pixel);
903 if ( resample_filter->do_interpolate ) {
904 status=InterpolateResampleFilter(resample_filter,
905 resample_filter->interpolate,u0,v0,pixel);
906 return(status);
907 }
908
anthony2e6ab682010-09-28 12:02:25 +0000909#if DEBUG_ELLIPSE
910 fprintf(stderr, "u0=%lf; v0=%lf;\n", u0, v0);
911#endif
912
cristy3ed852e2009-09-05 21:47:34 +0000913 /*
914 Does resample area Miss the image?
915 And is that area a simple solid color - then return that color
916 */
917 hit = 0;
918 switch ( resample_filter->virtual_pixel ) {
919 case BackgroundVirtualPixelMethod:
920 case ConstantVirtualPixelMethod:
921 case TransparentVirtualPixelMethod:
922 case BlackVirtualPixelMethod:
923 case GrayVirtualPixelMethod:
924 case WhiteVirtualPixelMethod:
925 case MaskVirtualPixelMethod:
926 if ( resample_filter->limit_reached
anthonyd638d312010-09-15 13:13:01 +0000927 || u0 + resample_filter->Ulimit < 0.0
928 || u0 - resample_filter->Ulimit > (double) resample_filter->image->columns
929 || v0 + resample_filter->Vlimit < 0.0
930 || v0 - resample_filter->Vlimit > (double) resample_filter->image->rows
cristy3ed852e2009-09-05 21:47:34 +0000931 )
932 hit++;
933 break;
934
935 case UndefinedVirtualPixelMethod:
936 case EdgeVirtualPixelMethod:
anthonyd638d312010-09-15 13:13:01 +0000937 if ( ( u0 + resample_filter->Ulimit < 0.0 && v0 + resample_filter->Vlimit < 0.0 )
938 || ( u0 + resample_filter->Ulimit < 0.0
939 && v0 - resample_filter->Vlimit > (double) resample_filter->image->rows )
940 || ( u0 - resample_filter->Ulimit > (double) resample_filter->image->columns
941 && v0 + resample_filter->Vlimit < 0.0 )
942 || ( u0 - resample_filter->Ulimit > (double) resample_filter->image->columns
943 && v0 - resample_filter->Vlimit > (double) resample_filter->image->rows )
cristy3ed852e2009-09-05 21:47:34 +0000944 )
945 hit++;
946 break;
947 case HorizontalTileVirtualPixelMethod:
anthonyd638d312010-09-15 13:13:01 +0000948 if ( v0 + resample_filter->Vlimit < 0.0
949 || v0 - resample_filter->Vlimit > (double) resample_filter->image->rows
cristy3ed852e2009-09-05 21:47:34 +0000950 )
951 hit++; /* outside the horizontally tiled images. */
952 break;
953 case VerticalTileVirtualPixelMethod:
anthonyd638d312010-09-15 13:13:01 +0000954 if ( u0 + resample_filter->Ulimit < 0.0
955 || u0 - resample_filter->Ulimit > (double) resample_filter->image->columns
cristy3ed852e2009-09-05 21:47:34 +0000956 )
957 hit++; /* outside the vertically tiled images. */
958 break;
959 case DitherVirtualPixelMethod:
anthonyd638d312010-09-15 13:13:01 +0000960 if ( ( u0 + resample_filter->Ulimit < -32.0 && v0 + resample_filter->Vlimit < -32.0 )
961 || ( u0 + resample_filter->Ulimit < -32.0
962 && v0 - resample_filter->Vlimit > (double) resample_filter->image->rows+32.0 )
963 || ( u0 - resample_filter->Ulimit > (double) resample_filter->image->columns+32.0
964 && v0 + resample_filter->Vlimit < -32.0 )
965 || ( u0 - resample_filter->Ulimit > (double) resample_filter->image->columns+32.0
966 && v0 - resample_filter->Vlimit > (double) resample_filter->image->rows+32.0 )
cristy3ed852e2009-09-05 21:47:34 +0000967 )
968 hit++;
969 break;
970 case TileVirtualPixelMethod:
971 case MirrorVirtualPixelMethod:
972 case RandomVirtualPixelMethod:
973 case HorizontalTileEdgeVirtualPixelMethod:
974 case VerticalTileEdgeVirtualPixelMethod:
975 case CheckerTileVirtualPixelMethod:
976 /* resampling of area is always needed - no VP limits */
977 break;
978 }
979 if ( hit ) {
980 /* whole area is a solid color -- just return that color */
981 status=InterpolateResampleFilter(resample_filter,IntegerInterpolatePixel,
982 u0,v0,pixel);
983 return(status);
984 }
985
986 /*
987 Scaling limits reached, return an 'averaged' result.
988 */
989 if ( resample_filter->limit_reached ) {
990 switch ( resample_filter->virtual_pixel ) {
991 /* This is always handled by the above, so no need.
992 case BackgroundVirtualPixelMethod:
993 case ConstantVirtualPixelMethod:
994 case TransparentVirtualPixelMethod:
995 case GrayVirtualPixelMethod,
996 case WhiteVirtualPixelMethod
997 case MaskVirtualPixelMethod:
998 */
999 case UndefinedVirtualPixelMethod:
1000 case EdgeVirtualPixelMethod:
1001 case DitherVirtualPixelMethod:
1002 case HorizontalTileEdgeVirtualPixelMethod:
1003 case VerticalTileEdgeVirtualPixelMethod:
anthony9b8a5282010-09-15 07:48:39 +00001004 /* We need an average edge pixel, from the correct edge!
cristy3ed852e2009-09-05 21:47:34 +00001005 How should I calculate an average edge color?
1006 Just returning an averaged neighbourhood,
1007 works well in general, but falls down for TileEdge methods.
1008 This needs to be done properly!!!!!!
1009 */
1010 status=InterpolateResampleFilter(resample_filter,
1011 AverageInterpolatePixel,u0,v0,pixel);
1012 break;
1013 case HorizontalTileVirtualPixelMethod:
1014 case VerticalTileVirtualPixelMethod:
1015 /* just return the background pixel - Is there more direct way? */
1016 status=InterpolateResampleFilter(resample_filter,
1017 IntegerInterpolatePixel,(double)-1,(double)-1,pixel);
1018 break;
1019 case TileVirtualPixelMethod:
1020 case MirrorVirtualPixelMethod:
1021 case RandomVirtualPixelMethod:
1022 case CheckerTileVirtualPixelMethod:
1023 default:
1024 /* generate a average color of the WHOLE image */
1025 if ( resample_filter->average_defined == MagickFalse ) {
1026 Image
1027 *average_image;
1028
1029 CacheView
1030 *average_view;
1031
cristy065f8be2010-10-16 00:21:58 +00001032 GetMagickPixelPacket(resample_filter->image,(MagickPixelPacket *)
1033 &resample_filter->average_pixel);
1034 resample_filter->average_defined=MagickTrue;
cristy3ed852e2009-09-05 21:47:34 +00001035
1036 /* Try to get an averaged pixel color of whole image */
cristy065f8be2010-10-16 00:21:58 +00001037 average_image=ResizeImage(resample_filter->image,1,1,BoxFilter,1.0,
1038 resample_filter->exception);
cristy3ed852e2009-09-05 21:47:34 +00001039 if (average_image == (Image *) NULL)
1040 {
1041 *pixel=resample_filter->average_pixel; /* FAILED */
1042 break;
1043 }
1044 average_view=AcquireCacheView(average_image);
1045 pixels=(PixelPacket *)GetCacheViewVirtualPixels(average_view,0,0,1,1,
1046 resample_filter->exception);
1047 if (pixels == (const PixelPacket *) NULL) {
1048 average_view=DestroyCacheView(average_view);
1049 average_image=DestroyImage(average_image);
1050 *pixel=resample_filter->average_pixel; /* FAILED */
1051 break;
1052 }
1053 indexes=(IndexPacket *) GetCacheViewAuthenticIndexQueue(average_view);
1054 SetMagickPixelPacket(resample_filter->image,pixels,indexes,
1055 &(resample_filter->average_pixel));
1056 average_view=DestroyCacheView(average_view);
1057 average_image=DestroyImage(average_image);
anthony490ab032010-09-20 00:02:08 +00001058
1059 if ( resample_filter->virtual_pixel == CheckerTileVirtualPixelMethod )
1060 {
1061 /* CheckerTile is avergae of image average half background */
1062 /* FUTURE: replace with a 50% blend of both pixels */
1063
1064 weight = QuantumScale*((MagickRealType)(QuantumRange-
1065 resample_filter->average_pixel.opacity));
1066 resample_filter->average_pixel.red *= weight;
1067 resample_filter->average_pixel.green *= weight;
1068 resample_filter->average_pixel.blue *= weight;
1069 divisor_c = weight;
1070
1071 weight = QuantumScale*((MagickRealType)(QuantumRange-
1072 resample_filter->image->background_color.opacity));
1073 resample_filter->average_pixel.red +=
1074 weight*resample_filter->image->background_color.red;
1075 resample_filter->average_pixel.green +=
1076 weight*resample_filter->image->background_color.green;
1077 resample_filter->average_pixel.blue +=
1078 weight*resample_filter->image->background_color.blue;
cristybb66d9c2010-10-09 01:40:31 +00001079 resample_filter->average_pixel.opacity +=
anthony490ab032010-09-20 00:02:08 +00001080 resample_filter->image->background_color.opacity;
1081 divisor_c += weight;
1082
1083 resample_filter->average_pixel.red /= divisor_c;
1084 resample_filter->average_pixel.green /= divisor_c;
1085 resample_filter->average_pixel.blue /= divisor_c;
cristybb66d9c2010-10-09 01:40:31 +00001086 resample_filter->average_pixel.opacity /= 2;
anthony490ab032010-09-20 00:02:08 +00001087
1088 }
cristy3ed852e2009-09-05 21:47:34 +00001089 }
1090 *pixel=resample_filter->average_pixel;
1091 break;
1092 }
1093 return(status);
1094 }
1095
1096 /*
1097 Initialize weighted average data collection
1098 */
1099 hit = 0;
1100 divisor_c = 0.0;
1101 divisor_m = 0.0;
1102 pixel->red = pixel->green = pixel->blue = 0.0;
1103 if (resample_filter->image->matte != MagickFalse) pixel->opacity = 0.0;
1104 if (resample_filter->image->colorspace == CMYKColorspace) pixel->index = 0.0;
1105
1106 /*
1107 Determine the parellelogram bounding box fitted to the ellipse
1108 centered at u0,v0. This area is bounding by the lines...
cristy3ed852e2009-09-05 21:47:34 +00001109 */
anthony490ab032010-09-20 00:02:08 +00001110 v1 = (ssize_t)ceil(v0 - resample_filter->Vlimit); /* range of scan lines */
1111 v2 = (ssize_t)floor(v0 + resample_filter->Vlimit);
cristy3ed852e2009-09-05 21:47:34 +00001112
anthony490ab032010-09-20 00:02:08 +00001113 /* scan line start and width accross the parallelogram */
1114 u1 = u0 + (v1-v0)*resample_filter->slope - resample_filter->Uwidth;
1115 uw = (ssize_t)(2.0*resample_filter->Uwidth)+1;
1116
1117#if DEBUG_ELLIPSE
1118 fprintf(stderr, "v1=%ld; v2=%ld\n", (long)v1, (long)v2);
1119 fprintf(stderr, "u1=%ld; uw=%ld\n", (long)u1, (long)uw);
1120#else
1121# define DEBUG_HIT_MISS 0 /* only valid if DEBUG_ELLIPSE is enabled */
1122#endif
cristy3ed852e2009-09-05 21:47:34 +00001123
1124 /*
1125 Do weighted resampling of all pixels, within the scaled ellipse,
1126 bound by a Parellelogram fitted to the ellipse.
1127 */
1128 DDQ = 2*resample_filter->A;
anthony490ab032010-09-20 00:02:08 +00001129 for( v=v1; v<=v2; v++ ) {
1130#if DEBUG_HIT_MISS
1131 long uu = ceil(u1); /* actual pixel location (for debug only) */
1132 fprintf(stderr, "# scan line from pixel %ld, %ld\n", (long)uu, (long)v);
1133#endif
1134 u = (ssize_t)ceil(u1); /* first pixel in scanline */
1135 u1 += resample_filter->slope; /* start of next scan line */
1136
1137
1138 /* location of this first pixel, relative to u0,v0 */
1139 U = (double)u-u0;
cristy3ed852e2009-09-05 21:47:34 +00001140 V = (double)v-v0;
1141
1142 /* Q = ellipse quotent ( if Q<F then pixel is inside ellipse) */
anthony490ab032010-09-20 00:02:08 +00001143 Q = (resample_filter->A*U + resample_filter->B*V)*U + resample_filter->C*V*V;
cristy3ed852e2009-09-05 21:47:34 +00001144 DQ = resample_filter->A*(2.0*U+1) + resample_filter->B*V;
1145
1146 /* get the scanline of pixels for this v */
cristybb503372010-05-27 20:51:26 +00001147 pixels=GetCacheViewVirtualPixels(resample_filter->view,u,v,(size_t) uw,
cristy3ed852e2009-09-05 21:47:34 +00001148 1,resample_filter->exception);
1149 if (pixels == (const PixelPacket *) NULL)
1150 return(MagickFalse);
1151 indexes=GetCacheViewVirtualIndexQueue(resample_filter->view);
1152
1153 /* count up the weighted pixel colors */
1154 for( u=0; u<uw; u++ ) {
anthony5b697cd2010-10-10 03:48:57 +00001155#if FILTER_LUT
cristy3ed852e2009-09-05 21:47:34 +00001156 /* Note that the ellipse has been pre-scaled so F = WLUT_WIDTH */
1157 if ( Q < (double)WLUT_WIDTH ) {
1158 weight = resample_filter->filter_lut[(int)Q];
anthony5b697cd2010-10-10 03:48:57 +00001159#else
1160 /* Note that the ellipse has been pre-scaled so F = support^2 */
anthony582b6d72010-10-10 06:45:41 +00001161 if ( Q < (double)resample_filter->F ) {
1162 weight = GetResizeFilterWeight(resample_filter->filter_def,
1163 sqrt(Q)); /* a SquareRoot! Arrggghhhhh... */
anthony5b697cd2010-10-10 03:48:57 +00001164#endif
cristy3ed852e2009-09-05 21:47:34 +00001165
1166 pixel->opacity += weight*pixels->opacity;
1167 divisor_m += weight;
1168
1169 if (resample_filter->image->matte != MagickFalse)
1170 weight *= QuantumScale*((MagickRealType)(QuantumRange-pixels->opacity));
1171 pixel->red += weight*pixels->red;
1172 pixel->green += weight*pixels->green;
1173 pixel->blue += weight*pixels->blue;
1174 if (resample_filter->image->colorspace == CMYKColorspace)
1175 pixel->index += weight*(*indexes);
1176 divisor_c += weight;
1177
1178 hit++;
anthony490ab032010-09-20 00:02:08 +00001179#if DEBUG_HIT_MISS
1180 /* mark the pixel according to hit/miss of the ellipse */
1181 fprintf(stderr, "set arrow from %lf,%lf to %lf,%lf nohead ls 3\n",
1182 (long)uu-.1,(double)v-.1,(long)uu+.1,(long)v+.1);
1183 fprintf(stderr, "set arrow from %lf,%lf to %lf,%lf nohead ls 3\n",
1184 (long)uu+.1,(double)v-.1,(long)uu-.1,(long)v+.1);
1185 } else {
1186 fprintf(stderr, "set arrow from %lf,%lf to %lf,%lf nohead ls 1\n",
1187 (long)uu-.1,(double)v-.1,(long)uu+.1,(long)v+.1);
1188 fprintf(stderr, "set arrow from %lf,%lf to %lf,%lf nohead ls 1\n",
1189 (long)uu+.1,(double)v-.1,(long)uu-.1,(long)v+.1);
cristy3ed852e2009-09-05 21:47:34 +00001190 }
anthony490ab032010-09-20 00:02:08 +00001191 uu++;
1192#else
1193 }
1194#endif
cristy3ed852e2009-09-05 21:47:34 +00001195 pixels++;
1196 indexes++;
1197 Q += DQ;
1198 DQ += DDQ;
1199 }
1200 }
anthony490ab032010-09-20 00:02:08 +00001201#if DEBUG_ELLIPSE
1202 fprintf(stderr, "Hit=%ld; Total=%ld;\n", (long)hit, (long)uw*(v2-v1) );
1203#endif
cristy3ed852e2009-09-05 21:47:34 +00001204
1205 /*
1206 Result sanity check -- this should NOT happen
1207 */
anthony490ab032010-09-20 00:02:08 +00001208 if ( hit == 0 ) {
cristy3ed852e2009-09-05 21:47:34 +00001209 /* not enough pixels in resampling, resort to direct interpolation */
anthony490ab032010-09-20 00:02:08 +00001210#if DEBUG_NO_PIXEL_HIT
anthony9b8a5282010-09-15 07:48:39 +00001211 pixel->opacity = pixel->red = pixel->green = pixel->blue = 0;
1212 pixel->red = QuantumRange; /* show pixels for which EWA fails */
1213#else
cristy3ed852e2009-09-05 21:47:34 +00001214 status=InterpolateResampleFilter(resample_filter,
1215 resample_filter->interpolate,u0,v0,pixel);
anthony9b8a5282010-09-15 07:48:39 +00001216#endif
cristy3ed852e2009-09-05 21:47:34 +00001217 return status;
1218 }
1219
1220 /*
1221 Finialize results of resampling
1222 */
1223 divisor_m = 1.0/divisor_m;
cristyce70c172010-01-07 17:15:30 +00001224 pixel->opacity = (MagickRealType) ClampToQuantum(divisor_m*pixel->opacity);
cristy3ed852e2009-09-05 21:47:34 +00001225 divisor_c = 1.0/divisor_c;
cristyce70c172010-01-07 17:15:30 +00001226 pixel->red = (MagickRealType) ClampToQuantum(divisor_c*pixel->red);
1227 pixel->green = (MagickRealType) ClampToQuantum(divisor_c*pixel->green);
1228 pixel->blue = (MagickRealType) ClampToQuantum(divisor_c*pixel->blue);
cristy3ed852e2009-09-05 21:47:34 +00001229 if (resample_filter->image->colorspace == CMYKColorspace)
cristyce70c172010-01-07 17:15:30 +00001230 pixel->index = (MagickRealType) ClampToQuantum(divisor_c*pixel->index);
cristy3ed852e2009-09-05 21:47:34 +00001231 return(MagickTrue);
1232}
1233
anthonyc7b82f22010-09-27 10:42:29 +00001234#if EWA && EWA_CLAMP
1235/*
1236%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1237% %
1238% %
1239% %
1240- C l a m p U p A x e s %
1241% %
1242% %
1243% %
1244%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1245%
nicolasc90935c2010-09-27 16:47:39 +00001246% ClampUpAxes() function converts the input vectors into a major and
1247% minor axis unit vectors, and their magnatude. This form allows us
1248% to ensure that the ellipse generated is never smaller than the unit
1249% circle and thus never too small for use in EWA resampling.
anthonyc7b82f22010-09-27 10:42:29 +00001250%
nicolasc90935c2010-09-27 16:47:39 +00001251% This purely mathematical 'magic' was provided by Professor Nicolas
1252% Robidoux and his Masters student Chantal Racette.
anthonyc7b82f22010-09-27 10:42:29 +00001253%
1254% See Reference: "We Recommend Singular Value Decomposition", David Austin
1255% http://www.ams.org/samplings/feature-column/fcarc-svd
1256%
nicolasc90935c2010-09-27 16:47:39 +00001257% By generating Major and Minor Axis vectors, we can actually use the
1258% ellipse in its "canonical form", by remapping the dx,dy of the
1259% sampled point into distances along the major and minor axis unit
1260% vectors.
anthonyc7b82f22010-09-27 10:42:29 +00001261% http://en.wikipedia.org/wiki/Ellipse#Canonical_form
anthonyc7b82f22010-09-27 10:42:29 +00001262*/
nicolas15c331b2010-09-29 19:05:00 +00001263static inline void ClampUpAxes(const double dux,
1264 const double dvx,
1265 const double duy,
1266 const double dvy,
1267 double *major_mag,
1268 double *minor_mag,
1269 double *major_unit_x,
1270 double *major_unit_y,
1271 double *minor_unit_x,
1272 double *minor_unit_y)
anthonyc7b82f22010-09-27 10:42:29 +00001273{
1274 /*
1275 * ClampUpAxes takes an input 2x2 matrix
1276 *
1277 * [ a b ] = [ dux duy ]
1278 * [ c d ] = [ dvx dvy ]
1279 *
1280 * and computes from it the major and minor axis vectors [major_x,
1281 * major_y] and [minor_x,minor_y] of the smallest ellipse containing
1282 * both the unit disk and the ellipse which is the image of the unit
1283 * disk by the linear transformation
1284 *
1285 * [ dux duy ] [S] = [s]
1286 * [ dvx dvy ] [T] = [t]
1287 *
1288 * (The vector [S,T] is the difference between a position in output
1289 * space and [X,Y]; the vector [s,t] is the difference between a
1290 * position in input space and [x,y].)
1291 */
1292 /*
1293 * Outputs:
1294 *
1295 * major_mag is the half-length of the major axis of the "new"
1296 * ellipse (in input space).
1297 *
1298 * minor_mag is the half-length of the minor axis of the "new"
1299 * ellipse (in input space).
1300 *
1301 * major_unit_x is the x-coordinate of the major axis direction vector
1302 * of both the "old" and "new" ellipses.
1303 *
1304 * major_unit_y is the y-coordinate of the major axis direction vector.
1305 *
1306 * minor_unit_x is the x-coordinate of the minor axis direction vector.
1307 *
1308 * minor_unit_y is the y-coordinate of the minor axis direction vector.
1309 *
1310 * Unit vectors are useful for computing projections, in particular,
1311 * to compute the distance between a point in output space and the
1312 * center (of a disk) from the position of the corresponding point
1313 * in input space.
nicolasc90935c2010-09-27 16:47:39 +00001314 *
1315 * Now, if you want to modify the input pair of tangent vectors so
1316 * that it defines the modified ellipse, all you have to do is set
1317 *
nicolas8b1d9812010-09-29 18:41:55 +00001318 * newdux = major_mag * major_unit_x
1319 * newdvx = major_mag * major_unit_y
1320 * newduy = minor_mag * minor_unit_x = minor_mag * -major_unit_y
1321 * newdvy = minor_mag * minor_unit_y = minor_mag * major_unit_x
nicolasc90935c2010-09-27 16:47:39 +00001322 *
1323 * and use these new tangent vectors "as if" they were the original
1324 * ones. Most of the time this is a rather drastic change in the
1325 * tangent vectors (even if the singular values are large enough not
1326 * to be clampled). A technical explanation of why things still work
1327 * is found at the end of the discussion below.
1328 *
anthonyc7b82f22010-09-27 10:42:29 +00001329 */
1330 /*
1331 * Discussion:
1332 *
1333 * GOAL: Fix things so that the pullback, in input space, of a disk
1334 * of radius r in output space is an ellipse which contains, at
1335 * least, a disc of radius r. (Make this hold for any r>0.)
1336 *
1337 * METHOD: Find the singular values and (unit) left singular vectors
1338 * of Jinv, clampling up the singular values to 1, and multiplying
1339 * the unit left singular vectors by the new singular values in
1340 * order to get the minor and major ellipse axis vectors.
1341 *
1342 * Inputs:
1343 *
1344 * The Jacobian matrix of the transformation at the output point
1345 * under consideration is defined as follows:
1346 *
1347 * Consider the transformation (x,y) -> (X,Y) from input locations
nicolas8b1d9812010-09-29 18:41:55 +00001348 * to output locations. (Anthony Thyssen, elsewhere in resample.c,
1349 * uses the notation (u,v) -> (x,y) instead of (x,y) -> (X,Y).)
anthonyc7b82f22010-09-27 10:42:29 +00001350 *
1351 * The Jacobian matrix J is equal to
1352 *
nicolasc90935c2010-09-27 16:47:39 +00001353 * [ A, B ] = [ dX/dx, dX/dy ]
1354 * [ C, D ] = [ dY/dx, dY/dy ]
anthonyc7b82f22010-09-27 10:42:29 +00001355 *
1356 * Consequently, the vector [A,C] is the tangent vector
1357 * corresponding to input changes in the horizontal direction, and
1358 * the vector [B,D] is the tangent vector corresponding to input
1359 * changes in the vertical direction.
1360 *
1361 * In the context of resampling, it is more natural to use the
1362 * inverse Jacobian matrix Jinv. Jinv is
1363 *
nicolasc90935c2010-09-27 16:47:39 +00001364 * [ a, b ] = [ dx/dX, dx/dY ]
1365 * [ c, d ] = [ dy/dX, dy/dY ]
anthonyc7b82f22010-09-27 10:42:29 +00001366 *
1367 * Note: Jinv can be computed from J with the following matrix
1368 * formula:
1369 *
nicolasc90935c2010-09-27 16:47:39 +00001370 * Jinv = 1/(A*D-B*C) [ D, -B ]
1371 * [ -C, A ]
1372 *
nicolas703291a2010-09-27 18:21:32 +00001373 * What we (implicitly) want to do is replace Jinv by a new Jinv
nicolasc90935c2010-09-27 16:47:39 +00001374 * which generates an ellipse which is as close as possible to the
nicolas703291a2010-09-27 18:21:32 +00001375 * original but which contains the unit disk. This is accomplished
1376 * as follows:
nicolasc90935c2010-09-27 16:47:39 +00001377 *
1378 * Let
1379 *
1380 * Jinv = U Sigma V^T
1381 *
nicolas703291a2010-09-27 18:21:32 +00001382 * be an SVD decomposition of Jinv. (The SVD is not unique. The
1383 * final ellipse does not depend on the particular SVD.) In
nicolasc90935c2010-09-27 16:47:39 +00001384 * principle, what we want is to clamp up the entries of the
1385 * diagonal matrix Sigma so that they are at least 1, and then set
1386 *
1387 * Jinv = U newSigma V^T.
1388 *
1389 * However, we do not need to compute V^T for the following reason:
1390 * V is an orthogonal matrix (that is, it represents a combination
1391 * of a rotation and a reflexion). Consequently, V maps the unit
1392 * circle to itself. For this reason, the exact value of V does not
nicolas703291a2010-09-27 18:21:32 +00001393 * affect the final ellipse, and we choose the identity matrix.
1394 * That is, we simply set
nicolasc90935c2010-09-27 16:47:39 +00001395 *
1396 * Jinv = U newSigma,
1397 *
nicolas703291a2010-09-27 18:21:32 +00001398 * omitting the V^T factor altogether. In the end, we return the two
1399 * diagonal entries of newSigma together with the two columns of U,
1400 * for a total of six returned quantities.
anthonyc7b82f22010-09-27 10:42:29 +00001401 */
1402 /*
1403 * ClampUpAxes was written by Nicolas Robidoux and Chantal Racette
nicolasc90935c2010-09-27 16:47:39 +00001404 * of Laurentian University with funding from the National Science
1405 * and Engineering Research Council of Canada.
nicolas703291a2010-09-27 18:21:32 +00001406 *
nicolas553b36e2010-09-27 18:23:16 +00001407 * The idea of using the SVD to clamp the singular values of the
1408 * linear part of the affine approximation of the pullback
1409 * transformation comes from the astrophysicist Craig DeForest, who
1410 * implemented it for use with (approximate) Gaussian filtering in
nicolas8b1d9812010-09-29 18:41:55 +00001411 * his PDL::Transform code (PDL = Perl Data Language).
nicolas703291a2010-09-27 18:21:32 +00001412 *
1413 * The only (possibly) new math in the following is the selection of
1414 * the largest row of the eigen matrix system in order to stabilize
1415 * the computation in near rank-deficient cases, and the
1416 * corresponding efficient repair of degenerate cases using the norm
1417 * of this largest row. Omitting the "V^T" factor of the SVD may
1418 * also be a new "trick."
anthonyc7b82f22010-09-27 10:42:29 +00001419 */
1420 const double a = dux;
1421 const double b = duy;
1422 const double c = dvx;
1423 const double d = dvy;
1424 /*
1425 * n is the matrix Jinv * transpose(Jinv). Eigenvalues of n are the
1426 * squares of the singular values of Jinv.
1427 */
1428 const double aa = a*a;
1429 const double bb = b*b;
1430 const double cc = c*c;
1431 const double dd = d*d;
1432 /*
1433 * Eigenvectors of n are left singular vectors of Jinv.
1434 */
1435 const double n11 = aa+bb;
1436 const double n12 = a*c+b*d;
1437 const double n21 = n12;
1438 const double n22 = cc+dd;
1439 const double det = a*d-b*c;
1440 const double twice_det = det+det;
1441 const double frobenius_squared = n11+n22;
1442 const double discriminant =
1443 (frobenius_squared+twice_det)*(frobenius_squared-twice_det);
1444 const double sqrt_discriminant = sqrt(discriminant);
1445 /*
1446 * s1 is the largest singular value of the inverse Jacobian
1447 * matrix. In other words, its reciprocal is the smallest singular
1448 * value of the Jacobian matrix itself.
1449 * If s1 = 0, both singular values are 0, and any orthogonal pair of
1450 * left and right factors produces a singular decomposition of Jinv.
nicolasc90935c2010-09-27 16:47:39 +00001451 */
1452 /*
nicolas8b1d9812010-09-29 18:41:55 +00001453 * Initially, we only compute the squares of the singular values.
anthonyc7b82f22010-09-27 10:42:29 +00001454 */
1455 const double s1s1 = 0.5*(frobenius_squared+sqrt_discriminant);
1456 /*
1457 * s2 the smallest singular value of the inverse Jacobian
1458 * matrix. Its reciprocal is the largest singular value of the
1459 * Jacobian matrix itself.
1460 */
1461 const double s2s2 = 0.5*(frobenius_squared-sqrt_discriminant);
1462 const double s1s1minusn11 = s1s1-n11;
1463 const double s1s1minusn22 = s1s1-n22;
1464 /*
1465 * u1, the first column of the U factor of a singular decomposition
1466 * of Jinv, is a (non-normalized) left singular vector corresponding
nicolasc90935c2010-09-27 16:47:39 +00001467 * to s1. It has entries u11 and u21. We compute u1 from the fact
1468 * that it is an eigenvector of n corresponding to the eigenvalue
1469 * s1^2.
anthonyc7b82f22010-09-27 10:42:29 +00001470 */
1471 const double s1s1minusn11_squared = s1s1minusn11*s1s1minusn11;
1472 const double s1s1minusn22_squared = s1s1minusn22*s1s1minusn22;
1473 /*
1474 * The following selects the largest row of n-s1^2 I as the one
1475 * which is used to find the eigenvector. If both s1^2-n11 and
1476 * s1^2-n22 are zero, n-s1^2 I is the zero matrix. In that case,
1477 * any vector is an eigenvector; in addition, norm below is equal to
1478 * zero, and, in exact arithmetic, this is the only case in which
1479 * norm = 0. So, setting u1 to the simple but arbitrary vector [1,0]
1480 * if norm = 0 safely takes care of all cases.
1481 */
1482 const double temp_u11 =
1483 ( (s1s1minusn11_squared>=s1s1minusn22_squared) ? n12 : s1s1minusn22 );
1484 const double temp_u21 =
1485 ( (s1s1minusn11_squared>=s1s1minusn22_squared) ? s1s1minusn11 : n21 );
1486 const double norm = sqrt(temp_u11*temp_u11+temp_u21*temp_u21);
1487 /*
1488 * Finalize the entries of first left singular vector (associated
1489 * with the largest singular value).
1490 */
1491 const double u11 = ( (norm>0.0) ? temp_u11/norm : 1.0 );
1492 const double u21 = ( (norm>0.0) ? temp_u21/norm : 0.0 );
1493 /*
1494 * Clamp the singular values up to 1.
1495 */
nicolased227212010-09-27 17:24:57 +00001496 *major_mag = ( (s1s1<=1.0) ? 1.0 : sqrt(s1s1) );
1497 *minor_mag = ( (s2s2<=1.0) ? 1.0 : sqrt(s2s2) );
nicolasc90935c2010-09-27 16:47:39 +00001498 /*
1499 * Return the unit major and minor axis direction vectors.
1500 */
anthonyc7b82f22010-09-27 10:42:29 +00001501 *major_unit_x = u11;
1502 *major_unit_y = u21;
nicolasc90935c2010-09-27 16:47:39 +00001503 *minor_unit_x = -u21;
1504 *minor_unit_y = u11;
anthonyc7b82f22010-09-27 10:42:29 +00001505}
1506
1507#endif
cristy3ed852e2009-09-05 21:47:34 +00001508/*
1509%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1510% %
1511% %
1512% %
1513% S c a l e R e s a m p l e F i l t e r %
1514% %
1515% %
1516% %
1517%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1518%
1519% ScaleResampleFilter() does all the calculations needed to resample an image
1520% at a specific scale, defined by two scaling vectors. This not using
1521% a orthogonal scaling, but two distorted scaling vectors, to allow the
1522% generation of a angled ellipse.
1523%
1524% As only two deritive scaling vectors are used the center of the ellipse
1525% must be the center of the lookup. That is any curvature that the
1526% distortion may produce is discounted.
1527%
1528% The input vectors are produced by either finding the derivitives of the
1529% distortion function, or the partial derivitives from a distortion mapping.
1530% They do not need to be the orthogonal dx,dy scaling vectors, but can be
1531% calculated from other derivatives. For example you could use dr,da/r
1532% polar coordinate vector scaling vectors
1533%
anthonyc7b82f22010-09-27 10:42:29 +00001534% If u,v = DistortEquation(x,y) OR u = Fu(x,y); v = Fv(x,y)
1535% Then the scaling vectors are determined from the deritives...
cristy3ed852e2009-09-05 21:47:34 +00001536% du/dx, dv/dx and du/dy, dv/dy
anthonyc7b82f22010-09-27 10:42:29 +00001537% If the resulting scaling vectors is othogonally aligned then...
cristy3ed852e2009-09-05 21:47:34 +00001538% dv/dx = 0 and du/dy = 0
anthonyc7b82f22010-09-27 10:42:29 +00001539% Producing an othogonally alligned ellipse in source space for the area to
1540% be resampled.
cristy3ed852e2009-09-05 21:47:34 +00001541%
1542% Note that scaling vectors are different to argument order. Argument order
1543% is the general order the deritives are extracted from the distortion
anthonyc7b82f22010-09-27 10:42:29 +00001544% equations, and not the scaling vectors. As such the middle two vaules
1545% may be swapped from what you expect. Caution is advised.
cristy3ed852e2009-09-05 21:47:34 +00001546%
anthony3ebea1e2010-09-27 13:29:00 +00001547% WARNING: It is assumed that any SetResampleFilter() method call will
1548% always be performed before the ScaleResampleFilter() method, so that the
1549% size of the ellipse will match the support for the resampling filter being
1550% used.
anthony490ab032010-09-20 00:02:08 +00001551%
cristy3ed852e2009-09-05 21:47:34 +00001552% The format of the ScaleResampleFilter method is:
1553%
1554% void ScaleResampleFilter(const ResampleFilter *resample_filter,
1555% const double dux,const double duy,const double dvx,const double dvy)
1556%
1557% A description of each parameter follows:
1558%
1559% o resample_filter: the resampling resample_filterrmation defining the
1560% image being resampled
1561%
1562% o dux,duy,dvx,dvy:
anthonyc7b82f22010-09-27 10:42:29 +00001563% The deritives or scaling vectors defining the EWA ellipse.
1564% NOTE: watch the order, which is based on the order deritives
1565% are usally determined from distortion equations (see above).
1566% The middle two values may need to be swapped if you are thinking
1567% in terms of scaling vectors.
cristy3ed852e2009-09-05 21:47:34 +00001568%
1569*/
1570MagickExport void ScaleResampleFilter(ResampleFilter *resample_filter,
1571 const double dux,const double duy,const double dvx,const double dvy)
1572{
anthonyd638d312010-09-15 13:13:01 +00001573 double A,B,C,F;
cristy3ed852e2009-09-05 21:47:34 +00001574
1575 assert(resample_filter != (ResampleFilter *) NULL);
1576 assert(resample_filter->signature == MagickSignature);
1577
1578 resample_filter->limit_reached = MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00001579
anthonyb821aaf2010-09-27 13:21:08 +00001580 /* A 'point' filter forces use of interpolation instead of area sampling */
1581 if ( resample_filter->filter == PointFilter )
1582 return; /* EWA turned off - nothing to do */
1583
anthonyc7b82f22010-09-27 10:42:29 +00001584#if DEBUG_ELLIPSE
1585 fprintf(stderr, "# -----\n" );
1586 fprintf(stderr, "dux=%lf; dvx=%lf; duy=%lf; dvy=%lf;\n",
1587 dux, dvx, duy, dvy);
1588#endif
cristy3ed852e2009-09-05 21:47:34 +00001589
1590 /* Find Ellipse Coefficents such that
1591 A*u^2 + B*u*v + C*v^2 = F
1592 With u,v relative to point around which we are resampling.
1593 And the given scaling dx,dy vectors in u,v space
1594 du/dx,dv/dx and du/dy,dv/dy
1595 */
anthonyc7b82f22010-09-27 10:42:29 +00001596#if EWA
anthonyd638d312010-09-15 13:13:01 +00001597 /* Direct conversion of derivatives into elliptical coefficients
anthonyb821aaf2010-09-27 13:21:08 +00001598 However when magnifying images, the scaling vectors will be small
1599 resulting in a ellipse that is too small to sample properly.
1600 As such we need to clamp the major/minor axis to a minumum of 1.0
1601 to prevent it getting too small.
cristy3ed852e2009-09-05 21:47:34 +00001602 */
anthonyc7b82f22010-09-27 10:42:29 +00001603#if EWA_CLAMP
1604 { double major_mag,
1605 minor_mag,
1606 major_x,
1607 major_y,
1608 minor_x,
1609 minor_y;
1610
1611 ClampUpAxes(dux,dvx,duy,dvy, &major_mag, &minor_mag,
1612 &major_x, &major_y, &minor_x, &minor_y);
anthonybdfddb02010-10-05 00:06:45 +00001613 major_x *= major_mag; major_y *= major_mag;
1614 minor_x *= minor_mag; minor_y *= minor_mag;
anthonyc7b82f22010-09-27 10:42:29 +00001615#if DEBUG_ELLIPSE
1616 fprintf(stderr, "major_x=%lf; major_y=%lf; minor_x=%lf; minor_y=%lf;\n",
1617 major_x, major_y, minor_x, minor_y);
1618#endif
1619 A = major_y*major_y+minor_y*minor_y;
1620 B = -2.0*(major_x*major_y+minor_x*minor_y);
1621 C = major_x*major_x+minor_x*minor_x;
nicolaseaa08622010-09-27 17:06:09 +00001622 F = major_mag*minor_mag;
anthonyc7b82f22010-09-27 10:42:29 +00001623 F *= F; /* square it */
1624 }
anthony5b697cd2010-10-10 03:48:57 +00001625#else /* raw unclamped EWA */
cristy3ed852e2009-09-05 21:47:34 +00001626 A = dvx*dvx+dvy*dvy;
anthonyd638d312010-09-15 13:13:01 +00001627 B = -2.0*(dux*dvx+duy*dvy);
cristy3ed852e2009-09-05 21:47:34 +00001628 C = dux*dux+duy*duy;
anthonyc7b82f22010-09-27 10:42:29 +00001629 F = dux*dvy-duy*dvx;
anthony5708fc62010-09-14 13:52:50 +00001630 F *= F; /* square it */
anthony5b697cd2010-10-10 03:48:57 +00001631#endif /* EWA_CLAMP */
anthonyd638d312010-09-15 13:13:01 +00001632
anthony490ab032010-09-20 00:02:08 +00001633#else /* HQ_EWA */
anthonyd638d312010-09-15 13:13:01 +00001634 /*
anthonyc7b82f22010-09-27 10:42:29 +00001635 This Paul Heckbert's "Higher Quality EWA" formula, from page 60 in his
1636 thesis, which adds a unit circle to the elliptical area so as to do both
1637 Reconstruction and Prefiltering of the pixels in the resampling. It also
1638 means it is always likely to have at least 4 pixels within the area of the
1639 ellipse, for weighted averaging. No scaling will result with F == 4.0 and
1640 a circle of radius 2.0, and F smaller than this means magnification is
1641 being used.
anthony490ab032010-09-20 00:02:08 +00001642
anthonyc7b82f22010-09-27 10:42:29 +00001643 NOTE: This method produces a very blury result at near unity scale while
anthonybdfddb02010-10-05 00:06:45 +00001644 producing perfect results for strong minitification and magnifications.
anthony490ab032010-09-20 00:02:08 +00001645
anthonyc7b82f22010-09-27 10:42:29 +00001646 However filter support is fixed to 2.0 (no good for Windowed Sinc filters)
cristy3ed852e2009-09-05 21:47:34 +00001647 */
1648 A = dvx*dvx+dvy*dvy+1;
anthonyd638d312010-09-15 13:13:01 +00001649 B = -2.0*(dux*dvx+duy*dvy);
cristy3ed852e2009-09-05 21:47:34 +00001650 C = dux*dux+duy*duy+1;
1651 F = A*C - B*B/4;
cristy3ed852e2009-09-05 21:47:34 +00001652#endif
1653
anthony490ab032010-09-20 00:02:08 +00001654#if DEBUG_ELLIPSE
cristy3ed852e2009-09-05 21:47:34 +00001655 fprintf(stderr, "A=%lf; B=%lf; C=%lf; F=%lf\n", A,B,C,F);
cristy3ed852e2009-09-05 21:47:34 +00001656
anthonyc7b82f22010-09-27 10:42:29 +00001657 /* Figure out the various information directly about the ellipse.
cristy3ed852e2009-09-05 21:47:34 +00001658 This information currently not needed at this time, but may be
1659 needed later for better limit determination.
anthonyd638d312010-09-15 13:13:01 +00001660
1661 It is also good to have as a record for future debugging
cristy3ed852e2009-09-05 21:47:34 +00001662 */
1663 { double alpha, beta, gamma, Major, Minor;
anthony490ab032010-09-20 00:02:08 +00001664 double Eccentricity, Ellipse_Area, Ellipse_Angle;
anthonyd638d312010-09-15 13:13:01 +00001665
cristy3ed852e2009-09-05 21:47:34 +00001666 alpha = A+C;
1667 beta = A-C;
1668 gamma = sqrt(beta*beta + B*B );
1669
1670 if ( alpha - gamma <= MagickEpsilon )
1671 Major = MagickHuge;
1672 else
1673 Major = sqrt(2*F/(alpha - gamma));
1674 Minor = sqrt(2*F/(alpha + gamma));
1675
anthony490ab032010-09-20 00:02:08 +00001676 fprintf(stderr, "# Major=%lf; Minor=%lf\n", Major, Minor );
cristy3ed852e2009-09-05 21:47:34 +00001677
1678 /* other information about ellipse include... */
1679 Eccentricity = Major/Minor;
1680 Ellipse_Area = MagickPI*Major*Minor;
nicolase2ecb242010-09-29 20:02:24 +00001681 Ellipse_Angle = atan2(B, A-C);
cristy3ed852e2009-09-05 21:47:34 +00001682
anthonyc7b82f22010-09-27 10:42:29 +00001683 fprintf(stderr, "# Angle=%lf Area=%lf\n",
nicolase2ecb242010-09-29 20:02:24 +00001684 RadiansToDegrees(Ellipse_Angle), Ellipse_Area);
cristy3ed852e2009-09-05 21:47:34 +00001685 }
1686#endif
1687
nicolas15c331b2010-09-29 19:05:00 +00001688 /* If one or both of the scaling vectors is impossibly large
1689 (producing a very large raw F value), we may as well not bother
1690 doing any form of resampling since resampled area is very large.
1691 In this case some alternative means of pixel sampling, such as
1692 the average of the whole image is needed to get a reasonable
1693 result. Calculate only as needed.
cristy3ed852e2009-09-05 21:47:34 +00001694 */
anthony490ab032010-09-20 00:02:08 +00001695 if ( (4*A*C - B*B) > MagickHuge ) {
cristy3ed852e2009-09-05 21:47:34 +00001696 resample_filter->limit_reached = MagickTrue;
1697 return;
1698 }
1699
anthony582b6d72010-10-10 06:45:41 +00001700 /* Scale ellipse to match the filters support
1701 (that is, multiply F by the square of the support).
nicolase2ecb242010-09-29 20:02:24 +00001702 */
anthony490ab032010-09-20 00:02:08 +00001703 F *= resample_filter->support;
1704 F *= resample_filter->support;
cristy3ed852e2009-09-05 21:47:34 +00001705
nicolase2ecb242010-09-29 20:02:24 +00001706 /* Orthogonal bounds of the ellipse */
anthony490ab032010-09-20 00:02:08 +00001707 resample_filter->Ulimit = sqrt(4*C*F/(4*A*C-B*B));
1708 resample_filter->Vlimit = sqrt(4*A*F/(4*A*C-B*B));
1709
nicolase2ecb242010-09-29 20:02:24 +00001710 /* Horizontally aligned parallelogram fitted to Ellipse */
1711 resample_filter->Uwidth = sqrt(F/A); /* Half of the parallelogram width */
1712 resample_filter->slope = -B/(2*A); /* Reciprocal slope of the parallelogram */
anthony490ab032010-09-20 00:02:08 +00001713
1714#if DEBUG_ELLIPSE
anthony490ab032010-09-20 00:02:08 +00001715 fprintf(stderr, "Ulimit=%lf; Vlimit=%lf; UWidth=%lf; Slope=%lf;\n",
1716 resample_filter->Ulimit, resample_filter->Vlimit,
1717 resample_filter->Uwidth, resample_filter->slope );
1718#endif
cristy3ed852e2009-09-05 21:47:34 +00001719
nicolase2ecb242010-09-29 20:02:24 +00001720 /* Check the absolute area of the parallelogram involved.
1721 * This limit needs more work, as it is too slow for larger images
1722 * with tiled views of the horizon.
1723 */
cristy39f347a2010-09-20 00:29:31 +00001724 if ( (resample_filter->Uwidth * resample_filter->Vlimit)
1725 > (4.0*resample_filter->image_area)) {
cristy3ed852e2009-09-05 21:47:34 +00001726 resample_filter->limit_reached = MagickTrue;
1727 return;
1728 }
1729
anthony5708fc62010-09-14 13:52:50 +00001730 /* Scale ellipse formula to directly index the Filter Lookup Table */
cristy3ed852e2009-09-05 21:47:34 +00001731 { register double scale;
anthony5b697cd2010-10-10 03:48:57 +00001732#if FILTER_LUT
anthony582b6d72010-10-10 06:45:41 +00001733 /* scale so that F = WLUT_WIDTH; -- hardcoded */
anthony490ab032010-09-20 00:02:08 +00001734 scale = (double)WLUT_WIDTH/F;
anthony5b697cd2010-10-10 03:48:57 +00001735#else
anthony582b6d72010-10-10 06:45:41 +00001736 /* scale so that F = resample_filter->F (support^2) */
1737 scale = resample_filter->F/F;
anthony5b697cd2010-10-10 03:48:57 +00001738#endif
cristy3ed852e2009-09-05 21:47:34 +00001739 resample_filter->A = A*scale;
1740 resample_filter->B = B*scale;
1741 resample_filter->C = C*scale;
cristy3ed852e2009-09-05 21:47:34 +00001742 }
1743}
1744
1745/*
1746%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1747% %
1748% %
1749% %
1750% S e t R e s a m p l e F i l t e r %
1751% %
1752% %
1753% %
1754%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1755%
1756% SetResampleFilter() set the resampling filter lookup table based on a
1757% specific filter. Note that the filter is used as a radial filter not as a
1758% two pass othogonally aligned resampling filter.
1759%
1760% The default Filter, is Gaussian, which is the standard filter used by the
1761% original paper on the Elliptical Weighted Everage Algorithm. However other
1762% filters can also be used.
1763%
1764% The format of the SetResampleFilter method is:
1765%
1766% void SetResampleFilter(ResampleFilter *resample_filter,
1767% const FilterTypes filter,const double blur)
1768%
1769% A description of each parameter follows:
1770%
1771% o resample_filter: resampling resample_filterrmation structure
1772%
1773% o filter: the resize filter for elliptical weighting LUT
1774%
1775% o blur: filter blur factor (radial scaling) for elliptical weighting LUT
1776%
1777*/
1778MagickExport void SetResampleFilter(ResampleFilter *resample_filter,
1779 const FilterTypes filter,const double blur)
1780{
cristy3ed852e2009-09-05 21:47:34 +00001781 ResizeFilter
1782 *resize_filter;
1783
1784 assert(resample_filter != (ResampleFilter *) NULL);
1785 assert(resample_filter->signature == MagickSignature);
1786
anthony2e6ab682010-09-28 12:02:25 +00001787 resample_filter->do_interpolate = MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00001788 resample_filter->filter = filter;
1789
anthony490ab032010-09-20 00:02:08 +00001790 if ( filter == PointFilter )
anthonyb821aaf2010-09-27 13:21:08 +00001791 {
1792 resample_filter->do_interpolate = MagickTrue;
1793 return; /* EWA turned off - nothing more to do */
1794 }
cristy3ed852e2009-09-05 21:47:34 +00001795
anthony61b5ddd2010-10-05 02:33:31 +00001796 /* Set a default cylindrical filter of a 'low blur' Jinc windowed Jinc */
anthony490ab032010-09-20 00:02:08 +00001797 if ( filter == UndefinedFilter )
anthony853d6972010-10-08 06:01:31 +00001798 resample_filter->filter = RobidouxFilter;
anthony490ab032010-09-20 00:02:08 +00001799
1800 resize_filter = AcquireResizeFilter(resample_filter->image,
1801 resample_filter->filter,blur,MagickTrue,resample_filter->exception);
anthonybdfddb02010-10-05 00:06:45 +00001802 if (resize_filter == (ResizeFilter *) NULL)
anthony490ab032010-09-20 00:02:08 +00001803 {
cristy3ed852e2009-09-05 21:47:34 +00001804 (void) ThrowMagickException(resample_filter->exception,GetMagickModule(),
1805 ModuleError, "UnableToSetFilteringValue",
1806 "Fall back to default EWA gaussian filter");
anthony490ab032010-09-20 00:02:08 +00001807 resample_filter->filter = PointFilter;
cristy3ed852e2009-09-05 21:47:34 +00001808 }
anthony490ab032010-09-20 00:02:08 +00001809
anthony10b8bc82010-10-02 12:48:46 +00001810 /* Get the practical working support for the filter,
1811 * after any API call blur factors have been accoded for.
1812 */
anthonyc7b82f22010-09-27 10:42:29 +00001813#if EWA
anthony490ab032010-09-20 00:02:08 +00001814 resample_filter->support = GetResizeFilterSupport(resize_filter);
anthonyc7b82f22010-09-27 10:42:29 +00001815#else
1816 resample_filter->support = 2.0; /* fixed support size for HQ-EWA */
anthony490ab032010-09-20 00:02:08 +00001817#endif
1818
anthony5b697cd2010-10-10 03:48:57 +00001819#if FILTER_LUT
1820 /* Fill the LUT with the weights from the selected filter function */
1821 { register int
1822 Q;
1823 double
1824 r_scale;
1825 /* Scale radius so the filter LUT covers the full support range */
1826 r_scale = resample_filter->support*sqrt(1.0/(double)WLUT_WIDTH);
1827 for(Q=0; Q<WLUT_WIDTH; Q++)
1828 resample_filter->filter_lut[Q] = (double)
1829 GetResizeFilterWeight(resize_filter,sqrt((double)Q)*r_scale);
anthony490ab032010-09-20 00:02:08 +00001830
anthony5b697cd2010-10-10 03:48:57 +00001831 /* finished with the resize filter */
1832 resize_filter = DestroyResizeFilter(resize_filter);
1833 }
1834#else
anthony582b6d72010-10-10 06:45:41 +00001835 /* save the filter and the scaled ellipse bounds needed for filter */
anthony5b697cd2010-10-10 03:48:57 +00001836 resample_filter->filter_def = resize_filter;
anthony582b6d72010-10-10 06:45:41 +00001837 resample_filter->F = resample_filter->support*resample_filter->support;
anthony5b697cd2010-10-10 03:48:57 +00001838#endif
anthony490ab032010-09-20 00:02:08 +00001839
anthony3ebea1e2010-09-27 13:29:00 +00001840 /*
1841 Adjust the scaling of the default unit circle
1842 This assumes that any real scaling changes will always
1843 take place AFTER the filter method has been initialized.
1844 */
anthony3ebea1e2010-09-27 13:29:00 +00001845 ScaleResampleFilter(resample_filter, 1.0, 0.0, 0.0, 1.0);
1846
anthony5708fc62010-09-14 13:52:50 +00001847#if 0
anthony5b697cd2010-10-10 03:48:57 +00001848 /* This is old code kept as a reference only. It is very wrong,
1849 and I don't understand exactly what it was attempting to do.
1850 */
anthonyd638d312010-09-15 13:13:01 +00001851 /*
1852 Create Normal Gaussian 2D Filter Weighted Lookup Table.
1853 A normal EWA guassual lookup would use exp(Q*ALPHA)
1854 where Q = distance squared from 0.0 (center) to 1.0 (edge)
1855 and ALPHA = -4.0*ln(2.0) ==> -2.77258872223978123767
anthony5b697cd2010-10-10 03:48:57 +00001856 The table is of length 1024, and equates to support radius of 2.0
anthonyd638d312010-09-15 13:13:01 +00001857 thus needs to be scaled by ALPHA*4/1024 and any blur factor squared
anthony5708fc62010-09-14 13:52:50 +00001858
anthonyc7b82f22010-09-27 10:42:29 +00001859 The above came from some reference code provided by Fred Weinhaus
1860 and seems to have been a guess that was appropriate for its use
1861 in a 3d perspective landscape mapping program.
anthonyd638d312010-09-15 13:13:01 +00001862 */
anthonyd638d312010-09-15 13:13:01 +00001863 r_scale = -2.77258872223978123767/(WLUT_WIDTH*blur*blur);
1864 for(Q=0; Q<WLUT_WIDTH; Q++)
1865 resample_filter->filter_lut[Q] = exp((double)Q*r_scale);
1866 resample_filter->support = WLUT_WIDTH;
1867 break;
anthony5708fc62010-09-14 13:52:50 +00001868#endif
anthony490ab032010-09-20 00:02:08 +00001869
anthony5b697cd2010-10-10 03:48:57 +00001870#if FILTER_LUT
anthonye06e4c12010-09-15 04:03:52 +00001871#if defined(MAGICKCORE_OPENMP_SUPPORT)
anthony72949792010-10-08 04:44:56 +00001872 #pragma omp single
anthonye06e4c12010-09-15 04:03:52 +00001873#endif
anthony582b6d72010-10-10 06:45:41 +00001874 { register int
1875 Q;
1876 double
1877 r_scale;
anthony28ad1d72010-10-26 06:30:24 +00001878
anthony582b6d72010-10-10 06:45:41 +00001879 /* Scale radius so the filter LUT covers the full support range */
1880 r_scale = resample_filter->support*sqrt(1.0/(double)WLUT_WIDTH);
anthony28ad1d72010-10-26 06:30:24 +00001881 if (IsMagickTrue(GetImageArtifact(resample_filter->image,"resample:verbose")) )
anthonye06e4c12010-09-15 04:03:52 +00001882 {
1883 /* Debug output of the filter weighting LUT
1884 Gnuplot the LUT with hoizontal adjusted to 'r' using...
1885 plot [0:2][-.2:1] "lut.dat" using (sqrt($0/1024)*2):1 with lines
1886 The filter values is normalized for comparision
1887 */
anthonyd638d312010-09-15 13:13:01 +00001888 printf("#\n");
anthonye06e4c12010-09-15 04:03:52 +00001889 printf("# Resampling Filter LUT (%d values)\n", WLUT_WIDTH);
1890 printf("#\n");
anthonyd638d312010-09-15 13:13:01 +00001891 printf("# Note: values in table are using a squared radius lookup.\n");
1892 printf("# And the whole table represents the filters support.\n");
anthony61b5ddd2010-10-05 02:33:31 +00001893 printf("\n"); /* generates a 'break' in gnuplot if multiple outputs */
anthonye06e4c12010-09-15 04:03:52 +00001894 for(Q=0; Q<WLUT_WIDTH; Q++)
anthonyd638d312010-09-15 13:13:01 +00001895 printf("%8.*g %.*g\n",
1896 GetMagickPrecision(),sqrt((double)Q)*r_scale,
1897 GetMagickPrecision(),resample_filter->filter_lut[Q] );
anthonye06e4c12010-09-15 04:03:52 +00001898 }
anthony72949792010-10-08 04:44:56 +00001899 /* output the above once only for each image, and each setting */
1900 (void) DeleteImageArtifact(resample_filter->image,"resample:verbose");
anthony72949792010-10-08 04:44:56 +00001901 }
anthony5b697cd2010-10-10 03:48:57 +00001902#endif /* FILTER_LUT */
cristy3ed852e2009-09-05 21:47:34 +00001903 return;
1904}
1905
1906/*
1907%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1908% %
1909% %
1910% %
1911% S e t R e s a m p l e F i l t e r I n t e r p o l a t e M e t h o d %
1912% %
1913% %
1914% %
1915%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1916%
1917% SetResampleFilterInterpolateMethod() changes the interpolation method
1918% associated with the specified resample filter.
1919%
1920% The format of the SetResampleFilterInterpolateMethod method is:
1921%
1922% MagickBooleanType SetResampleFilterInterpolateMethod(
1923% ResampleFilter *resample_filter,const InterpolateMethod method)
1924%
1925% A description of each parameter follows:
1926%
1927% o resample_filter: the resample filter.
1928%
1929% o method: the interpolation method.
1930%
1931*/
1932MagickExport MagickBooleanType SetResampleFilterInterpolateMethod(
1933 ResampleFilter *resample_filter,const InterpolatePixelMethod method)
1934{
1935 assert(resample_filter != (ResampleFilter *) NULL);
1936 assert(resample_filter->signature == MagickSignature);
1937 assert(resample_filter->image != (Image *) NULL);
anthonyd638d312010-09-15 13:13:01 +00001938
cristy3ed852e2009-09-05 21:47:34 +00001939 if (resample_filter->debug != MagickFalse)
1940 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
1941 resample_filter->image->filename);
anthonyd638d312010-09-15 13:13:01 +00001942
cristy3ed852e2009-09-05 21:47:34 +00001943 resample_filter->interpolate=method;
anthonyd638d312010-09-15 13:13:01 +00001944
cristy3ed852e2009-09-05 21:47:34 +00001945 return(MagickTrue);
1946}
1947
1948/*
1949%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1950% %
1951% %
1952% %
1953% S e t R e s a m p l e F i l t e r V i r t u a l P i x e l M e t h o d %
1954% %
1955% %
1956% %
1957%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1958%
1959% SetResampleFilterVirtualPixelMethod() changes the virtual pixel method
1960% associated with the specified resample filter.
1961%
1962% The format of the SetResampleFilterVirtualPixelMethod method is:
1963%
1964% MagickBooleanType SetResampleFilterVirtualPixelMethod(
1965% ResampleFilter *resample_filter,const VirtualPixelMethod method)
1966%
1967% A description of each parameter follows:
1968%
1969% o resample_filter: the resample filter.
1970%
1971% o method: the virtual pixel method.
1972%
1973*/
1974MagickExport MagickBooleanType SetResampleFilterVirtualPixelMethod(
1975 ResampleFilter *resample_filter,const VirtualPixelMethod method)
1976{
1977 assert(resample_filter != (ResampleFilter *) NULL);
1978 assert(resample_filter->signature == MagickSignature);
1979 assert(resample_filter->image != (Image *) NULL);
1980 if (resample_filter->debug != MagickFalse)
1981 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
1982 resample_filter->image->filename);
1983 resample_filter->virtual_pixel=method;
cristy2d5e44d2010-03-12 01:56:29 +00001984 if (method != UndefinedVirtualPixelMethod)
1985 (void) SetCacheViewVirtualPixelMethod(resample_filter->view,method);
cristy3ed852e2009-09-05 21:47:34 +00001986 return(MagickTrue);
1987}