blob: cdc24c4d935ae625a3f0c0fe568da9df1145f6c5 [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% %
cristy45ef08f2012-12-07 13:13:34 +000021% Copyright 1999-2013 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*/
cristy4c08aed2011-07-01 19:47:50 +000043#include "MagickCore/studio.h"
44#include "MagickCore/artifact.h"
45#include "MagickCore/color-private.h"
46#include "MagickCore/cache.h"
47#include "MagickCore/draw.h"
48#include "MagickCore/exception-private.h"
49#include "MagickCore/gem.h"
50#include "MagickCore/image.h"
51#include "MagickCore/image-private.h"
52#include "MagickCore/log.h"
53#include "MagickCore/magick.h"
54#include "MagickCore/memory_.h"
55#include "MagickCore/pixel.h"
56#include "MagickCore/pixel-accessor.h"
57#include "MagickCore/quantum.h"
58#include "MagickCore/random_.h"
59#include "MagickCore/resample.h"
60#include "MagickCore/resize.h"
61#include "MagickCore/resize-private.h"
cristyac245f82012-05-05 17:13:57 +000062#include "MagickCore/resource_.h"
cristy63a81872012-03-22 15:52:52 +000063#include "MagickCore/token.h"
cristy4c08aed2011-07-01 19:47:50 +000064#include "MagickCore/transform.h"
65#include "MagickCore/signature-private.h"
66#include "MagickCore/utility.h"
cristyd1dd6e42011-09-04 01:46:08 +000067#include "MagickCore/utility-private.h"
anthony9cb63cc2012-04-25 06:10:49 +000068#include "MagickCore/option.h"
cristy3ed852e2009-09-05 21:47:34 +000069/*
anthony490ab032010-09-20 00:02:08 +000070 EWA Resampling Options
71*/
anthonyc7b82f22010-09-27 10:42:29 +000072
73/* select ONE resampling method */
74#define EWA 1 /* Normal EWA handling - raw or clamped */
75 /* if 0 then use "High Quality EWA" */
76#define EWA_CLAMP 1 /* EWA Clamping from Nicolas Robidoux */
77
anthony5b697cd2010-10-10 03:48:57 +000078#define FILTER_LUT 1 /* Use a LUT rather then direct filter calls */
79
anthonyc7b82f22010-09-27 10:42:29 +000080/* output debugging information */
anthony490ab032010-09-20 00:02:08 +000081#define DEBUG_ELLIPSE 0 /* output ellipse info for debug */
anthony2e6ab682010-09-28 12:02:25 +000082#define DEBUG_HIT_MISS 0 /* output hit/miss pixels (as gnuplot commands) */
83#define DEBUG_NO_PIXEL_HIT 0 /* Make pixels that fail to hit anything - RED */
anthony490ab032010-09-20 00:02:08 +000084
anthony5b697cd2010-10-10 03:48:57 +000085#if ! FILTER_DIRECT
86#define WLUT_WIDTH 1024 /* size of the filter cache */
87#endif
88
anthony490ab032010-09-20 00:02:08 +000089/*
cristy3ed852e2009-09-05 21:47:34 +000090 Typedef declarations.
91*/
cristy3ed852e2009-09-05 21:47:34 +000092struct _ResampleFilter
93{
cristy3ed852e2009-09-05 21:47:34 +000094 CacheView
95 *view;
96
cristyc4c8d132010-01-07 01:58:38 +000097 Image
98 *image;
99
cristy3ed852e2009-09-05 21:47:34 +0000100 ExceptionInfo
101 *exception;
102
103 MagickBooleanType
104 debug;
105
106 /* Information about image being resampled */
cristybb503372010-05-27 20:51:26 +0000107 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000108 image_area;
109
cristy5c4e2582011-09-11 19:21:03 +0000110 PixelInterpolateMethod
cristy3ed852e2009-09-05 21:47:34 +0000111 interpolate;
112
113 VirtualPixelMethod
114 virtual_pixel;
115
116 FilterTypes
117 filter;
118
119 /* processing settings needed */
120 MagickBooleanType
121 limit_reached,
122 do_interpolate,
123 average_defined;
124
cristy4c08aed2011-07-01 19:47:50 +0000125 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +0000126 average_pixel;
127
128 /* current ellipitical area being resampled around center point */
129 double
130 A, B, C,
anthonyd638d312010-09-15 13:13:01 +0000131 Vlimit, Ulimit, Uwidth, slope;
cristy3ed852e2009-09-05 21:47:34 +0000132
anthony175defe2010-10-10 04:28:31 +0000133#if FILTER_LUT
cristy3ed852e2009-09-05 21:47:34 +0000134 /* LUT of weights for filtered average in elliptical area */
135 double
anthony5b697cd2010-10-10 03:48:57 +0000136 filter_lut[WLUT_WIDTH];
137#else
138 /* Use a Direct call to the filter functions */
139 ResizeFilter
140 *filter_def;
anthony582b6d72010-10-10 06:45:41 +0000141
142 double
143 F;
anthony5b697cd2010-10-10 03:48:57 +0000144#endif
145
146 /* the practical working support of the filter */
147 double
cristy3ed852e2009-09-05 21:47:34 +0000148 support;
149
cristybb503372010-05-27 20:51:26 +0000150 size_t
cristy3ed852e2009-09-05 21:47:34 +0000151 signature;
152};
153
154/*
155%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
156% %
157% %
158% %
159% A c q u i r e R e s a m p l e I n f o %
160% %
161% %
162% %
163%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
164%
165% AcquireResampleFilter() initializes the information resample needs do to a
166% scaled lookup of a color from an image, using area sampling.
167%
168% The algorithm is based on a Elliptical Weighted Average, where the pixels
169% found in a large elliptical area is averaged together according to a
170% weighting (filter) function. For more details see "Fundamentals of Texture
171% Mapping and Image Warping" a master's thesis by Paul.S.Heckbert, June 17,
172% 1989. Available for free from, http://www.cs.cmu.edu/~ph/
173%
174% As EWA resampling (or any sort of resampling) can require a lot of
175% calculations to produce a distorted scaling of the source image for each
176% output pixel, the ResampleFilter structure generated holds that information
177% between individual image resampling.
178%
179% This function will make the appropriate AcquireCacheView() calls
180% to view the image, calling functions do not need to open a cache view.
181%
182% Usage Example...
183% resample_filter=AcquireResampleFilter(image,exception);
anthony9cb63cc2012-04-25 06:10:49 +0000184% SetResampleFilter(resample_filter, GaussianFilter);
cristybb503372010-05-27 20:51:26 +0000185% for (y=0; y < (ssize_t) image->rows; y++) {
186% for (x=0; x < (ssize_t) image->columns; x++) {
anthonyc7b82f22010-09-27 10:42:29 +0000187% u= ....; v= ....;
cristy3ed852e2009-09-05 21:47:34 +0000188% ScaleResampleFilter(resample_filter, ... scaling vectors ...);
anthonyc7b82f22010-09-27 10:42:29 +0000189% (void) ResamplePixelColor(resample_filter,u,v,&pixel);
cristy3ed852e2009-09-05 21:47:34 +0000190% ... assign resampled pixel value ...
191% }
192% }
193% DestroyResampleFilter(resample_filter);
194%
195% The format of the AcquireResampleFilter method is:
196%
197% ResampleFilter *AcquireResampleFilter(const Image *image,
198% ExceptionInfo *exception)
199%
200% A description of each parameter follows:
201%
202% o image: the image.
203%
204% o exception: return any errors or warnings in this structure.
205%
206*/
207MagickExport ResampleFilter *AcquireResampleFilter(const Image *image,
208 ExceptionInfo *exception)
209{
210 register ResampleFilter
211 *resample_filter;
212
213 assert(image != (Image *) NULL);
214 assert(image->signature == MagickSignature);
215 if (image->debug != MagickFalse)
216 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
217 assert(exception != (ExceptionInfo *) NULL);
218 assert(exception->signature == MagickSignature);
cristy5c1c8582013-02-27 21:48:58 +0000219 resample_filter=(ResampleFilter *) AcquireMagickMemory(sizeof(
220 *resample_filter));
cristy3ed852e2009-09-05 21:47:34 +0000221 if (resample_filter == (ResampleFilter *) NULL)
222 ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed");
223 (void) ResetMagickMemory(resample_filter,0,sizeof(*resample_filter));
cristy3ed852e2009-09-05 21:47:34 +0000224 resample_filter->exception=exception;
cristy2ab242e2011-03-11 02:45:46 +0000225 resample_filter->image=ReferenceImage((Image *) image);
cristy5c1c8582013-02-27 21:48:58 +0000226 resample_filter->view=AcquireVirtualCacheView(resample_filter->image,
227 exception);
cristy3ed852e2009-09-05 21:47:34 +0000228 resample_filter->debug=IsEventLogging();
anthony5b697cd2010-10-10 03:48:57 +0000229 resample_filter->image_area=(ssize_t) (image->columns*image->rows);
cristy5c1c8582013-02-27 21:48:58 +0000230 resample_filter->average_defined=MagickFalse;
231 resample_filter->signature=MagickSignature;
232 SetResampleFilter(resample_filter,image->filter);
cristyaa2c16c2012-03-25 22:21:35 +0000233 (void) SetResampleFilterInterpolateMethod(resample_filter,image->interpolate);
cristy82fea932010-10-14 01:17:55 +0000234 (void) SetResampleFilterVirtualPixelMethod(resample_filter,
anthony72949792010-10-08 04:44:56 +0000235 GetImageVirtualPixelMethod(image));
cristy3ed852e2009-09-05 21:47:34 +0000236 return(resample_filter);
237}
238
239/*
240%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
241% %
242% %
243% %
244% D e s t r o y R e s a m p l e I n f o %
245% %
246% %
247% %
248%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
249%
250% DestroyResampleFilter() finalizes and cleans up the resampling
251% resample_filter as returned by AcquireResampleFilter(), freeing any memory
252% or other information as needed.
253%
254% The format of the DestroyResampleFilter method is:
255%
256% ResampleFilter *DestroyResampleFilter(ResampleFilter *resample_filter)
257%
258% A description of each parameter follows:
259%
260% o resample_filter: resampling information structure
261%
262*/
263MagickExport ResampleFilter *DestroyResampleFilter(
264 ResampleFilter *resample_filter)
265{
266 assert(resample_filter != (ResampleFilter *) NULL);
267 assert(resample_filter->signature == MagickSignature);
268 assert(resample_filter->image != (Image *) NULL);
269 if (resample_filter->debug != MagickFalse)
270 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
271 resample_filter->image->filename);
272 resample_filter->view=DestroyCacheView(resample_filter->view);
273 resample_filter->image=DestroyImage(resample_filter->image);
anthony5b697cd2010-10-10 03:48:57 +0000274#if ! FILTER_LUT
275 resample_filter->filter_def=DestroyResizeFilter(resample_filter->filter_def);
276#endif
cristy3ed852e2009-09-05 21:47:34 +0000277 resample_filter->signature=(~MagickSignature);
278 resample_filter=(ResampleFilter *) RelinquishMagickMemory(resample_filter);
279 return(resample_filter);
280}
281
282/*
283%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
284% %
285% %
286% %
cristy3ed852e2009-09-05 21:47:34 +0000287% R e s a m p l e P i x e l C o l o r %
288% %
289% %
290% %
291%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
292%
293% ResamplePixelColor() samples the pixel values surrounding the location
294% given using an elliptical weighted average, at the scale previously
295% calculated, and in the most efficent manner possible for the
296% VirtualPixelMethod setting.
297%
298% The format of the ResamplePixelColor method is:
299%
300% MagickBooleanType ResamplePixelColor(ResampleFilter *resample_filter,
cristydb070952012-04-20 14:33:00 +0000301% const double u0,const double v0,PixelInfo *pixel,
302% ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000303%
304% A description of each parameter follows:
305%
306% o resample_filter: the resample filter.
307%
308% o u0,v0: A double representing the center of the area to resample,
309% The distortion transformed transformed x,y coordinate.
310%
311% o pixel: the resampled pixel is returned here.
312%
cristydb070952012-04-20 14:33:00 +0000313% o exception: return any errors or warnings in this structure.
314%
cristy3ed852e2009-09-05 21:47:34 +0000315*/
316MagickExport MagickBooleanType ResamplePixelColor(
317 ResampleFilter *resample_filter,const double u0,const double v0,
cristydb070952012-04-20 14:33:00 +0000318 PixelInfo *pixel,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000319{
320 MagickBooleanType
321 status;
322
anthony490ab032010-09-20 00:02:08 +0000323 ssize_t u,v, v1, v2, uw, hit;
cristy3ed852e2009-09-05 21:47:34 +0000324 double u1;
325 double U,V,Q,DQ,DDQ;
326 double divisor_c,divisor_m;
327 register double weight;
cristy4c08aed2011-07-01 19:47:50 +0000328 register const Quantum *pixels;
cristy3ed852e2009-09-05 21:47:34 +0000329 assert(resample_filter != (ResampleFilter *) NULL);
330 assert(resample_filter->signature == MagickSignature);
331
332 status=MagickTrue;
cristy4c08aed2011-07-01 19:47:50 +0000333 /* GetPixelInfo(resample_filter->image,pixel); */
cristy3ed852e2009-09-05 21:47:34 +0000334 if ( resample_filter->do_interpolate ) {
cristyf931f072012-01-01 21:19:15 +0000335 status=InterpolatePixelInfo(resample_filter->image,resample_filter->view,
336 resample_filter->interpolate,u0,v0,pixel,resample_filter->exception);
cristy3ed852e2009-09-05 21:47:34 +0000337 return(status);
338 }
339
anthony2e6ab682010-09-28 12:02:25 +0000340#if DEBUG_ELLIPSE
cristy5acdd942011-05-27 19:45:39 +0000341 (void) FormatLocaleFile(stderr, "u0=%lf; v0=%lf;\n", u0, v0);
anthony2e6ab682010-09-28 12:02:25 +0000342#endif
343
cristy3ed852e2009-09-05 21:47:34 +0000344 /*
anthonyc73fc942012-12-13 04:22:11 +0000345 Does resample area Miss the image Proper?
346 If and that area a simple solid color - then simply return that color!
347 This saves a lot of calculation when resampling outside the bounds of
348 the source image.
349
350 However it probably should be expanded to image bounds plus the filters
351 scaled support size.
cristy3ed852e2009-09-05 21:47:34 +0000352 */
353 hit = 0;
354 switch ( resample_filter->virtual_pixel ) {
355 case BackgroundVirtualPixelMethod:
cristy3ed852e2009-09-05 21:47:34 +0000356 case TransparentVirtualPixelMethod:
357 case BlackVirtualPixelMethod:
358 case GrayVirtualPixelMethod:
359 case WhiteVirtualPixelMethod:
360 case MaskVirtualPixelMethod:
361 if ( resample_filter->limit_reached
anthonyd638d312010-09-15 13:13:01 +0000362 || u0 + resample_filter->Ulimit < 0.0
anthonyc73fc942012-12-13 04:22:11 +0000363 || u0 - resample_filter->Ulimit > (double) resample_filter->image->columns-1.0
anthonyd638d312010-09-15 13:13:01 +0000364 || v0 + resample_filter->Vlimit < 0.0
anthonyc73fc942012-12-13 04:22:11 +0000365 || v0 - resample_filter->Vlimit > (double) resample_filter->image->rows-1.0
cristy3ed852e2009-09-05 21:47:34 +0000366 )
367 hit++;
368 break;
369
370 case UndefinedVirtualPixelMethod:
371 case EdgeVirtualPixelMethod:
anthonyd638d312010-09-15 13:13:01 +0000372 if ( ( u0 + resample_filter->Ulimit < 0.0 && v0 + resample_filter->Vlimit < 0.0 )
373 || ( u0 + resample_filter->Ulimit < 0.0
anthonyc73fc942012-12-13 04:22:11 +0000374 && v0 - resample_filter->Vlimit > (double) resample_filter->image->rows-1.0 )
375 || ( u0 - resample_filter->Ulimit > (double) resample_filter->image->columns-1.0
anthonyd638d312010-09-15 13:13:01 +0000376 && v0 + resample_filter->Vlimit < 0.0 )
anthonyc73fc942012-12-13 04:22:11 +0000377 || ( u0 - resample_filter->Ulimit > (double) resample_filter->image->columns-1.0
378 && v0 - resample_filter->Vlimit > (double) resample_filter->image->rows-1.0 )
cristy3ed852e2009-09-05 21:47:34 +0000379 )
380 hit++;
381 break;
382 case HorizontalTileVirtualPixelMethod:
anthonyd638d312010-09-15 13:13:01 +0000383 if ( v0 + resample_filter->Vlimit < 0.0
anthonyc73fc942012-12-13 04:22:11 +0000384 || v0 - resample_filter->Vlimit > (double) resample_filter->image->rows-1.0
cristy3ed852e2009-09-05 21:47:34 +0000385 )
386 hit++; /* outside the horizontally tiled images. */
387 break;
388 case VerticalTileVirtualPixelMethod:
anthonyd638d312010-09-15 13:13:01 +0000389 if ( u0 + resample_filter->Ulimit < 0.0
anthonyc73fc942012-12-13 04:22:11 +0000390 || u0 - resample_filter->Ulimit > (double) resample_filter->image->columns-1.0
cristy3ed852e2009-09-05 21:47:34 +0000391 )
392 hit++; /* outside the vertically tiled images. */
393 break;
394 case DitherVirtualPixelMethod:
anthonyd638d312010-09-15 13:13:01 +0000395 if ( ( u0 + resample_filter->Ulimit < -32.0 && v0 + resample_filter->Vlimit < -32.0 )
396 || ( u0 + resample_filter->Ulimit < -32.0
anthonyc73fc942012-12-13 04:22:11 +0000397 && v0 - resample_filter->Vlimit > (double) resample_filter->image->rows+31.0 )
398 || ( u0 - resample_filter->Ulimit > (double) resample_filter->image->columns+31.0
anthonyd638d312010-09-15 13:13:01 +0000399 && v0 + resample_filter->Vlimit < -32.0 )
anthonyc73fc942012-12-13 04:22:11 +0000400 || ( u0 - resample_filter->Ulimit > (double) resample_filter->image->columns+31.0
401 && v0 - resample_filter->Vlimit > (double) resample_filter->image->rows+31.0 )
cristy3ed852e2009-09-05 21:47:34 +0000402 )
403 hit++;
404 break;
405 case TileVirtualPixelMethod:
406 case MirrorVirtualPixelMethod:
407 case RandomVirtualPixelMethod:
408 case HorizontalTileEdgeVirtualPixelMethod:
409 case VerticalTileEdgeVirtualPixelMethod:
410 case CheckerTileVirtualPixelMethod:
411 /* resampling of area is always needed - no VP limits */
412 break;
413 }
414 if ( hit ) {
anthonyc73fc942012-12-13 04:22:11 +0000415 /* The area being resampled is simply a solid color
416 * just return a single lookup color.
417 *
418 * Should this return the users requested interpolated color?
419 */
cristy5c1c8582013-02-27 21:48:58 +0000420 status=InterpolatePixelInfo(resample_filter->image,resample_filter->view,
421 IntegerInterpolatePixel,u0,v0,pixel,resample_filter->exception);
cristy3ed852e2009-09-05 21:47:34 +0000422 return(status);
423 }
424
425 /*
anthonyc73fc942012-12-13 04:22:11 +0000426 When Scaling limits reached, return an 'averaged' result.
cristy3ed852e2009-09-05 21:47:34 +0000427 */
428 if ( resample_filter->limit_reached ) {
429 switch ( resample_filter->virtual_pixel ) {
430 /* This is always handled by the above, so no need.
431 case BackgroundVirtualPixelMethod:
432 case ConstantVirtualPixelMethod:
433 case TransparentVirtualPixelMethod:
434 case GrayVirtualPixelMethod,
435 case WhiteVirtualPixelMethod
436 case MaskVirtualPixelMethod:
437 */
438 case UndefinedVirtualPixelMethod:
439 case EdgeVirtualPixelMethod:
440 case DitherVirtualPixelMethod:
441 case HorizontalTileEdgeVirtualPixelMethod:
442 case VerticalTileEdgeVirtualPixelMethod:
anthony9b8a5282010-09-15 07:48:39 +0000443 /* We need an average edge pixel, from the correct edge!
cristy3ed852e2009-09-05 21:47:34 +0000444 How should I calculate an average edge color?
445 Just returning an averaged neighbourhood,
446 works well in general, but falls down for TileEdge methods.
447 This needs to be done properly!!!!!!
448 */
cristy4c08aed2011-07-01 19:47:50 +0000449 status=InterpolatePixelInfo(resample_filter->image,
cristyd76c51e2011-03-26 00:21:26 +0000450 resample_filter->view,AverageInterpolatePixel,u0,v0,pixel,
451 resample_filter->exception);
cristy3ed852e2009-09-05 21:47:34 +0000452 break;
453 case HorizontalTileVirtualPixelMethod:
454 case VerticalTileVirtualPixelMethod:
455 /* just return the background pixel - Is there more direct way? */
cristy4c08aed2011-07-01 19:47:50 +0000456 status=InterpolatePixelInfo(resample_filter->image,
cristyd76c51e2011-03-26 00:21:26 +0000457 resample_filter->view,IntegerInterpolatePixel,-1.0,-1.0,pixel,
458 resample_filter->exception);
cristy3ed852e2009-09-05 21:47:34 +0000459 break;
460 case TileVirtualPixelMethod:
461 case MirrorVirtualPixelMethod:
462 case RandomVirtualPixelMethod:
463 case CheckerTileVirtualPixelMethod:
464 default:
465 /* generate a average color of the WHOLE image */
466 if ( resample_filter->average_defined == MagickFalse ) {
467 Image
468 *average_image;
469
470 CacheView
471 *average_view;
472
cristy4c08aed2011-07-01 19:47:50 +0000473 GetPixelInfo(resample_filter->image,(PixelInfo *)
cristy065f8be2010-10-16 00:21:58 +0000474 &resample_filter->average_pixel);
475 resample_filter->average_defined=MagickTrue;
cristy3ed852e2009-09-05 21:47:34 +0000476
477 /* Try to get an averaged pixel color of whole image */
cristyaa2c16c2012-03-25 22:21:35 +0000478 average_image=ResizeImage(resample_filter->image,1,1,BoxFilter,
cristy065f8be2010-10-16 00:21:58 +0000479 resample_filter->exception);
cristy3ed852e2009-09-05 21:47:34 +0000480 if (average_image == (Image *) NULL)
481 {
482 *pixel=resample_filter->average_pixel; /* FAILED */
483 break;
484 }
cristy46ff2672012-12-14 15:32:26 +0000485 average_view=AcquireVirtualCacheView(average_image,exception);
cristy4c08aed2011-07-01 19:47:50 +0000486 pixels=GetCacheViewVirtualPixels(average_view,0,0,1,1,
cristy3ed852e2009-09-05 21:47:34 +0000487 resample_filter->exception);
cristy4c08aed2011-07-01 19:47:50 +0000488 if (pixels == (const Quantum *) NULL) {
cristy3ed852e2009-09-05 21:47:34 +0000489 average_view=DestroyCacheView(average_view);
490 average_image=DestroyImage(average_image);
491 *pixel=resample_filter->average_pixel; /* FAILED */
492 break;
493 }
cristy803640d2011-11-17 02:11:32 +0000494 GetPixelInfoPixel(resample_filter->image,pixels,
cristy3ed852e2009-09-05 21:47:34 +0000495 &(resample_filter->average_pixel));
496 average_view=DestroyCacheView(average_view);
497 average_image=DestroyImage(average_image);
anthony490ab032010-09-20 00:02:08 +0000498
499 if ( resample_filter->virtual_pixel == CheckerTileVirtualPixelMethod )
500 {
anthony9cb63cc2012-04-25 06:10:49 +0000501 /* CheckerTile is a alpha blend of the image's average pixel
502 color and the current background color */
anthony490ab032010-09-20 00:02:08 +0000503
anthony9cb63cc2012-04-25 06:10:49 +0000504 /* image's average pixel color */
cristya19f1d72012-08-07 18:24:38 +0000505 weight = QuantumScale*((double)
cristy4c08aed2011-07-01 19:47:50 +0000506 resample_filter->average_pixel.alpha);
anthony490ab032010-09-20 00:02:08 +0000507 resample_filter->average_pixel.red *= weight;
508 resample_filter->average_pixel.green *= weight;
509 resample_filter->average_pixel.blue *= weight;
510 divisor_c = weight;
511
anthony9cb63cc2012-04-25 06:10:49 +0000512 /* background color */
cristya19f1d72012-08-07 18:24:38 +0000513 weight = QuantumScale*((double)
cristy4c08aed2011-07-01 19:47:50 +0000514 resample_filter->image->background_color.alpha);
anthony490ab032010-09-20 00:02:08 +0000515 resample_filter->average_pixel.red +=
516 weight*resample_filter->image->background_color.red;
517 resample_filter->average_pixel.green +=
518 weight*resample_filter->image->background_color.green;
519 resample_filter->average_pixel.blue +=
520 weight*resample_filter->image->background_color.blue;
cristy4c08aed2011-07-01 19:47:50 +0000521 resample_filter->average_pixel.alpha +=
522 resample_filter->image->background_color.alpha;
anthony490ab032010-09-20 00:02:08 +0000523 divisor_c += weight;
524
anthony9cb63cc2012-04-25 06:10:49 +0000525 /* alpha blend */
anthony490ab032010-09-20 00:02:08 +0000526 resample_filter->average_pixel.red /= divisor_c;
527 resample_filter->average_pixel.green /= divisor_c;
528 resample_filter->average_pixel.blue /= divisor_c;
anthony9cb63cc2012-04-25 06:10:49 +0000529 resample_filter->average_pixel.alpha /= 2; /* 50% blend */
anthony490ab032010-09-20 00:02:08 +0000530
531 }
cristy3ed852e2009-09-05 21:47:34 +0000532 }
533 *pixel=resample_filter->average_pixel;
534 break;
535 }
536 return(status);
537 }
538
539 /*
540 Initialize weighted average data collection
541 */
542 hit = 0;
543 divisor_c = 0.0;
544 divisor_m = 0.0;
545 pixel->red = pixel->green = pixel->blue = 0.0;
cristy4c08aed2011-07-01 19:47:50 +0000546 if (pixel->colorspace == CMYKColorspace)
547 pixel->black = 0.0;
cristy8a46d822012-08-28 23:32:39 +0000548 if (pixel->alpha_trait == BlendPixelTrait)
cristy4c08aed2011-07-01 19:47:50 +0000549 pixel->alpha = 0.0;
cristy3ed852e2009-09-05 21:47:34 +0000550
551 /*
552 Determine the parellelogram bounding box fitted to the ellipse
553 centered at u0,v0. This area is bounding by the lines...
cristy3ed852e2009-09-05 21:47:34 +0000554 */
anthony490ab032010-09-20 00:02:08 +0000555 v1 = (ssize_t)ceil(v0 - resample_filter->Vlimit); /* range of scan lines */
556 v2 = (ssize_t)floor(v0 + resample_filter->Vlimit);
cristy3ed852e2009-09-05 21:47:34 +0000557
anthony490ab032010-09-20 00:02:08 +0000558 /* scan line start and width accross the parallelogram */
559 u1 = u0 + (v1-v0)*resample_filter->slope - resample_filter->Uwidth;
560 uw = (ssize_t)(2.0*resample_filter->Uwidth)+1;
561
562#if DEBUG_ELLIPSE
cristy5acdd942011-05-27 19:45:39 +0000563 (void) FormatLocaleFile(stderr, "v1=%ld; v2=%ld\n", (long)v1, (long)v2);
564 (void) FormatLocaleFile(stderr, "u1=%ld; uw=%ld\n", (long)u1, (long)uw);
anthony490ab032010-09-20 00:02:08 +0000565#else
566# define DEBUG_HIT_MISS 0 /* only valid if DEBUG_ELLIPSE is enabled */
567#endif
cristy3ed852e2009-09-05 21:47:34 +0000568
569 /*
570 Do weighted resampling of all pixels, within the scaled ellipse,
571 bound by a Parellelogram fitted to the ellipse.
572 */
573 DDQ = 2*resample_filter->A;
anthony490ab032010-09-20 00:02:08 +0000574 for( v=v1; v<=v2; v++ ) {
575#if DEBUG_HIT_MISS
576 long uu = ceil(u1); /* actual pixel location (for debug only) */
cristy5acdd942011-05-27 19:45:39 +0000577 (void) FormatLocaleFile(stderr, "# scan line from pixel %ld, %ld\n", (long)uu, (long)v);
anthony490ab032010-09-20 00:02:08 +0000578#endif
579 u = (ssize_t)ceil(u1); /* first pixel in scanline */
580 u1 += resample_filter->slope; /* start of next scan line */
581
582
583 /* location of this first pixel, relative to u0,v0 */
584 U = (double)u-u0;
cristy3ed852e2009-09-05 21:47:34 +0000585 V = (double)v-v0;
586
587 /* Q = ellipse quotent ( if Q<F then pixel is inside ellipse) */
anthony490ab032010-09-20 00:02:08 +0000588 Q = (resample_filter->A*U + resample_filter->B*V)*U + resample_filter->C*V*V;
cristy3ed852e2009-09-05 21:47:34 +0000589 DQ = resample_filter->A*(2.0*U+1) + resample_filter->B*V;
590
591 /* get the scanline of pixels for this v */
cristybb503372010-05-27 20:51:26 +0000592 pixels=GetCacheViewVirtualPixels(resample_filter->view,u,v,(size_t) uw,
cristy3ed852e2009-09-05 21:47:34 +0000593 1,resample_filter->exception);
cristy4c08aed2011-07-01 19:47:50 +0000594 if (pixels == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000595 return(MagickFalse);
cristy3ed852e2009-09-05 21:47:34 +0000596
597 /* count up the weighted pixel colors */
598 for( u=0; u<uw; u++ ) {
anthony5b697cd2010-10-10 03:48:57 +0000599#if FILTER_LUT
cristy3ed852e2009-09-05 21:47:34 +0000600 /* Note that the ellipse has been pre-scaled so F = WLUT_WIDTH */
601 if ( Q < (double)WLUT_WIDTH ) {
602 weight = resample_filter->filter_lut[(int)Q];
anthony5b697cd2010-10-10 03:48:57 +0000603#else
604 /* Note that the ellipse has been pre-scaled so F = support^2 */
anthony582b6d72010-10-10 06:45:41 +0000605 if ( Q < (double)resample_filter->F ) {
606 weight = GetResizeFilterWeight(resample_filter->filter_def,
607 sqrt(Q)); /* a SquareRoot! Arrggghhhhh... */
anthony5b697cd2010-10-10 03:48:57 +0000608#endif
cristy3ed852e2009-09-05 21:47:34 +0000609
cristy4c08aed2011-07-01 19:47:50 +0000610 pixel->alpha += weight*GetPixelAlpha(resample_filter->image,pixels);
cristy3ed852e2009-09-05 21:47:34 +0000611 divisor_m += weight;
612
cristy8a46d822012-08-28 23:32:39 +0000613 if (pixel->alpha_trait == BlendPixelTrait)
cristya19f1d72012-08-07 18:24:38 +0000614 weight *= QuantumScale*((double) GetPixelAlpha(resample_filter->image,pixels));
cristy4c08aed2011-07-01 19:47:50 +0000615 pixel->red += weight*GetPixelRed(resample_filter->image,pixels);
616 pixel->green += weight*GetPixelGreen(resample_filter->image,pixels);
617 pixel->blue += weight*GetPixelBlue(resample_filter->image,pixels);
cristy2ab242e2011-03-11 02:45:46 +0000618 if (pixel->colorspace == CMYKColorspace)
cristy4c08aed2011-07-01 19:47:50 +0000619 pixel->black += weight*GetPixelBlack(resample_filter->image,pixels);
cristy3ed852e2009-09-05 21:47:34 +0000620 divisor_c += weight;
621
622 hit++;
anthony490ab032010-09-20 00:02:08 +0000623#if DEBUG_HIT_MISS
624 /* mark the pixel according to hit/miss of the ellipse */
cristy5acdd942011-05-27 19:45:39 +0000625 (void) FormatLocaleFile(stderr, "set arrow from %lf,%lf to %lf,%lf nohead ls 3\n",
anthony490ab032010-09-20 00:02:08 +0000626 (long)uu-.1,(double)v-.1,(long)uu+.1,(long)v+.1);
cristy5acdd942011-05-27 19:45:39 +0000627 (void) FormatLocaleFile(stderr, "set arrow from %lf,%lf to %lf,%lf nohead ls 3\n",
anthony490ab032010-09-20 00:02:08 +0000628 (long)uu+.1,(double)v-.1,(long)uu-.1,(long)v+.1);
629 } else {
cristy5acdd942011-05-27 19:45:39 +0000630 (void) FormatLocaleFile(stderr, "set arrow from %lf,%lf to %lf,%lf nohead ls 1\n",
anthony490ab032010-09-20 00:02:08 +0000631 (long)uu-.1,(double)v-.1,(long)uu+.1,(long)v+.1);
cristy5acdd942011-05-27 19:45:39 +0000632 (void) FormatLocaleFile(stderr, "set arrow from %lf,%lf to %lf,%lf nohead ls 1\n",
anthony490ab032010-09-20 00:02:08 +0000633 (long)uu+.1,(double)v-.1,(long)uu-.1,(long)v+.1);
cristy3ed852e2009-09-05 21:47:34 +0000634 }
anthony490ab032010-09-20 00:02:08 +0000635 uu++;
636#else
637 }
638#endif
cristyed231572011-07-14 02:18:59 +0000639 pixels+=GetPixelChannels(resample_filter->image);
cristy3ed852e2009-09-05 21:47:34 +0000640 Q += DQ;
641 DQ += DDQ;
642 }
643 }
anthony490ab032010-09-20 00:02:08 +0000644#if DEBUG_ELLIPSE
cristy5acdd942011-05-27 19:45:39 +0000645 (void) FormatLocaleFile(stderr, "Hit=%ld; Total=%ld;\n", (long)hit, (long)uw*(v2-v1) );
anthony490ab032010-09-20 00:02:08 +0000646#endif
cristy3ed852e2009-09-05 21:47:34 +0000647
648 /*
649 Result sanity check -- this should NOT happen
650 */
anthony7d2553e2012-05-11 02:23:39 +0000651 if ( hit == 0 || divisor_m <= MagickEpsilon || divisor_c <= MagickEpsilon ) {
652 /* not enough pixels, or bad weighting in resampling,
653 resort to direct interpolation */
anthony490ab032010-09-20 00:02:08 +0000654#if DEBUG_NO_PIXEL_HIT
cristy4c08aed2011-07-01 19:47:50 +0000655 pixel->alpha = pixel->red = pixel->green = pixel->blue = 0;
anthony9b8a5282010-09-15 07:48:39 +0000656 pixel->red = QuantumRange; /* show pixels for which EWA fails */
657#else
cristy4c08aed2011-07-01 19:47:50 +0000658 status=InterpolatePixelInfo(resample_filter->image,
cristyd76c51e2011-03-26 00:21:26 +0000659 resample_filter->view,resample_filter->interpolate,u0,v0,pixel,
660 resample_filter->exception);
anthony9b8a5282010-09-15 07:48:39 +0000661#endif
cristy3ed852e2009-09-05 21:47:34 +0000662 return status;
663 }
664
665 /*
666 Finialize results of resampling
667 */
668 divisor_m = 1.0/divisor_m;
cristya19f1d72012-08-07 18:24:38 +0000669 pixel->alpha = (double) ClampToQuantum(divisor_m*pixel->alpha);
cristy3ed852e2009-09-05 21:47:34 +0000670 divisor_c = 1.0/divisor_c;
cristya19f1d72012-08-07 18:24:38 +0000671 pixel->red = (double) ClampToQuantum(divisor_c*pixel->red);
672 pixel->green = (double) ClampToQuantum(divisor_c*pixel->green);
673 pixel->blue = (double) ClampToQuantum(divisor_c*pixel->blue);
cristy2ab242e2011-03-11 02:45:46 +0000674 if (pixel->colorspace == CMYKColorspace)
cristya19f1d72012-08-07 18:24:38 +0000675 pixel->black = (double) ClampToQuantum(divisor_c*pixel->black);
cristy3ed852e2009-09-05 21:47:34 +0000676 return(MagickTrue);
677}
678
anthonyc7b82f22010-09-27 10:42:29 +0000679#if EWA && EWA_CLAMP
680/*
681%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
682% %
683% %
684% %
685- C l a m p U p A x e s %
686% %
687% %
688% %
689%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
690%
nicolasc90935c2010-09-27 16:47:39 +0000691% ClampUpAxes() function converts the input vectors into a major and
nicolas40ae4632010-10-28 13:03:53 +0000692% minor axis unit vectors, and their magnitude. This allows us to
693% ensure that the ellipse generated is never smaller than the unit
nicolasc90935c2010-09-27 16:47:39 +0000694% circle and thus never too small for use in EWA resampling.
anthonyc7b82f22010-09-27 10:42:29 +0000695%
nicolasc90935c2010-09-27 16:47:39 +0000696% This purely mathematical 'magic' was provided by Professor Nicolas
697% Robidoux and his Masters student Chantal Racette.
anthonyc7b82f22010-09-27 10:42:29 +0000698%
nicolas40ae4632010-10-28 13:03:53 +0000699% Reference: "We Recommend Singular Value Decomposition", David Austin
anthonyc7b82f22010-09-27 10:42:29 +0000700% http://www.ams.org/samplings/feature-column/fcarc-svd
701%
nicolas40ae4632010-10-28 13:03:53 +0000702% By generating major and minor axis vectors, we can actually use the
nicolasc90935c2010-09-27 16:47:39 +0000703% ellipse in its "canonical form", by remapping the dx,dy of the
704% sampled point into distances along the major and minor axis unit
705% vectors.
nicolas40ae4632010-10-28 13:03:53 +0000706%
707% Reference: http://en.wikipedia.org/wiki/Ellipse#Canonical_form
anthonyc7b82f22010-09-27 10:42:29 +0000708*/
anthonyc73fc942012-12-13 04:22:11 +0000709static inline void ClampUpAxes(const double dux,
710 const double dvx,
711 const double duy,
712 const double dvy,
713 double *major_mag,
714 double *minor_mag,
715 double *major_unit_x,
716 double *major_unit_y,
717 double *minor_unit_x,
718 double *minor_unit_y)
anthonyc7b82f22010-09-27 10:42:29 +0000719{
720 /*
721 * ClampUpAxes takes an input 2x2 matrix
722 *
723 * [ a b ] = [ dux duy ]
724 * [ c d ] = [ dvx dvy ]
725 *
726 * and computes from it the major and minor axis vectors [major_x,
727 * major_y] and [minor_x,minor_y] of the smallest ellipse containing
728 * both the unit disk and the ellipse which is the image of the unit
729 * disk by the linear transformation
730 *
731 * [ dux duy ] [S] = [s]
732 * [ dvx dvy ] [T] = [t]
733 *
734 * (The vector [S,T] is the difference between a position in output
735 * space and [X,Y]; the vector [s,t] is the difference between a
736 * position in input space and [x,y].)
737 */
738 /*
nicolas082f7e42011-05-04 05:34:48 +0000739 * Output:
anthonyc7b82f22010-09-27 10:42:29 +0000740 *
741 * major_mag is the half-length of the major axis of the "new"
nicolas40ae4632010-10-28 13:03:53 +0000742 * ellipse.
anthonyc7b82f22010-09-27 10:42:29 +0000743 *
744 * minor_mag is the half-length of the minor axis of the "new"
nicolas40ae4632010-10-28 13:03:53 +0000745 * ellipse.
anthonyc7b82f22010-09-27 10:42:29 +0000746 *
747 * major_unit_x is the x-coordinate of the major axis direction vector
748 * of both the "old" and "new" ellipses.
749 *
750 * major_unit_y is the y-coordinate of the major axis direction vector.
751 *
752 * minor_unit_x is the x-coordinate of the minor axis direction vector.
753 *
754 * minor_unit_y is the y-coordinate of the minor axis direction vector.
755 *
756 * Unit vectors are useful for computing projections, in particular,
757 * to compute the distance between a point in output space and the
nicolas082f7e42011-05-04 05:34:48 +0000758 * center of a unit disk in output space, using the position of the
759 * corresponding point [s,t] in input space. Following the clamping,
760 * the square of this distance is
761 *
762 * ( ( s * major_unit_x + t * major_unit_y ) / major_mag )^2
763 * +
764 * ( ( s * minor_unit_x + t * minor_unit_y ) / minor_mag )^2
765 *
766 * If such distances will be computed for many [s,t]'s, it makes
767 * sense to actually compute the reciprocal of major_mag and
768 * minor_mag and multiply them by the above unit lengths.
nicolasc90935c2010-09-27 16:47:39 +0000769 *
770 * Now, if you want to modify the input pair of tangent vectors so
771 * that it defines the modified ellipse, all you have to do is set
772 *
nicolas8b1d9812010-09-29 18:41:55 +0000773 * newdux = major_mag * major_unit_x
774 * newdvx = major_mag * major_unit_y
775 * newduy = minor_mag * minor_unit_x = minor_mag * -major_unit_y
776 * newdvy = minor_mag * minor_unit_y = minor_mag * major_unit_x
nicolasc90935c2010-09-27 16:47:39 +0000777 *
nicolas932ef842010-10-27 16:05:12 +0000778 * and use these tangent vectors as if they were the original ones.
nicolas40ae4632010-10-28 13:03:53 +0000779 * Usually, this is a drastic change in the tangent vectors even if
nicolasc263aa72010-10-29 01:09:44 +0000780 * the singular values are not clamped; for example, the minor axis
781 * vector always points in a direction which is 90 degrees
782 * counterclockwise from the direction of the major axis vector.
anthonyc7b82f22010-09-27 10:42:29 +0000783 */
784 /*
785 * Discussion:
786 *
787 * GOAL: Fix things so that the pullback, in input space, of a disk
788 * of radius r in output space is an ellipse which contains, at
789 * least, a disc of radius r. (Make this hold for any r>0.)
790 *
nicolas40ae4632010-10-28 13:03:53 +0000791 * ESSENCE OF THE METHOD: Compute the product of the first two
792 * factors of an SVD of the linear transformation defining the
nicolasf170e5f2010-10-27 13:21:30 +0000793 * ellipse and make sure that both its columns have norm at least 1.
794 * Because rotations and reflexions map disks to themselves, it is
nicolas40ae4632010-10-28 13:03:53 +0000795 * not necessary to compute the third (rightmost) factor of the SVD.
nicolasf170e5f2010-10-27 13:21:30 +0000796 *
797 * DETAILS: Find the singular values and (unit) left singular
798 * vectors of Jinv, clampling up the singular values to 1, and
nicolas932ef842010-10-27 16:05:12 +0000799 * multiply the unit left singular vectors by the new singular
nicolasf170e5f2010-10-27 13:21:30 +0000800 * values in order to get the minor and major ellipse axis vectors.
anthonyc7b82f22010-09-27 10:42:29 +0000801 *
nicolas40ae4632010-10-28 13:03:53 +0000802 * Image resampling context:
anthonyc7b82f22010-09-27 10:42:29 +0000803 *
804 * The Jacobian matrix of the transformation at the output point
805 * under consideration is defined as follows:
806 *
807 * Consider the transformation (x,y) -> (X,Y) from input locations
nicolas8b1d9812010-09-29 18:41:55 +0000808 * to output locations. (Anthony Thyssen, elsewhere in resample.c,
nicolas40ae4632010-10-28 13:03:53 +0000809 * uses the notation (u,v) -> (x,y).)
anthonyc7b82f22010-09-27 10:42:29 +0000810 *
nicolas40ae4632010-10-28 13:03:53 +0000811 * The Jacobian matrix of the transformation at (x,y) is equal to
anthonyc7b82f22010-09-27 10:42:29 +0000812 *
nicolas40ae4632010-10-28 13:03:53 +0000813 * J = [ A, B ] = [ dX/dx, dX/dy ]
814 * [ C, D ] [ dY/dx, dY/dy ]
anthonyc7b82f22010-09-27 10:42:29 +0000815 *
nicolas40ae4632010-10-28 13:03:53 +0000816 * that is, the vector [A,C] is the tangent vector corresponding to
817 * input changes in the horizontal direction, and the vector [B,D]
818 * is the tangent vector corresponding to input changes in the
819 * vertical direction.
anthonyc7b82f22010-09-27 10:42:29 +0000820 *
nicolas40ae4632010-10-28 13:03:53 +0000821 * In the context of resampling, it is natural to use the inverse
822 * Jacobian matrix Jinv because resampling is generally performed by
823 * pulling pixel locations in the output image back to locations in
824 * the input image. Jinv is
anthonyc7b82f22010-09-27 10:42:29 +0000825 *
nicolasd0026352011-05-09 15:46:42 +0000826 * Jinv = [ a, b ] = [ dx/dX, dx/dY ]
nicolas40ae4632010-10-28 13:03:53 +0000827 * [ c, d ] [ dy/dX, dy/dY ]
anthonyc7b82f22010-09-27 10:42:29 +0000828 *
829 * Note: Jinv can be computed from J with the following matrix
830 * formula:
831 *
nicolasc90935c2010-09-27 16:47:39 +0000832 * Jinv = 1/(A*D-B*C) [ D, -B ]
833 * [ -C, A ]
834 *
nicolas40ae4632010-10-28 13:03:53 +0000835 * What we do is modify Jinv so that it generates an ellipse which
836 * is as close as possible to the original but which contains the
837 * unit disk. This can be accomplished as follows:
nicolasc90935c2010-09-27 16:47:39 +0000838 *
839 * Let
840 *
841 * Jinv = U Sigma V^T
842 *
nicolas932ef842010-10-27 16:05:12 +0000843 * be an SVD decomposition of Jinv. (The SVD is not unique, but the
nicolas40ae4632010-10-28 13:03:53 +0000844 * final ellipse does not depend on the particular SVD.)
cristycb180922011-03-11 14:41:24 +0000845 *
nicolas40ae4632010-10-28 13:03:53 +0000846 * We could clamp up the entries of the diagonal matrix Sigma so
847 * that they are at least 1, and then set
nicolasc90935c2010-09-27 16:47:39 +0000848 *
849 * Jinv = U newSigma V^T.
850 *
nicolas40ae4632010-10-28 13:03:53 +0000851 * However, we do not need to compute V for the following reason:
852 * V^T is an orthogonal matrix (that is, it represents a combination
853 * of rotations and reflexions) so that it maps the unit circle to
854 * itself. For this reason, the exact value of V does not affect the
855 * final ellipse, and we can choose V to be the identity
856 * matrix. This gives
nicolasc90935c2010-09-27 16:47:39 +0000857 *
nicolas40ae4632010-10-28 13:03:53 +0000858 * Jinv = U newSigma.
nicolasc90935c2010-09-27 16:47:39 +0000859 *
nicolas40ae4632010-10-28 13:03:53 +0000860 * In the end, we return the two diagonal entries of newSigma
861 * together with the two columns of U.
anthonyc7b82f22010-09-27 10:42:29 +0000862 */
863 /*
864 * ClampUpAxes was written by Nicolas Robidoux and Chantal Racette
nicolas47b95652010-11-09 20:51:33 +0000865 * of Laurentian University with insightful suggestions from Anthony
866 * Thyssen and funding from the National Science and Engineering
867 * Research Council of Canada. It is distinguished from its
868 * predecessors by its efficient handling of degenerate cases.
nicolas703291a2010-09-27 18:21:32 +0000869 *
nicolas8c741cc2010-11-09 20:37:24 +0000870 * The idea of clamping up the EWA ellipse's major and minor axes so
871 * that the result contains the reconstruction kernel filter support
nicolas47b95652010-11-09 20:51:33 +0000872 * is taken from Andreas Gustaffson's Masters thesis "Interactive
873 * Image Warping", Helsinki University of Technology, Faculty of
874 * Information Technology, 59 pages, 1993 (see Section 3.6).
nicolas8c741cc2010-11-09 20:37:24 +0000875 *
nicolas47b95652010-11-09 20:51:33 +0000876 * The use of the SVD to clamp up the singular values of the
877 * Jacobian matrix of the pullback transformation for EWA resampling
878 * is taken from the astrophysicist Craig DeForest. It is
879 * implemented in his PDL::Transform code (PDL = Perl Data
880 * Language).
anthonyc7b82f22010-09-27 10:42:29 +0000881 */
882 const double a = dux;
883 const double b = duy;
884 const double c = dvx;
885 const double d = dvy;
886 /*
887 * n is the matrix Jinv * transpose(Jinv). Eigenvalues of n are the
888 * squares of the singular values of Jinv.
889 */
890 const double aa = a*a;
891 const double bb = b*b;
892 const double cc = c*c;
893 const double dd = d*d;
894 /*
895 * Eigenvectors of n are left singular vectors of Jinv.
896 */
897 const double n11 = aa+bb;
898 const double n12 = a*c+b*d;
899 const double n21 = n12;
900 const double n22 = cc+dd;
901 const double det = a*d-b*c;
902 const double twice_det = det+det;
903 const double frobenius_squared = n11+n22;
904 const double discriminant =
905 (frobenius_squared+twice_det)*(frobenius_squared-twice_det);
nicolas564e05e2012-12-11 15:27:48 +0000906 /*
907 * In exact arithmetic, discriminant can't be negative. In floating
908 * point, it can, because of the bad conditioning of SVD
909 * decompositions done through the associated normal matrix.
910 */
cristy93c8f162012-12-11 12:52:51 +0000911 const double sqrt_discriminant =
nicolasbb89b922012-12-11 14:49:06 +0000912 sqrt(discriminant > 0.0 ? discriminant : 0.0);
anthonyc7b82f22010-09-27 10:42:29 +0000913 /*
914 * s1 is the largest singular value of the inverse Jacobian
915 * matrix. In other words, its reciprocal is the smallest singular
916 * value of the Jacobian matrix itself.
917 * If s1 = 0, both singular values are 0, and any orthogonal pair of
918 * left and right factors produces a singular decomposition of Jinv.
nicolasc90935c2010-09-27 16:47:39 +0000919 */
920 /*
nicolas8b1d9812010-09-29 18:41:55 +0000921 * Initially, we only compute the squares of the singular values.
anthonyc7b82f22010-09-27 10:42:29 +0000922 */
923 const double s1s1 = 0.5*(frobenius_squared+sqrt_discriminant);
924 /*
925 * s2 the smallest singular value of the inverse Jacobian
926 * matrix. Its reciprocal is the largest singular value of the
927 * Jacobian matrix itself.
928 */
929 const double s2s2 = 0.5*(frobenius_squared-sqrt_discriminant);
930 const double s1s1minusn11 = s1s1-n11;
931 const double s1s1minusn22 = s1s1-n22;
932 /*
933 * u1, the first column of the U factor of a singular decomposition
934 * of Jinv, is a (non-normalized) left singular vector corresponding
nicolasc90935c2010-09-27 16:47:39 +0000935 * to s1. It has entries u11 and u21. We compute u1 from the fact
936 * that it is an eigenvector of n corresponding to the eigenvalue
937 * s1^2.
anthonyc7b82f22010-09-27 10:42:29 +0000938 */
939 const double s1s1minusn11_squared = s1s1minusn11*s1s1minusn11;
940 const double s1s1minusn22_squared = s1s1minusn22*s1s1minusn22;
941 /*
942 * The following selects the largest row of n-s1^2 I as the one
943 * which is used to find the eigenvector. If both s1^2-n11 and
944 * s1^2-n22 are zero, n-s1^2 I is the zero matrix. In that case,
945 * any vector is an eigenvector; in addition, norm below is equal to
946 * zero, and, in exact arithmetic, this is the only case in which
947 * norm = 0. So, setting u1 to the simple but arbitrary vector [1,0]
948 * if norm = 0 safely takes care of all cases.
949 */
950 const double temp_u11 =
951 ( (s1s1minusn11_squared>=s1s1minusn22_squared) ? n12 : s1s1minusn22 );
952 const double temp_u21 =
953 ( (s1s1minusn11_squared>=s1s1minusn22_squared) ? s1s1minusn11 : n21 );
954 const double norm = sqrt(temp_u11*temp_u11+temp_u21*temp_u21);
955 /*
956 * Finalize the entries of first left singular vector (associated
957 * with the largest singular value).
958 */
959 const double u11 = ( (norm>0.0) ? temp_u11/norm : 1.0 );
960 const double u21 = ( (norm>0.0) ? temp_u21/norm : 0.0 );
961 /*
962 * Clamp the singular values up to 1.
963 */
nicolased227212010-09-27 17:24:57 +0000964 *major_mag = ( (s1s1<=1.0) ? 1.0 : sqrt(s1s1) );
965 *minor_mag = ( (s2s2<=1.0) ? 1.0 : sqrt(s2s2) );
nicolasc90935c2010-09-27 16:47:39 +0000966 /*
967 * Return the unit major and minor axis direction vectors.
968 */
anthonyc7b82f22010-09-27 10:42:29 +0000969 *major_unit_x = u11;
970 *major_unit_y = u21;
nicolasc90935c2010-09-27 16:47:39 +0000971 *minor_unit_x = -u21;
972 *minor_unit_y = u11;
anthonyc7b82f22010-09-27 10:42:29 +0000973}
974
975#endif
cristy3ed852e2009-09-05 21:47:34 +0000976/*
977%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
978% %
979% %
980% %
981% S c a l e R e s a m p l e F i l t e r %
982% %
983% %
984% %
985%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
986%
987% ScaleResampleFilter() does all the calculations needed to resample an image
988% at a specific scale, defined by two scaling vectors. This not using
989% a orthogonal scaling, but two distorted scaling vectors, to allow the
990% generation of a angled ellipse.
991%
992% As only two deritive scaling vectors are used the center of the ellipse
993% must be the center of the lookup. That is any curvature that the
994% distortion may produce is discounted.
995%
996% The input vectors are produced by either finding the derivitives of the
997% distortion function, or the partial derivitives from a distortion mapping.
998% They do not need to be the orthogonal dx,dy scaling vectors, but can be
999% calculated from other derivatives. For example you could use dr,da/r
1000% polar coordinate vector scaling vectors
1001%
anthonyc7b82f22010-09-27 10:42:29 +00001002% If u,v = DistortEquation(x,y) OR u = Fu(x,y); v = Fv(x,y)
1003% Then the scaling vectors are determined from the deritives...
cristy3ed852e2009-09-05 21:47:34 +00001004% du/dx, dv/dx and du/dy, dv/dy
anthonyc7b82f22010-09-27 10:42:29 +00001005% If the resulting scaling vectors is othogonally aligned then...
cristy3ed852e2009-09-05 21:47:34 +00001006% dv/dx = 0 and du/dy = 0
anthonyc7b82f22010-09-27 10:42:29 +00001007% Producing an othogonally alligned ellipse in source space for the area to
1008% be resampled.
cristy3ed852e2009-09-05 21:47:34 +00001009%
1010% Note that scaling vectors are different to argument order. Argument order
1011% is the general order the deritives are extracted from the distortion
anthonyc7b82f22010-09-27 10:42:29 +00001012% equations, and not the scaling vectors. As such the middle two vaules
1013% may be swapped from what you expect. Caution is advised.
cristy3ed852e2009-09-05 21:47:34 +00001014%
anthony3ebea1e2010-09-27 13:29:00 +00001015% WARNING: It is assumed that any SetResampleFilter() method call will
1016% always be performed before the ScaleResampleFilter() method, so that the
1017% size of the ellipse will match the support for the resampling filter being
1018% used.
anthony490ab032010-09-20 00:02:08 +00001019%
cristy3ed852e2009-09-05 21:47:34 +00001020% The format of the ScaleResampleFilter method is:
1021%
1022% void ScaleResampleFilter(const ResampleFilter *resample_filter,
1023% const double dux,const double duy,const double dvx,const double dvy)
1024%
1025% A description of each parameter follows:
1026%
1027% o resample_filter: the resampling resample_filterrmation defining the
1028% image being resampled
1029%
1030% o dux,duy,dvx,dvy:
anthonyc7b82f22010-09-27 10:42:29 +00001031% The deritives or scaling vectors defining the EWA ellipse.
1032% NOTE: watch the order, which is based on the order deritives
1033% are usally determined from distortion equations (see above).
1034% The middle two values may need to be swapped if you are thinking
1035% in terms of scaling vectors.
cristy3ed852e2009-09-05 21:47:34 +00001036%
1037*/
1038MagickExport void ScaleResampleFilter(ResampleFilter *resample_filter,
1039 const double dux,const double duy,const double dvx,const double dvy)
1040{
anthonyd638d312010-09-15 13:13:01 +00001041 double A,B,C,F;
cristy3ed852e2009-09-05 21:47:34 +00001042
1043 assert(resample_filter != (ResampleFilter *) NULL);
1044 assert(resample_filter->signature == MagickSignature);
1045
1046 resample_filter->limit_reached = MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00001047
anthonyb821aaf2010-09-27 13:21:08 +00001048 /* A 'point' filter forces use of interpolation instead of area sampling */
1049 if ( resample_filter->filter == PointFilter )
1050 return; /* EWA turned off - nothing to do */
1051
anthonyc7b82f22010-09-27 10:42:29 +00001052#if DEBUG_ELLIPSE
cristy5acdd942011-05-27 19:45:39 +00001053 (void) FormatLocaleFile(stderr, "# -----\n" );
1054 (void) FormatLocaleFile(stderr, "dux=%lf; dvx=%lf; duy=%lf; dvy=%lf;\n",
anthonyc7b82f22010-09-27 10:42:29 +00001055 dux, dvx, duy, dvy);
1056#endif
cristy3ed852e2009-09-05 21:47:34 +00001057
1058 /* Find Ellipse Coefficents such that
1059 A*u^2 + B*u*v + C*v^2 = F
1060 With u,v relative to point around which we are resampling.
1061 And the given scaling dx,dy vectors in u,v space
1062 du/dx,dv/dx and du/dy,dv/dy
1063 */
anthonyc7b82f22010-09-27 10:42:29 +00001064#if EWA
anthonyd638d312010-09-15 13:13:01 +00001065 /* Direct conversion of derivatives into elliptical coefficients
anthonyb821aaf2010-09-27 13:21:08 +00001066 However when magnifying images, the scaling vectors will be small
1067 resulting in a ellipse that is too small to sample properly.
1068 As such we need to clamp the major/minor axis to a minumum of 1.0
1069 to prevent it getting too small.
cristy3ed852e2009-09-05 21:47:34 +00001070 */
anthonyc7b82f22010-09-27 10:42:29 +00001071#if EWA_CLAMP
1072 { double major_mag,
1073 minor_mag,
1074 major_x,
1075 major_y,
1076 minor_x,
1077 minor_y;
1078
1079 ClampUpAxes(dux,dvx,duy,dvy, &major_mag, &minor_mag,
1080 &major_x, &major_y, &minor_x, &minor_y);
anthonybdfddb02010-10-05 00:06:45 +00001081 major_x *= major_mag; major_y *= major_mag;
1082 minor_x *= minor_mag; minor_y *= minor_mag;
anthonyc7b82f22010-09-27 10:42:29 +00001083#if DEBUG_ELLIPSE
cristy5acdd942011-05-27 19:45:39 +00001084 (void) FormatLocaleFile(stderr, "major_x=%lf; major_y=%lf; minor_x=%lf; minor_y=%lf;\n",
anthonyc7b82f22010-09-27 10:42:29 +00001085 major_x, major_y, minor_x, minor_y);
1086#endif
1087 A = major_y*major_y+minor_y*minor_y;
1088 B = -2.0*(major_x*major_y+minor_x*minor_y);
1089 C = major_x*major_x+minor_x*minor_x;
nicolaseaa08622010-09-27 17:06:09 +00001090 F = major_mag*minor_mag;
anthonyc7b82f22010-09-27 10:42:29 +00001091 F *= F; /* square it */
1092 }
anthony5b697cd2010-10-10 03:48:57 +00001093#else /* raw unclamped EWA */
cristy3ed852e2009-09-05 21:47:34 +00001094 A = dvx*dvx+dvy*dvy;
anthonyd638d312010-09-15 13:13:01 +00001095 B = -2.0*(dux*dvx+duy*dvy);
cristy3ed852e2009-09-05 21:47:34 +00001096 C = dux*dux+duy*duy;
anthonyc7b82f22010-09-27 10:42:29 +00001097 F = dux*dvy-duy*dvx;
anthony5708fc62010-09-14 13:52:50 +00001098 F *= F; /* square it */
anthony5b697cd2010-10-10 03:48:57 +00001099#endif /* EWA_CLAMP */
anthonyd638d312010-09-15 13:13:01 +00001100
anthony490ab032010-09-20 00:02:08 +00001101#else /* HQ_EWA */
anthonyd638d312010-09-15 13:13:01 +00001102 /*
anthonyc7b82f22010-09-27 10:42:29 +00001103 This Paul Heckbert's "Higher Quality EWA" formula, from page 60 in his
1104 thesis, which adds a unit circle to the elliptical area so as to do both
1105 Reconstruction and Prefiltering of the pixels in the resampling. It also
1106 means it is always likely to have at least 4 pixels within the area of the
1107 ellipse, for weighted averaging. No scaling will result with F == 4.0 and
1108 a circle of radius 2.0, and F smaller than this means magnification is
1109 being used.
anthony490ab032010-09-20 00:02:08 +00001110
anthonyc7b82f22010-09-27 10:42:29 +00001111 NOTE: This method produces a very blury result at near unity scale while
anthonybdfddb02010-10-05 00:06:45 +00001112 producing perfect results for strong minitification and magnifications.
anthony490ab032010-09-20 00:02:08 +00001113
anthonyc7b82f22010-09-27 10:42:29 +00001114 However filter support is fixed to 2.0 (no good for Windowed Sinc filters)
cristy3ed852e2009-09-05 21:47:34 +00001115 */
1116 A = dvx*dvx+dvy*dvy+1;
anthonyd638d312010-09-15 13:13:01 +00001117 B = -2.0*(dux*dvx+duy*dvy);
cristy3ed852e2009-09-05 21:47:34 +00001118 C = dux*dux+duy*duy+1;
1119 F = A*C - B*B/4;
cristy3ed852e2009-09-05 21:47:34 +00001120#endif
1121
anthony490ab032010-09-20 00:02:08 +00001122#if DEBUG_ELLIPSE
cristy5acdd942011-05-27 19:45:39 +00001123 (void) FormatLocaleFile(stderr, "A=%lf; B=%lf; C=%lf; F=%lf\n", A,B,C,F);
cristy3ed852e2009-09-05 21:47:34 +00001124
anthonyc7b82f22010-09-27 10:42:29 +00001125 /* Figure out the various information directly about the ellipse.
cristy3ed852e2009-09-05 21:47:34 +00001126 This information currently not needed at this time, but may be
1127 needed later for better limit determination.
anthonyd638d312010-09-15 13:13:01 +00001128
1129 It is also good to have as a record for future debugging
cristy3ed852e2009-09-05 21:47:34 +00001130 */
1131 { double alpha, beta, gamma, Major, Minor;
anthony490ab032010-09-20 00:02:08 +00001132 double Eccentricity, Ellipse_Area, Ellipse_Angle;
anthonyd638d312010-09-15 13:13:01 +00001133
cristy3ed852e2009-09-05 21:47:34 +00001134 alpha = A+C;
1135 beta = A-C;
1136 gamma = sqrt(beta*beta + B*B );
1137
1138 if ( alpha - gamma <= MagickEpsilon )
1139 Major = MagickHuge;
1140 else
1141 Major = sqrt(2*F/(alpha - gamma));
1142 Minor = sqrt(2*F/(alpha + gamma));
1143
cristy5acdd942011-05-27 19:45:39 +00001144 (void) FormatLocaleFile(stderr, "# Major=%lf; Minor=%lf\n", Major, Minor );
cristy3ed852e2009-09-05 21:47:34 +00001145
1146 /* other information about ellipse include... */
1147 Eccentricity = Major/Minor;
1148 Ellipse_Area = MagickPI*Major*Minor;
nicolase2ecb242010-09-29 20:02:24 +00001149 Ellipse_Angle = atan2(B, A-C);
cristy3ed852e2009-09-05 21:47:34 +00001150
cristy5acdd942011-05-27 19:45:39 +00001151 (void) FormatLocaleFile(stderr, "# Angle=%lf Area=%lf\n",
anthonyc73fc942012-12-13 04:22:11 +00001152 (double) RadiansToDegrees(Ellipse_Angle), Ellipse_Area);
cristy3ed852e2009-09-05 21:47:34 +00001153 }
1154#endif
1155
nicolas15c331b2010-09-29 19:05:00 +00001156 /* If one or both of the scaling vectors is impossibly large
1157 (producing a very large raw F value), we may as well not bother
1158 doing any form of resampling since resampled area is very large.
1159 In this case some alternative means of pixel sampling, such as
1160 the average of the whole image is needed to get a reasonable
1161 result. Calculate only as needed.
cristy3ed852e2009-09-05 21:47:34 +00001162 */
anthony490ab032010-09-20 00:02:08 +00001163 if ( (4*A*C - B*B) > MagickHuge ) {
cristy3ed852e2009-09-05 21:47:34 +00001164 resample_filter->limit_reached = MagickTrue;
1165 return;
1166 }
1167
anthony582b6d72010-10-10 06:45:41 +00001168 /* Scale ellipse to match the filters support
anthony9cb63cc2012-04-25 06:10:49 +00001169 (that is, multiply F by the square of the support)
1170 Simplier to just multiply it by the support twice!
nicolase2ecb242010-09-29 20:02:24 +00001171 */
anthony490ab032010-09-20 00:02:08 +00001172 F *= resample_filter->support;
1173 F *= resample_filter->support;
cristy3ed852e2009-09-05 21:47:34 +00001174
nicolase2ecb242010-09-29 20:02:24 +00001175 /* Orthogonal bounds of the ellipse */
cristyc120ce32011-05-10 21:38:57 +00001176 resample_filter->Ulimit = sqrt(C*F/(A*C-0.25*B*B));
1177 resample_filter->Vlimit = sqrt(A*F/(A*C-0.25*B*B));
anthony490ab032010-09-20 00:02:08 +00001178
nicolase2ecb242010-09-29 20:02:24 +00001179 /* Horizontally aligned parallelogram fitted to Ellipse */
1180 resample_filter->Uwidth = sqrt(F/A); /* Half of the parallelogram width */
cristyc120ce32011-05-10 21:38:57 +00001181 resample_filter->slope = -B/(2.0*A); /* Reciprocal slope of the parallelogram */
anthony490ab032010-09-20 00:02:08 +00001182
1183#if DEBUG_ELLIPSE
cristy5acdd942011-05-27 19:45:39 +00001184 (void) FormatLocaleFile(stderr, "Ulimit=%lf; Vlimit=%lf; UWidth=%lf; Slope=%lf;\n",
anthony490ab032010-09-20 00:02:08 +00001185 resample_filter->Ulimit, resample_filter->Vlimit,
1186 resample_filter->Uwidth, resample_filter->slope );
1187#endif
cristy3ed852e2009-09-05 21:47:34 +00001188
nicolase2ecb242010-09-29 20:02:24 +00001189 /* Check the absolute area of the parallelogram involved.
1190 * This limit needs more work, as it is too slow for larger images
1191 * with tiled views of the horizon.
1192 */
cristy39f347a2010-09-20 00:29:31 +00001193 if ( (resample_filter->Uwidth * resample_filter->Vlimit)
1194 > (4.0*resample_filter->image_area)) {
cristy3ed852e2009-09-05 21:47:34 +00001195 resample_filter->limit_reached = MagickTrue;
1196 return;
1197 }
1198
anthony5708fc62010-09-14 13:52:50 +00001199 /* Scale ellipse formula to directly index the Filter Lookup Table */
cristy3ed852e2009-09-05 21:47:34 +00001200 { register double scale;
anthony5b697cd2010-10-10 03:48:57 +00001201#if FILTER_LUT
anthony582b6d72010-10-10 06:45:41 +00001202 /* scale so that F = WLUT_WIDTH; -- hardcoded */
anthony490ab032010-09-20 00:02:08 +00001203 scale = (double)WLUT_WIDTH/F;
anthony5b697cd2010-10-10 03:48:57 +00001204#else
anthony582b6d72010-10-10 06:45:41 +00001205 /* scale so that F = resample_filter->F (support^2) */
1206 scale = resample_filter->F/F;
anthony5b697cd2010-10-10 03:48:57 +00001207#endif
cristy3ed852e2009-09-05 21:47:34 +00001208 resample_filter->A = A*scale;
1209 resample_filter->B = B*scale;
1210 resample_filter->C = C*scale;
cristy3ed852e2009-09-05 21:47:34 +00001211 }
1212}
1213
1214/*
1215%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1216% %
1217% %
1218% %
1219% S e t R e s a m p l e F i l t e r %
1220% %
1221% %
1222% %
1223%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1224%
1225% SetResampleFilter() set the resampling filter lookup table based on a
1226% specific filter. Note that the filter is used as a radial filter not as a
1227% two pass othogonally aligned resampling filter.
1228%
cristy3ed852e2009-09-05 21:47:34 +00001229% The format of the SetResampleFilter method is:
1230%
1231% void SetResampleFilter(ResampleFilter *resample_filter,
cristyaa2c16c2012-03-25 22:21:35 +00001232% const FilterTypes filter)
cristy3ed852e2009-09-05 21:47:34 +00001233%
1234% A description of each parameter follows:
1235%
1236% o resample_filter: resampling resample_filterrmation structure
1237%
1238% o filter: the resize filter for elliptical weighting LUT
1239%
cristy3ed852e2009-09-05 21:47:34 +00001240*/
1241MagickExport void SetResampleFilter(ResampleFilter *resample_filter,
cristyaa2c16c2012-03-25 22:21:35 +00001242 const FilterTypes filter)
cristy3ed852e2009-09-05 21:47:34 +00001243{
cristy3ed852e2009-09-05 21:47:34 +00001244 ResizeFilter
1245 *resize_filter;
1246
1247 assert(resample_filter != (ResampleFilter *) NULL);
1248 assert(resample_filter->signature == MagickSignature);
1249
anthony2e6ab682010-09-28 12:02:25 +00001250 resample_filter->do_interpolate = MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00001251 resample_filter->filter = filter;
1252
anthony9cb63cc2012-04-25 06:10:49 +00001253 /* Default cylindrical filter is a Cubic Keys filter */
anthony490ab032010-09-20 00:02:08 +00001254 if ( filter == UndefinedFilter )
anthony853d6972010-10-08 06:01:31 +00001255 resample_filter->filter = RobidouxFilter;
anthony490ab032010-09-20 00:02:08 +00001256
anthony9cb63cc2012-04-25 06:10:49 +00001257 if ( resample_filter->filter == PointFilter ) {
1258 resample_filter->do_interpolate = MagickTrue;
1259 return; /* EWA turned off - nothing more to do */
1260 }
1261
anthony490ab032010-09-20 00:02:08 +00001262 resize_filter = AcquireResizeFilter(resample_filter->image,
cristyaa2c16c2012-03-25 22:21:35 +00001263 resample_filter->filter,MagickTrue,resample_filter->exception);
anthony9cb63cc2012-04-25 06:10:49 +00001264 if (resize_filter == (ResizeFilter *) NULL) {
1265 (void) ThrowMagickException(resample_filter->exception,GetMagickModule(),
1266 ModuleError, "UnableToSetFilteringValue",
1267 "Fall back to Interpolated 'Point' filter");
1268 resample_filter->filter = PointFilter;
1269 resample_filter->do_interpolate = MagickTrue;
1270 return; /* EWA turned off - nothing more to do */
1271 }
anthony490ab032010-09-20 00:02:08 +00001272
anthony10b8bc82010-10-02 12:48:46 +00001273 /* Get the practical working support for the filter,
1274 * after any API call blur factors have been accoded for.
1275 */
anthonyc7b82f22010-09-27 10:42:29 +00001276#if EWA
anthony490ab032010-09-20 00:02:08 +00001277 resample_filter->support = GetResizeFilterSupport(resize_filter);
anthonyc7b82f22010-09-27 10:42:29 +00001278#else
1279 resample_filter->support = 2.0; /* fixed support size for HQ-EWA */
anthony490ab032010-09-20 00:02:08 +00001280#endif
1281
anthony5b697cd2010-10-10 03:48:57 +00001282#if FILTER_LUT
1283 /* Fill the LUT with the weights from the selected filter function */
1284 { register int
1285 Q;
1286 double
1287 r_scale;
anthony9cb63cc2012-04-25 06:10:49 +00001288
anthony5b697cd2010-10-10 03:48:57 +00001289 /* Scale radius so the filter LUT covers the full support range */
1290 r_scale = resample_filter->support*sqrt(1.0/(double)WLUT_WIDTH);
1291 for(Q=0; Q<WLUT_WIDTH; Q++)
1292 resample_filter->filter_lut[Q] = (double)
1293 GetResizeFilterWeight(resize_filter,sqrt((double)Q)*r_scale);
anthony490ab032010-09-20 00:02:08 +00001294
anthony5b697cd2010-10-10 03:48:57 +00001295 /* finished with the resize filter */
1296 resize_filter = DestroyResizeFilter(resize_filter);
1297 }
1298#else
anthony582b6d72010-10-10 06:45:41 +00001299 /* save the filter and the scaled ellipse bounds needed for filter */
anthony5b697cd2010-10-10 03:48:57 +00001300 resample_filter->filter_def = resize_filter;
anthony582b6d72010-10-10 06:45:41 +00001301 resample_filter->F = resample_filter->support*resample_filter->support;
anthony5b697cd2010-10-10 03:48:57 +00001302#endif
anthony490ab032010-09-20 00:02:08 +00001303
anthony3ebea1e2010-09-27 13:29:00 +00001304 /*
1305 Adjust the scaling of the default unit circle
1306 This assumes that any real scaling changes will always
1307 take place AFTER the filter method has been initialized.
1308 */
anthony3ebea1e2010-09-27 13:29:00 +00001309 ScaleResampleFilter(resample_filter, 1.0, 0.0, 0.0, 1.0);
1310
anthony5708fc62010-09-14 13:52:50 +00001311#if 0
anthonyd638d312010-09-15 13:13:01 +00001312 /*
anthony9cb63cc2012-04-25 06:10:49 +00001313 This is old code kept as a reference only. Basically it generates
1314 a Gaussian bell curve, with sigma = 0.5 if the support is 2.0
1315
anthonyd638d312010-09-15 13:13:01 +00001316 Create Normal Gaussian 2D Filter Weighted Lookup Table.
1317 A normal EWA guassual lookup would use exp(Q*ALPHA)
1318 where Q = distance squared from 0.0 (center) to 1.0 (edge)
1319 and ALPHA = -4.0*ln(2.0) ==> -2.77258872223978123767
anthony5b697cd2010-10-10 03:48:57 +00001320 The table is of length 1024, and equates to support radius of 2.0
anthonyd638d312010-09-15 13:13:01 +00001321 thus needs to be scaled by ALPHA*4/1024 and any blur factor squared
anthony5708fc62010-09-14 13:52:50 +00001322
anthony9cb63cc2012-04-25 06:10:49 +00001323 The it comes from reference code provided by Fred Weinhaus.
anthonyd638d312010-09-15 13:13:01 +00001324 */
anthonyd638d312010-09-15 13:13:01 +00001325 r_scale = -2.77258872223978123767/(WLUT_WIDTH*blur*blur);
1326 for(Q=0; Q<WLUT_WIDTH; Q++)
1327 resample_filter->filter_lut[Q] = exp((double)Q*r_scale);
1328 resample_filter->support = WLUT_WIDTH;
anthony5708fc62010-09-14 13:52:50 +00001329#endif
anthony490ab032010-09-20 00:02:08 +00001330
anthony5b697cd2010-10-10 03:48:57 +00001331#if FILTER_LUT
anthonye06e4c12010-09-15 04:03:52 +00001332#if defined(MAGICKCORE_OPENMP_SUPPORT)
anthony72949792010-10-08 04:44:56 +00001333 #pragma omp single
anthonye06e4c12010-09-15 04:03:52 +00001334#endif
anthony9cb63cc2012-04-25 06:10:49 +00001335 {
anthony451f9092012-05-11 01:56:24 +00001336 if (IfStringTrue(GetImageArtifact(resample_filter->image,
anthony9cb63cc2012-04-25 06:10:49 +00001337 "resample:verbose")) )
anthonye06e4c12010-09-15 04:03:52 +00001338 {
anthony9cb63cc2012-04-25 06:10:49 +00001339 register int
1340 Q;
1341 double
1342 r_scale;
1343
anthonye06e4c12010-09-15 04:03:52 +00001344 /* Debug output of the filter weighting LUT
anthony9cb63cc2012-04-25 06:10:49 +00001345 Gnuplot the LUT data, the x scale index has been adjusted
1346 plot [0:2][-.2:1] "lut.dat" with lines
1347 The filter values should be normalized for comparision
anthonye06e4c12010-09-15 04:03:52 +00001348 */
anthonyd638d312010-09-15 13:13:01 +00001349 printf("#\n");
anthony9cb63cc2012-04-25 06:10:49 +00001350 printf("# Resampling Filter LUT (%d values) for '%s' filter\n",
1351 WLUT_WIDTH, CommandOptionToMnemonic(MagickFilterOptions,
1352 resample_filter->filter) );
anthonye06e4c12010-09-15 04:03:52 +00001353 printf("#\n");
anthonyd638d312010-09-15 13:13:01 +00001354 printf("# Note: values in table are using a squared radius lookup.\n");
anthony9cb63cc2012-04-25 06:10:49 +00001355 printf("# As such its distribution is not uniform.\n");
1356 printf("#\n");
1357 printf("# The X value is the support distance for the Y weight\n");
1358 printf("# so you can use gnuplot to plot this cylindrical filter\n");
1359 printf("# plot [0:2][-.2:1] \"lut.dat\" with lines\n");
1360 printf("#\n");
1361
1362 /* Scale radius so the filter LUT covers the full support range */
1363 r_scale = resample_filter->support*sqrt(1.0/(double)WLUT_WIDTH);
anthonye06e4c12010-09-15 04:03:52 +00001364 for(Q=0; Q<WLUT_WIDTH; Q++)
anthonyd638d312010-09-15 13:13:01 +00001365 printf("%8.*g %.*g\n",
anthony9cb63cc2012-04-25 06:10:49 +00001366 GetMagickPrecision(),sqrt((double)Q)*r_scale,
1367 GetMagickPrecision(),resample_filter->filter_lut[Q] );
1368 printf("\n\n"); /* generate a 'break' in gnuplot if multiple outputs */
anthonye06e4c12010-09-15 04:03:52 +00001369 }
anthony9cb63cc2012-04-25 06:10:49 +00001370 /* Output the above once only for each image, and each setting
anthony72949792010-10-08 04:44:56 +00001371 (void) DeleteImageArtifact(resample_filter->image,"resample:verbose");
anthony9cb63cc2012-04-25 06:10:49 +00001372 */
anthony72949792010-10-08 04:44:56 +00001373 }
anthony5b697cd2010-10-10 03:48:57 +00001374#endif /* FILTER_LUT */
cristy3ed852e2009-09-05 21:47:34 +00001375 return;
1376}
1377
1378/*
1379%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1380% %
1381% %
1382% %
1383% 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 %
1384% %
1385% %
1386% %
1387%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1388%
cristy2ab242e2011-03-11 02:45:46 +00001389% SetResampleFilterInterpolateMethod() sets the resample filter interpolation
1390% method.
cristy3ed852e2009-09-05 21:47:34 +00001391%
1392% The format of the SetResampleFilterInterpolateMethod method is:
1393%
1394% MagickBooleanType SetResampleFilterInterpolateMethod(
1395% ResampleFilter *resample_filter,const InterpolateMethod method)
1396%
1397% A description of each parameter follows:
1398%
1399% o resample_filter: the resample filter.
1400%
1401% o method: the interpolation method.
1402%
1403*/
1404MagickExport MagickBooleanType SetResampleFilterInterpolateMethod(
cristy5c4e2582011-09-11 19:21:03 +00001405 ResampleFilter *resample_filter,const PixelInterpolateMethod method)
cristy3ed852e2009-09-05 21:47:34 +00001406{
1407 assert(resample_filter != (ResampleFilter *) NULL);
1408 assert(resample_filter->signature == MagickSignature);
1409 assert(resample_filter->image != (Image *) NULL);
1410 if (resample_filter->debug != MagickFalse)
1411 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
1412 resample_filter->image->filename);
1413 resample_filter->interpolate=method;
cristy2ab242e2011-03-11 02:45:46 +00001414 return(MagickTrue);
1415}
1416
1417/*
1418%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1419% %
1420% %
1421% %
cristy3ed852e2009-09-05 21:47:34 +00001422% 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 %
1423% %
1424% %
1425% %
1426%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1427%
1428% SetResampleFilterVirtualPixelMethod() changes the virtual pixel method
1429% associated with the specified resample filter.
1430%
1431% The format of the SetResampleFilterVirtualPixelMethod method is:
1432%
1433% MagickBooleanType SetResampleFilterVirtualPixelMethod(
1434% ResampleFilter *resample_filter,const VirtualPixelMethod method)
1435%
1436% A description of each parameter follows:
1437%
1438% o resample_filter: the resample filter.
1439%
1440% o method: the virtual pixel method.
1441%
1442*/
1443MagickExport MagickBooleanType SetResampleFilterVirtualPixelMethod(
1444 ResampleFilter *resample_filter,const VirtualPixelMethod method)
1445{
1446 assert(resample_filter != (ResampleFilter *) NULL);
1447 assert(resample_filter->signature == MagickSignature);
1448 assert(resample_filter->image != (Image *) NULL);
1449 if (resample_filter->debug != MagickFalse)
1450 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
1451 resample_filter->image->filename);
1452 resample_filter->virtual_pixel=method;
cristy2d5e44d2010-03-12 01:56:29 +00001453 if (method != UndefinedVirtualPixelMethod)
1454 (void) SetCacheViewVirtualPixelMethod(resample_filter->view,method);
cristy3ed852e2009-09-05 21:47:34 +00001455 return(MagickTrue);
1456}