cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1 | /* |
| 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 | % % |
cristy | 1454be7 | 2011-12-19 01:52:48 +0000 | [diff] [blame] | 21 | % Copyright 1999-2012 ImageMagick Studio LLC, a non-profit organization % |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 22 | % dedicated to making software imaging solutions freely available. % |
| 23 | % % |
| 24 | % You may not use this file except in compliance with the License. You may % |
| 25 | % obtain a copy of the License at % |
| 26 | % % |
| 27 | % http://www.imagemagick.org/script/license.php % |
| 28 | % % |
| 29 | % Unless required by applicable law or agreed to in writing, software % |
| 30 | % distributed under the License is distributed on an "AS IS" BASIS, % |
| 31 | % WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. % |
| 32 | % See the License for the specific language governing permissions and % |
| 33 | % limitations under the License. % |
| 34 | % % |
| 35 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 36 | % |
| 37 | % |
| 38 | */ |
| 39 | |
| 40 | /* |
| 41 | Include declarations. |
| 42 | */ |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 43 | #include "MagickCore/studio.h" |
| 44 | #include "MagickCore/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" |
cristy | ac245f8 | 2012-05-05 17:13:57 +0000 | [diff] [blame] | 62 | #include "MagickCore/resource_.h" |
cristy | 63a8187 | 2012-03-22 15:52:52 +0000 | [diff] [blame] | 63 | #include "MagickCore/token.h" |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 64 | #include "MagickCore/transform.h" |
| 65 | #include "MagickCore/signature-private.h" |
| 66 | #include "MagickCore/utility.h" |
cristy | d1dd6e4 | 2011-09-04 01:46:08 +0000 | [diff] [blame] | 67 | #include "MagickCore/utility-private.h" |
anthony | 9cb63cc | 2012-04-25 06:10:49 +0000 | [diff] [blame] | 68 | #include "MagickCore/option.h" |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 69 | /* |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 70 | EWA Resampling Options |
| 71 | */ |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 72 | |
| 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 | |
anthony | 5b697cd | 2010-10-10 03:48:57 +0000 | [diff] [blame] | 78 | #define FILTER_LUT 1 /* Use a LUT rather then direct filter calls */ |
| 79 | |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 80 | /* output debugging information */ |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 81 | #define DEBUG_ELLIPSE 0 /* output ellipse info for debug */ |
anthony | 2e6ab68 | 2010-09-28 12:02:25 +0000 | [diff] [blame] | 82 | #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 */ |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 84 | |
anthony | 5b697cd | 2010-10-10 03:48:57 +0000 | [diff] [blame] | 85 | #if ! FILTER_DIRECT |
| 86 | #define WLUT_WIDTH 1024 /* size of the filter cache */ |
| 87 | #endif |
| 88 | |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 89 | /* |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 90 | Typedef declarations. |
| 91 | */ |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 92 | struct _ResampleFilter |
| 93 | { |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 94 | CacheView |
| 95 | *view; |
| 96 | |
cristy | c4c8d13 | 2010-01-07 01:58:38 +0000 | [diff] [blame] | 97 | Image |
| 98 | *image; |
| 99 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 100 | ExceptionInfo |
| 101 | *exception; |
| 102 | |
| 103 | MagickBooleanType |
| 104 | debug; |
| 105 | |
| 106 | /* Information about image being resampled */ |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 107 | ssize_t |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 108 | image_area; |
| 109 | |
cristy | 5c4e258 | 2011-09-11 19:21:03 +0000 | [diff] [blame] | 110 | PixelInterpolateMethod |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 111 | 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 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 125 | PixelInfo |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 126 | average_pixel; |
| 127 | |
| 128 | /* current ellipitical area being resampled around center point */ |
| 129 | double |
| 130 | A, B, C, |
anthony | d638d31 | 2010-09-15 13:13:01 +0000 | [diff] [blame] | 131 | Vlimit, Ulimit, Uwidth, slope; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 132 | |
anthony | 175defe | 2010-10-10 04:28:31 +0000 | [diff] [blame] | 133 | #if FILTER_LUT |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 134 | /* LUT of weights for filtered average in elliptical area */ |
| 135 | double |
anthony | 5b697cd | 2010-10-10 03:48:57 +0000 | [diff] [blame] | 136 | filter_lut[WLUT_WIDTH]; |
| 137 | #else |
| 138 | /* Use a Direct call to the filter functions */ |
| 139 | ResizeFilter |
| 140 | *filter_def; |
anthony | 582b6d7 | 2010-10-10 06:45:41 +0000 | [diff] [blame] | 141 | |
| 142 | double |
| 143 | F; |
anthony | 5b697cd | 2010-10-10 03:48:57 +0000 | [diff] [blame] | 144 | #endif |
| 145 | |
| 146 | /* the practical working support of the filter */ |
| 147 | double |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 148 | support; |
| 149 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 150 | size_t |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 151 | 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); |
anthony | 9cb63cc | 2012-04-25 06:10:49 +0000 | [diff] [blame] | 184 | % SetResampleFilter(resample_filter, GaussianFilter); |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 185 | % for (y=0; y < (ssize_t) image->rows; y++) { |
| 186 | % for (x=0; x < (ssize_t) image->columns; x++) { |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 187 | % u= ....; v= ....; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 188 | % ScaleResampleFilter(resample_filter, ... scaling vectors ...); |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 189 | % (void) ResamplePixelColor(resample_filter,u,v,&pixel); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 190 | % ... 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 | */ |
| 207 | MagickExport 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); |
| 219 | |
| 220 | resample_filter=(ResampleFilter *) AcquireMagickMemory( |
| 221 | sizeof(*resample_filter)); |
| 222 | if (resample_filter == (ResampleFilter *) NULL) |
| 223 | ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed"); |
| 224 | (void) ResetMagickMemory(resample_filter,0,sizeof(*resample_filter)); |
| 225 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 226 | resample_filter->exception=exception; |
cristy | 2ab242e | 2011-03-11 02:45:46 +0000 | [diff] [blame] | 227 | resample_filter->image=ReferenceImage((Image *) image); |
cristy | db07095 | 2012-04-20 14:33:00 +0000 | [diff] [blame] | 228 | resample_filter->view=AcquireVirtualCacheView(resample_filter->image,exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 229 | |
| 230 | resample_filter->debug=IsEventLogging(); |
| 231 | resample_filter->signature=MagickSignature; |
| 232 | |
anthony | 5b697cd | 2010-10-10 03:48:57 +0000 | [diff] [blame] | 233 | resample_filter->image_area=(ssize_t) (image->columns*image->rows); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 234 | resample_filter->average_defined = MagickFalse; |
| 235 | |
| 236 | /* initialise the resampling filter settings */ |
cristy | aa2c16c | 2012-03-25 22:21:35 +0000 | [diff] [blame] | 237 | SetResampleFilter(resample_filter, image->filter); |
| 238 | (void) SetResampleFilterInterpolateMethod(resample_filter,image->interpolate); |
cristy | 82fea93 | 2010-10-14 01:17:55 +0000 | [diff] [blame] | 239 | (void) SetResampleFilterVirtualPixelMethod(resample_filter, |
anthony | 7294979 | 2010-10-08 04:44:56 +0000 | [diff] [blame] | 240 | GetImageVirtualPixelMethod(image)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 241 | return(resample_filter); |
| 242 | } |
| 243 | |
| 244 | /* |
| 245 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 246 | % % |
| 247 | % % |
| 248 | % % |
| 249 | % D e s t r o y R e s a m p l e I n f o % |
| 250 | % % |
| 251 | % % |
| 252 | % % |
| 253 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 254 | % |
| 255 | % DestroyResampleFilter() finalizes and cleans up the resampling |
| 256 | % resample_filter as returned by AcquireResampleFilter(), freeing any memory |
| 257 | % or other information as needed. |
| 258 | % |
| 259 | % The format of the DestroyResampleFilter method is: |
| 260 | % |
| 261 | % ResampleFilter *DestroyResampleFilter(ResampleFilter *resample_filter) |
| 262 | % |
| 263 | % A description of each parameter follows: |
| 264 | % |
| 265 | % o resample_filter: resampling information structure |
| 266 | % |
| 267 | */ |
| 268 | MagickExport ResampleFilter *DestroyResampleFilter( |
| 269 | ResampleFilter *resample_filter) |
| 270 | { |
| 271 | assert(resample_filter != (ResampleFilter *) NULL); |
| 272 | assert(resample_filter->signature == MagickSignature); |
| 273 | assert(resample_filter->image != (Image *) NULL); |
| 274 | if (resample_filter->debug != MagickFalse) |
| 275 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s", |
| 276 | resample_filter->image->filename); |
| 277 | resample_filter->view=DestroyCacheView(resample_filter->view); |
| 278 | resample_filter->image=DestroyImage(resample_filter->image); |
anthony | 5b697cd | 2010-10-10 03:48:57 +0000 | [diff] [blame] | 279 | #if ! FILTER_LUT |
| 280 | resample_filter->filter_def=DestroyResizeFilter(resample_filter->filter_def); |
| 281 | #endif |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 282 | resample_filter->signature=(~MagickSignature); |
| 283 | resample_filter=(ResampleFilter *) RelinquishMagickMemory(resample_filter); |
| 284 | return(resample_filter); |
| 285 | } |
| 286 | |
| 287 | /* |
| 288 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 289 | % % |
| 290 | % % |
| 291 | % % |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 292 | % R e s a m p l e P i x e l C o l o r % |
| 293 | % % |
| 294 | % % |
| 295 | % % |
| 296 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 297 | % |
| 298 | % ResamplePixelColor() samples the pixel values surrounding the location |
| 299 | % given using an elliptical weighted average, at the scale previously |
| 300 | % calculated, and in the most efficent manner possible for the |
| 301 | % VirtualPixelMethod setting. |
| 302 | % |
| 303 | % The format of the ResamplePixelColor method is: |
| 304 | % |
| 305 | % MagickBooleanType ResamplePixelColor(ResampleFilter *resample_filter, |
cristy | db07095 | 2012-04-20 14:33:00 +0000 | [diff] [blame] | 306 | % const double u0,const double v0,PixelInfo *pixel, |
| 307 | % ExceptionInfo *exception) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 308 | % |
| 309 | % A description of each parameter follows: |
| 310 | % |
| 311 | % o resample_filter: the resample filter. |
| 312 | % |
| 313 | % o u0,v0: A double representing the center of the area to resample, |
| 314 | % The distortion transformed transformed x,y coordinate. |
| 315 | % |
| 316 | % o pixel: the resampled pixel is returned here. |
| 317 | % |
cristy | db07095 | 2012-04-20 14:33:00 +0000 | [diff] [blame] | 318 | % o exception: return any errors or warnings in this structure. |
| 319 | % |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 320 | */ |
| 321 | MagickExport MagickBooleanType ResamplePixelColor( |
| 322 | ResampleFilter *resample_filter,const double u0,const double v0, |
cristy | db07095 | 2012-04-20 14:33:00 +0000 | [diff] [blame] | 323 | PixelInfo *pixel,ExceptionInfo *exception) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 324 | { |
| 325 | MagickBooleanType |
| 326 | status; |
| 327 | |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 328 | ssize_t u,v, v1, v2, uw, hit; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 329 | double u1; |
| 330 | double U,V,Q,DQ,DDQ; |
| 331 | double divisor_c,divisor_m; |
| 332 | register double weight; |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 333 | register const Quantum *pixels; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 334 | assert(resample_filter != (ResampleFilter *) NULL); |
| 335 | assert(resample_filter->signature == MagickSignature); |
| 336 | |
| 337 | status=MagickTrue; |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 338 | /* GetPixelInfo(resample_filter->image,pixel); */ |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 339 | if ( resample_filter->do_interpolate ) { |
cristy | f931f07 | 2012-01-01 21:19:15 +0000 | [diff] [blame] | 340 | status=InterpolatePixelInfo(resample_filter->image,resample_filter->view, |
| 341 | resample_filter->interpolate,u0,v0,pixel,resample_filter->exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 342 | return(status); |
| 343 | } |
| 344 | |
anthony | 2e6ab68 | 2010-09-28 12:02:25 +0000 | [diff] [blame] | 345 | #if DEBUG_ELLIPSE |
cristy | 5acdd94 | 2011-05-27 19:45:39 +0000 | [diff] [blame] | 346 | (void) FormatLocaleFile(stderr, "u0=%lf; v0=%lf;\n", u0, v0); |
anthony | 2e6ab68 | 2010-09-28 12:02:25 +0000 | [diff] [blame] | 347 | #endif |
| 348 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 349 | /* |
| 350 | Does resample area Miss the image? |
| 351 | And is that area a simple solid color - then return that color |
| 352 | */ |
| 353 | hit = 0; |
| 354 | switch ( resample_filter->virtual_pixel ) { |
| 355 | case BackgroundVirtualPixelMethod: |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 356 | case TransparentVirtualPixelMethod: |
| 357 | case BlackVirtualPixelMethod: |
| 358 | case GrayVirtualPixelMethod: |
| 359 | case WhiteVirtualPixelMethod: |
| 360 | case MaskVirtualPixelMethod: |
| 361 | if ( resample_filter->limit_reached |
anthony | d638d31 | 2010-09-15 13:13:01 +0000 | [diff] [blame] | 362 | || u0 + resample_filter->Ulimit < 0.0 |
| 363 | || u0 - resample_filter->Ulimit > (double) resample_filter->image->columns |
| 364 | || v0 + resample_filter->Vlimit < 0.0 |
| 365 | || v0 - resample_filter->Vlimit > (double) resample_filter->image->rows |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 366 | ) |
| 367 | hit++; |
| 368 | break; |
| 369 | |
| 370 | case UndefinedVirtualPixelMethod: |
| 371 | case EdgeVirtualPixelMethod: |
anthony | d638d31 | 2010-09-15 13:13:01 +0000 | [diff] [blame] | 372 | if ( ( u0 + resample_filter->Ulimit < 0.0 && v0 + resample_filter->Vlimit < 0.0 ) |
| 373 | || ( u0 + resample_filter->Ulimit < 0.0 |
| 374 | && v0 - resample_filter->Vlimit > (double) resample_filter->image->rows ) |
| 375 | || ( u0 - resample_filter->Ulimit > (double) resample_filter->image->columns |
| 376 | && v0 + resample_filter->Vlimit < 0.0 ) |
| 377 | || ( u0 - resample_filter->Ulimit > (double) resample_filter->image->columns |
| 378 | && v0 - resample_filter->Vlimit > (double) resample_filter->image->rows ) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 379 | ) |
| 380 | hit++; |
| 381 | break; |
| 382 | case HorizontalTileVirtualPixelMethod: |
anthony | d638d31 | 2010-09-15 13:13:01 +0000 | [diff] [blame] | 383 | if ( v0 + resample_filter->Vlimit < 0.0 |
| 384 | || v0 - resample_filter->Vlimit > (double) resample_filter->image->rows |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 385 | ) |
| 386 | hit++; /* outside the horizontally tiled images. */ |
| 387 | break; |
| 388 | case VerticalTileVirtualPixelMethod: |
anthony | d638d31 | 2010-09-15 13:13:01 +0000 | [diff] [blame] | 389 | if ( u0 + resample_filter->Ulimit < 0.0 |
| 390 | || u0 - resample_filter->Ulimit > (double) resample_filter->image->columns |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 391 | ) |
| 392 | hit++; /* outside the vertically tiled images. */ |
| 393 | break; |
| 394 | case DitherVirtualPixelMethod: |
anthony | d638d31 | 2010-09-15 13:13:01 +0000 | [diff] [blame] | 395 | if ( ( u0 + resample_filter->Ulimit < -32.0 && v0 + resample_filter->Vlimit < -32.0 ) |
| 396 | || ( u0 + resample_filter->Ulimit < -32.0 |
| 397 | && v0 - resample_filter->Vlimit > (double) resample_filter->image->rows+32.0 ) |
| 398 | || ( u0 - resample_filter->Ulimit > (double) resample_filter->image->columns+32.0 |
| 399 | && v0 + resample_filter->Vlimit < -32.0 ) |
| 400 | || ( u0 - resample_filter->Ulimit > (double) resample_filter->image->columns+32.0 |
| 401 | && v0 - resample_filter->Vlimit > (double) resample_filter->image->rows+32.0 ) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 402 | ) |
| 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 ) { |
| 415 | /* whole area is a solid color -- just return that color */ |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 416 | status=InterpolatePixelInfo(resample_filter->image, |
cristy | d76c51e | 2011-03-26 00:21:26 +0000 | [diff] [blame] | 417 | resample_filter->view,IntegerInterpolatePixel,u0,v0,pixel, |
| 418 | resample_filter->exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 419 | return(status); |
| 420 | } |
| 421 | |
| 422 | /* |
| 423 | Scaling limits reached, return an 'averaged' result. |
| 424 | */ |
| 425 | if ( resample_filter->limit_reached ) { |
| 426 | switch ( resample_filter->virtual_pixel ) { |
| 427 | /* This is always handled by the above, so no need. |
| 428 | case BackgroundVirtualPixelMethod: |
| 429 | case ConstantVirtualPixelMethod: |
| 430 | case TransparentVirtualPixelMethod: |
| 431 | case GrayVirtualPixelMethod, |
| 432 | case WhiteVirtualPixelMethod |
| 433 | case MaskVirtualPixelMethod: |
| 434 | */ |
| 435 | case UndefinedVirtualPixelMethod: |
| 436 | case EdgeVirtualPixelMethod: |
| 437 | case DitherVirtualPixelMethod: |
| 438 | case HorizontalTileEdgeVirtualPixelMethod: |
| 439 | case VerticalTileEdgeVirtualPixelMethod: |
anthony | 9b8a528 | 2010-09-15 07:48:39 +0000 | [diff] [blame] | 440 | /* We need an average edge pixel, from the correct edge! |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 441 | How should I calculate an average edge color? |
| 442 | Just returning an averaged neighbourhood, |
| 443 | works well in general, but falls down for TileEdge methods. |
| 444 | This needs to be done properly!!!!!! |
| 445 | */ |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 446 | status=InterpolatePixelInfo(resample_filter->image, |
cristy | d76c51e | 2011-03-26 00:21:26 +0000 | [diff] [blame] | 447 | resample_filter->view,AverageInterpolatePixel,u0,v0,pixel, |
| 448 | resample_filter->exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 449 | break; |
| 450 | case HorizontalTileVirtualPixelMethod: |
| 451 | case VerticalTileVirtualPixelMethod: |
| 452 | /* just return the background pixel - Is there more direct way? */ |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 453 | status=InterpolatePixelInfo(resample_filter->image, |
cristy | d76c51e | 2011-03-26 00:21:26 +0000 | [diff] [blame] | 454 | resample_filter->view,IntegerInterpolatePixel,-1.0,-1.0,pixel, |
| 455 | resample_filter->exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 456 | break; |
| 457 | case TileVirtualPixelMethod: |
| 458 | case MirrorVirtualPixelMethod: |
| 459 | case RandomVirtualPixelMethod: |
| 460 | case CheckerTileVirtualPixelMethod: |
| 461 | default: |
| 462 | /* generate a average color of the WHOLE image */ |
| 463 | if ( resample_filter->average_defined == MagickFalse ) { |
| 464 | Image |
| 465 | *average_image; |
| 466 | |
| 467 | CacheView |
| 468 | *average_view; |
| 469 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 470 | GetPixelInfo(resample_filter->image,(PixelInfo *) |
cristy | 065f8be | 2010-10-16 00:21:58 +0000 | [diff] [blame] | 471 | &resample_filter->average_pixel); |
| 472 | resample_filter->average_defined=MagickTrue; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 473 | |
| 474 | /* Try to get an averaged pixel color of whole image */ |
cristy | aa2c16c | 2012-03-25 22:21:35 +0000 | [diff] [blame] | 475 | average_image=ResizeImage(resample_filter->image,1,1,BoxFilter, |
cristy | 065f8be | 2010-10-16 00:21:58 +0000 | [diff] [blame] | 476 | resample_filter->exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 477 | if (average_image == (Image *) NULL) |
| 478 | { |
| 479 | *pixel=resample_filter->average_pixel; /* FAILED */ |
| 480 | break; |
| 481 | } |
cristy | db07095 | 2012-04-20 14:33:00 +0000 | [diff] [blame] | 482 | average_view=AcquireVirtualCacheView(average_image,exception); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 483 | pixels=GetCacheViewVirtualPixels(average_view,0,0,1,1, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 484 | resample_filter->exception); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 485 | if (pixels == (const Quantum *) NULL) { |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 486 | average_view=DestroyCacheView(average_view); |
| 487 | average_image=DestroyImage(average_image); |
| 488 | *pixel=resample_filter->average_pixel; /* FAILED */ |
| 489 | break; |
| 490 | } |
cristy | 803640d | 2011-11-17 02:11:32 +0000 | [diff] [blame] | 491 | GetPixelInfoPixel(resample_filter->image,pixels, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 492 | &(resample_filter->average_pixel)); |
| 493 | average_view=DestroyCacheView(average_view); |
| 494 | average_image=DestroyImage(average_image); |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 495 | |
| 496 | if ( resample_filter->virtual_pixel == CheckerTileVirtualPixelMethod ) |
| 497 | { |
anthony | 9cb63cc | 2012-04-25 06:10:49 +0000 | [diff] [blame] | 498 | /* CheckerTile is a alpha blend of the image's average pixel |
| 499 | color and the current background color */ |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 500 | |
anthony | 9cb63cc | 2012-04-25 06:10:49 +0000 | [diff] [blame] | 501 | /* image's average pixel color */ |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 502 | weight = QuantumScale*((MagickRealType) |
| 503 | resample_filter->average_pixel.alpha); |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 504 | resample_filter->average_pixel.red *= weight; |
| 505 | resample_filter->average_pixel.green *= weight; |
| 506 | resample_filter->average_pixel.blue *= weight; |
| 507 | divisor_c = weight; |
| 508 | |
anthony | 9cb63cc | 2012-04-25 06:10:49 +0000 | [diff] [blame] | 509 | /* background color */ |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 510 | weight = QuantumScale*((MagickRealType) |
| 511 | resample_filter->image->background_color.alpha); |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 512 | resample_filter->average_pixel.red += |
| 513 | weight*resample_filter->image->background_color.red; |
| 514 | resample_filter->average_pixel.green += |
| 515 | weight*resample_filter->image->background_color.green; |
| 516 | resample_filter->average_pixel.blue += |
| 517 | weight*resample_filter->image->background_color.blue; |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 518 | resample_filter->average_pixel.alpha += |
| 519 | resample_filter->image->background_color.alpha; |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 520 | divisor_c += weight; |
| 521 | |
anthony | 9cb63cc | 2012-04-25 06:10:49 +0000 | [diff] [blame] | 522 | /* alpha blend */ |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 523 | resample_filter->average_pixel.red /= divisor_c; |
| 524 | resample_filter->average_pixel.green /= divisor_c; |
| 525 | resample_filter->average_pixel.blue /= divisor_c; |
anthony | 9cb63cc | 2012-04-25 06:10:49 +0000 | [diff] [blame] | 526 | resample_filter->average_pixel.alpha /= 2; /* 50% blend */ |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 527 | |
| 528 | } |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 529 | } |
| 530 | *pixel=resample_filter->average_pixel; |
| 531 | break; |
| 532 | } |
| 533 | return(status); |
| 534 | } |
| 535 | |
| 536 | /* |
| 537 | Initialize weighted average data collection |
| 538 | */ |
| 539 | hit = 0; |
| 540 | divisor_c = 0.0; |
| 541 | divisor_m = 0.0; |
| 542 | pixel->red = pixel->green = pixel->blue = 0.0; |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 543 | if (pixel->colorspace == CMYKColorspace) |
| 544 | pixel->black = 0.0; |
| 545 | if (pixel->matte != MagickFalse) |
| 546 | pixel->alpha = 0.0; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 547 | |
| 548 | /* |
| 549 | Determine the parellelogram bounding box fitted to the ellipse |
| 550 | centered at u0,v0. This area is bounding by the lines... |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 551 | */ |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 552 | v1 = (ssize_t)ceil(v0 - resample_filter->Vlimit); /* range of scan lines */ |
| 553 | v2 = (ssize_t)floor(v0 + resample_filter->Vlimit); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 554 | |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 555 | /* scan line start and width accross the parallelogram */ |
| 556 | u1 = u0 + (v1-v0)*resample_filter->slope - resample_filter->Uwidth; |
| 557 | uw = (ssize_t)(2.0*resample_filter->Uwidth)+1; |
| 558 | |
| 559 | #if DEBUG_ELLIPSE |
cristy | 5acdd94 | 2011-05-27 19:45:39 +0000 | [diff] [blame] | 560 | (void) FormatLocaleFile(stderr, "v1=%ld; v2=%ld\n", (long)v1, (long)v2); |
| 561 | (void) FormatLocaleFile(stderr, "u1=%ld; uw=%ld\n", (long)u1, (long)uw); |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 562 | #else |
| 563 | # define DEBUG_HIT_MISS 0 /* only valid if DEBUG_ELLIPSE is enabled */ |
| 564 | #endif |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 565 | |
| 566 | /* |
| 567 | Do weighted resampling of all pixels, within the scaled ellipse, |
| 568 | bound by a Parellelogram fitted to the ellipse. |
| 569 | */ |
| 570 | DDQ = 2*resample_filter->A; |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 571 | for( v=v1; v<=v2; v++ ) { |
| 572 | #if DEBUG_HIT_MISS |
| 573 | long uu = ceil(u1); /* actual pixel location (for debug only) */ |
cristy | 5acdd94 | 2011-05-27 19:45:39 +0000 | [diff] [blame] | 574 | (void) FormatLocaleFile(stderr, "# scan line from pixel %ld, %ld\n", (long)uu, (long)v); |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 575 | #endif |
| 576 | u = (ssize_t)ceil(u1); /* first pixel in scanline */ |
| 577 | u1 += resample_filter->slope; /* start of next scan line */ |
| 578 | |
| 579 | |
| 580 | /* location of this first pixel, relative to u0,v0 */ |
| 581 | U = (double)u-u0; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 582 | V = (double)v-v0; |
| 583 | |
| 584 | /* Q = ellipse quotent ( if Q<F then pixel is inside ellipse) */ |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 585 | Q = (resample_filter->A*U + resample_filter->B*V)*U + resample_filter->C*V*V; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 586 | DQ = resample_filter->A*(2.0*U+1) + resample_filter->B*V; |
| 587 | |
| 588 | /* get the scanline of pixels for this v */ |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 589 | pixels=GetCacheViewVirtualPixels(resample_filter->view,u,v,(size_t) uw, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 590 | 1,resample_filter->exception); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 591 | if (pixels == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 592 | return(MagickFalse); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 593 | |
| 594 | /* count up the weighted pixel colors */ |
| 595 | for( u=0; u<uw; u++ ) { |
anthony | 5b697cd | 2010-10-10 03:48:57 +0000 | [diff] [blame] | 596 | #if FILTER_LUT |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 597 | /* Note that the ellipse has been pre-scaled so F = WLUT_WIDTH */ |
| 598 | if ( Q < (double)WLUT_WIDTH ) { |
| 599 | weight = resample_filter->filter_lut[(int)Q]; |
anthony | 5b697cd | 2010-10-10 03:48:57 +0000 | [diff] [blame] | 600 | #else |
| 601 | /* Note that the ellipse has been pre-scaled so F = support^2 */ |
anthony | 582b6d7 | 2010-10-10 06:45:41 +0000 | [diff] [blame] | 602 | if ( Q < (double)resample_filter->F ) { |
| 603 | weight = GetResizeFilterWeight(resample_filter->filter_def, |
| 604 | sqrt(Q)); /* a SquareRoot! Arrggghhhhh... */ |
anthony | 5b697cd | 2010-10-10 03:48:57 +0000 | [diff] [blame] | 605 | #endif |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 606 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 607 | pixel->alpha += weight*GetPixelAlpha(resample_filter->image,pixels); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 608 | divisor_m += weight; |
| 609 | |
cristy | cb18092 | 2011-03-11 14:41:24 +0000 | [diff] [blame] | 610 | if (pixel->matte != MagickFalse) |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 611 | weight *= QuantumScale*((MagickRealType) GetPixelAlpha(resample_filter->image,pixels)); |
| 612 | pixel->red += weight*GetPixelRed(resample_filter->image,pixels); |
| 613 | pixel->green += weight*GetPixelGreen(resample_filter->image,pixels); |
| 614 | pixel->blue += weight*GetPixelBlue(resample_filter->image,pixels); |
cristy | 2ab242e | 2011-03-11 02:45:46 +0000 | [diff] [blame] | 615 | if (pixel->colorspace == CMYKColorspace) |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 616 | pixel->black += weight*GetPixelBlack(resample_filter->image,pixels); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 617 | divisor_c += weight; |
| 618 | |
| 619 | hit++; |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 620 | #if DEBUG_HIT_MISS |
| 621 | /* mark the pixel according to hit/miss of the ellipse */ |
cristy | 5acdd94 | 2011-05-27 19:45:39 +0000 | [diff] [blame] | 622 | (void) FormatLocaleFile(stderr, "set arrow from %lf,%lf to %lf,%lf nohead ls 3\n", |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 623 | (long)uu-.1,(double)v-.1,(long)uu+.1,(long)v+.1); |
cristy | 5acdd94 | 2011-05-27 19:45:39 +0000 | [diff] [blame] | 624 | (void) FormatLocaleFile(stderr, "set arrow from %lf,%lf to %lf,%lf nohead ls 3\n", |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 625 | (long)uu+.1,(double)v-.1,(long)uu-.1,(long)v+.1); |
| 626 | } else { |
cristy | 5acdd94 | 2011-05-27 19:45:39 +0000 | [diff] [blame] | 627 | (void) FormatLocaleFile(stderr, "set arrow from %lf,%lf to %lf,%lf nohead ls 1\n", |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 628 | (long)uu-.1,(double)v-.1,(long)uu+.1,(long)v+.1); |
cristy | 5acdd94 | 2011-05-27 19:45:39 +0000 | [diff] [blame] | 629 | (void) FormatLocaleFile(stderr, "set arrow from %lf,%lf to %lf,%lf nohead ls 1\n", |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 630 | (long)uu+.1,(double)v-.1,(long)uu-.1,(long)v+.1); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 631 | } |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 632 | uu++; |
| 633 | #else |
| 634 | } |
| 635 | #endif |
cristy | ed23157 | 2011-07-14 02:18:59 +0000 | [diff] [blame] | 636 | pixels+=GetPixelChannels(resample_filter->image); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 637 | Q += DQ; |
| 638 | DQ += DDQ; |
| 639 | } |
| 640 | } |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 641 | #if DEBUG_ELLIPSE |
cristy | 5acdd94 | 2011-05-27 19:45:39 +0000 | [diff] [blame] | 642 | (void) FormatLocaleFile(stderr, "Hit=%ld; Total=%ld;\n", (long)hit, (long)uw*(v2-v1) ); |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 643 | #endif |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 644 | |
| 645 | /* |
| 646 | Result sanity check -- this should NOT happen |
| 647 | */ |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 648 | if ( hit == 0 ) { |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 649 | /* not enough pixels in resampling, resort to direct interpolation */ |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 650 | #if DEBUG_NO_PIXEL_HIT |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 651 | pixel->alpha = pixel->red = pixel->green = pixel->blue = 0; |
anthony | 9b8a528 | 2010-09-15 07:48:39 +0000 | [diff] [blame] | 652 | pixel->red = QuantumRange; /* show pixels for which EWA fails */ |
| 653 | #else |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 654 | status=InterpolatePixelInfo(resample_filter->image, |
cristy | d76c51e | 2011-03-26 00:21:26 +0000 | [diff] [blame] | 655 | resample_filter->view,resample_filter->interpolate,u0,v0,pixel, |
| 656 | resample_filter->exception); |
anthony | 9b8a528 | 2010-09-15 07:48:39 +0000 | [diff] [blame] | 657 | #endif |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 658 | return status; |
| 659 | } |
| 660 | |
| 661 | /* |
| 662 | Finialize results of resampling |
| 663 | */ |
| 664 | divisor_m = 1.0/divisor_m; |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 665 | pixel->alpha = (MagickRealType) ClampToQuantum(divisor_m*pixel->alpha); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 666 | divisor_c = 1.0/divisor_c; |
cristy | ce70c17 | 2010-01-07 17:15:30 +0000 | [diff] [blame] | 667 | pixel->red = (MagickRealType) ClampToQuantum(divisor_c*pixel->red); |
| 668 | pixel->green = (MagickRealType) ClampToQuantum(divisor_c*pixel->green); |
| 669 | pixel->blue = (MagickRealType) ClampToQuantum(divisor_c*pixel->blue); |
cristy | 2ab242e | 2011-03-11 02:45:46 +0000 | [diff] [blame] | 670 | if (pixel->colorspace == CMYKColorspace) |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 671 | pixel->black = (MagickRealType) ClampToQuantum(divisor_c*pixel->black); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 672 | return(MagickTrue); |
| 673 | } |
| 674 | |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 675 | #if EWA && EWA_CLAMP |
| 676 | /* |
| 677 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 678 | % % |
| 679 | % % |
| 680 | % % |
| 681 | - C l a m p U p A x e s % |
| 682 | % % |
| 683 | % % |
| 684 | % % |
| 685 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 686 | % |
nicolas | c90935c | 2010-09-27 16:47:39 +0000 | [diff] [blame] | 687 | % ClampUpAxes() function converts the input vectors into a major and |
nicolas | 40ae463 | 2010-10-28 13:03:53 +0000 | [diff] [blame] | 688 | % minor axis unit vectors, and their magnitude. This allows us to |
| 689 | % ensure that the ellipse generated is never smaller than the unit |
nicolas | c90935c | 2010-09-27 16:47:39 +0000 | [diff] [blame] | 690 | % circle and thus never too small for use in EWA resampling. |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 691 | % |
nicolas | c90935c | 2010-09-27 16:47:39 +0000 | [diff] [blame] | 692 | % This purely mathematical 'magic' was provided by Professor Nicolas |
| 693 | % Robidoux and his Masters student Chantal Racette. |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 694 | % |
nicolas | 40ae463 | 2010-10-28 13:03:53 +0000 | [diff] [blame] | 695 | % Reference: "We Recommend Singular Value Decomposition", David Austin |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 696 | % http://www.ams.org/samplings/feature-column/fcarc-svd |
| 697 | % |
nicolas | 40ae463 | 2010-10-28 13:03:53 +0000 | [diff] [blame] | 698 | % By generating major and minor axis vectors, we can actually use the |
nicolas | c90935c | 2010-09-27 16:47:39 +0000 | [diff] [blame] | 699 | % ellipse in its "canonical form", by remapping the dx,dy of the |
| 700 | % sampled point into distances along the major and minor axis unit |
| 701 | % vectors. |
nicolas | 40ae463 | 2010-10-28 13:03:53 +0000 | [diff] [blame] | 702 | % |
| 703 | % Reference: http://en.wikipedia.org/wiki/Ellipse#Canonical_form |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 704 | */ |
nicolas | 15c331b | 2010-09-29 19:05:00 +0000 | [diff] [blame] | 705 | static inline void ClampUpAxes(const double dux, |
| 706 | const double dvx, |
| 707 | const double duy, |
| 708 | const double dvy, |
| 709 | double *major_mag, |
| 710 | double *minor_mag, |
| 711 | double *major_unit_x, |
| 712 | double *major_unit_y, |
| 713 | double *minor_unit_x, |
| 714 | double *minor_unit_y) |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 715 | { |
| 716 | /* |
| 717 | * ClampUpAxes takes an input 2x2 matrix |
| 718 | * |
| 719 | * [ a b ] = [ dux duy ] |
| 720 | * [ c d ] = [ dvx dvy ] |
| 721 | * |
| 722 | * and computes from it the major and minor axis vectors [major_x, |
| 723 | * major_y] and [minor_x,minor_y] of the smallest ellipse containing |
| 724 | * both the unit disk and the ellipse which is the image of the unit |
| 725 | * disk by the linear transformation |
| 726 | * |
| 727 | * [ dux duy ] [S] = [s] |
| 728 | * [ dvx dvy ] [T] = [t] |
| 729 | * |
| 730 | * (The vector [S,T] is the difference between a position in output |
| 731 | * space and [X,Y]; the vector [s,t] is the difference between a |
| 732 | * position in input space and [x,y].) |
| 733 | */ |
| 734 | /* |
nicolas | 082f7e4 | 2011-05-04 05:34:48 +0000 | [diff] [blame] | 735 | * Output: |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 736 | * |
| 737 | * major_mag is the half-length of the major axis of the "new" |
nicolas | 40ae463 | 2010-10-28 13:03:53 +0000 | [diff] [blame] | 738 | * ellipse. |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 739 | * |
| 740 | * minor_mag is the half-length of the minor axis of the "new" |
nicolas | 40ae463 | 2010-10-28 13:03:53 +0000 | [diff] [blame] | 741 | * ellipse. |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 742 | * |
| 743 | * major_unit_x is the x-coordinate of the major axis direction vector |
| 744 | * of both the "old" and "new" ellipses. |
| 745 | * |
| 746 | * major_unit_y is the y-coordinate of the major axis direction vector. |
| 747 | * |
| 748 | * minor_unit_x is the x-coordinate of the minor axis direction vector. |
| 749 | * |
| 750 | * minor_unit_y is the y-coordinate of the minor axis direction vector. |
| 751 | * |
| 752 | * Unit vectors are useful for computing projections, in particular, |
| 753 | * to compute the distance between a point in output space and the |
nicolas | 082f7e4 | 2011-05-04 05:34:48 +0000 | [diff] [blame] | 754 | * center of a unit disk in output space, using the position of the |
| 755 | * corresponding point [s,t] in input space. Following the clamping, |
| 756 | * the square of this distance is |
| 757 | * |
| 758 | * ( ( s * major_unit_x + t * major_unit_y ) / major_mag )^2 |
| 759 | * + |
| 760 | * ( ( s * minor_unit_x + t * minor_unit_y ) / minor_mag )^2 |
| 761 | * |
| 762 | * If such distances will be computed for many [s,t]'s, it makes |
| 763 | * sense to actually compute the reciprocal of major_mag and |
| 764 | * minor_mag and multiply them by the above unit lengths. |
nicolas | c90935c | 2010-09-27 16:47:39 +0000 | [diff] [blame] | 765 | * |
| 766 | * Now, if you want to modify the input pair of tangent vectors so |
| 767 | * that it defines the modified ellipse, all you have to do is set |
| 768 | * |
nicolas | 8b1d981 | 2010-09-29 18:41:55 +0000 | [diff] [blame] | 769 | * newdux = major_mag * major_unit_x |
| 770 | * newdvx = major_mag * major_unit_y |
| 771 | * newduy = minor_mag * minor_unit_x = minor_mag * -major_unit_y |
| 772 | * newdvy = minor_mag * minor_unit_y = minor_mag * major_unit_x |
nicolas | c90935c | 2010-09-27 16:47:39 +0000 | [diff] [blame] | 773 | * |
nicolas | 932ef84 | 2010-10-27 16:05:12 +0000 | [diff] [blame] | 774 | * and use these tangent vectors as if they were the original ones. |
nicolas | 40ae463 | 2010-10-28 13:03:53 +0000 | [diff] [blame] | 775 | * Usually, this is a drastic change in the tangent vectors even if |
nicolas | c263aa7 | 2010-10-29 01:09:44 +0000 | [diff] [blame] | 776 | * the singular values are not clamped; for example, the minor axis |
| 777 | * vector always points in a direction which is 90 degrees |
| 778 | * counterclockwise from the direction of the major axis vector. |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 779 | */ |
| 780 | /* |
| 781 | * Discussion: |
| 782 | * |
| 783 | * GOAL: Fix things so that the pullback, in input space, of a disk |
| 784 | * of radius r in output space is an ellipse which contains, at |
| 785 | * least, a disc of radius r. (Make this hold for any r>0.) |
| 786 | * |
nicolas | 40ae463 | 2010-10-28 13:03:53 +0000 | [diff] [blame] | 787 | * ESSENCE OF THE METHOD: Compute the product of the first two |
| 788 | * factors of an SVD of the linear transformation defining the |
nicolas | f170e5f | 2010-10-27 13:21:30 +0000 | [diff] [blame] | 789 | * ellipse and make sure that both its columns have norm at least 1. |
| 790 | * Because rotations and reflexions map disks to themselves, it is |
nicolas | 40ae463 | 2010-10-28 13:03:53 +0000 | [diff] [blame] | 791 | * not necessary to compute the third (rightmost) factor of the SVD. |
nicolas | f170e5f | 2010-10-27 13:21:30 +0000 | [diff] [blame] | 792 | * |
| 793 | * DETAILS: Find the singular values and (unit) left singular |
| 794 | * vectors of Jinv, clampling up the singular values to 1, and |
nicolas | 932ef84 | 2010-10-27 16:05:12 +0000 | [diff] [blame] | 795 | * multiply the unit left singular vectors by the new singular |
nicolas | f170e5f | 2010-10-27 13:21:30 +0000 | [diff] [blame] | 796 | * values in order to get the minor and major ellipse axis vectors. |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 797 | * |
nicolas | 40ae463 | 2010-10-28 13:03:53 +0000 | [diff] [blame] | 798 | * Image resampling context: |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 799 | * |
| 800 | * The Jacobian matrix of the transformation at the output point |
| 801 | * under consideration is defined as follows: |
| 802 | * |
| 803 | * Consider the transformation (x,y) -> (X,Y) from input locations |
nicolas | 8b1d981 | 2010-09-29 18:41:55 +0000 | [diff] [blame] | 804 | * to output locations. (Anthony Thyssen, elsewhere in resample.c, |
nicolas | 40ae463 | 2010-10-28 13:03:53 +0000 | [diff] [blame] | 805 | * uses the notation (u,v) -> (x,y).) |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 806 | * |
nicolas | 40ae463 | 2010-10-28 13:03:53 +0000 | [diff] [blame] | 807 | * The Jacobian matrix of the transformation at (x,y) is equal to |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 808 | * |
nicolas | 40ae463 | 2010-10-28 13:03:53 +0000 | [diff] [blame] | 809 | * J = [ A, B ] = [ dX/dx, dX/dy ] |
| 810 | * [ C, D ] [ dY/dx, dY/dy ] |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 811 | * |
nicolas | 40ae463 | 2010-10-28 13:03:53 +0000 | [diff] [blame] | 812 | * that is, the vector [A,C] is the tangent vector corresponding to |
| 813 | * input changes in the horizontal direction, and the vector [B,D] |
| 814 | * is the tangent vector corresponding to input changes in the |
| 815 | * vertical direction. |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 816 | * |
nicolas | 40ae463 | 2010-10-28 13:03:53 +0000 | [diff] [blame] | 817 | * In the context of resampling, it is natural to use the inverse |
| 818 | * Jacobian matrix Jinv because resampling is generally performed by |
| 819 | * pulling pixel locations in the output image back to locations in |
| 820 | * the input image. Jinv is |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 821 | * |
nicolas | d002635 | 2011-05-09 15:46:42 +0000 | [diff] [blame] | 822 | * Jinv = [ a, b ] = [ dx/dX, dx/dY ] |
nicolas | 40ae463 | 2010-10-28 13:03:53 +0000 | [diff] [blame] | 823 | * [ c, d ] [ dy/dX, dy/dY ] |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 824 | * |
| 825 | * Note: Jinv can be computed from J with the following matrix |
| 826 | * formula: |
| 827 | * |
nicolas | c90935c | 2010-09-27 16:47:39 +0000 | [diff] [blame] | 828 | * Jinv = 1/(A*D-B*C) [ D, -B ] |
| 829 | * [ -C, A ] |
| 830 | * |
nicolas | 40ae463 | 2010-10-28 13:03:53 +0000 | [diff] [blame] | 831 | * What we do is modify Jinv so that it generates an ellipse which |
| 832 | * is as close as possible to the original but which contains the |
| 833 | * unit disk. This can be accomplished as follows: |
nicolas | c90935c | 2010-09-27 16:47:39 +0000 | [diff] [blame] | 834 | * |
| 835 | * Let |
| 836 | * |
| 837 | * Jinv = U Sigma V^T |
| 838 | * |
nicolas | 932ef84 | 2010-10-27 16:05:12 +0000 | [diff] [blame] | 839 | * be an SVD decomposition of Jinv. (The SVD is not unique, but the |
nicolas | 40ae463 | 2010-10-28 13:03:53 +0000 | [diff] [blame] | 840 | * final ellipse does not depend on the particular SVD.) |
cristy | cb18092 | 2011-03-11 14:41:24 +0000 | [diff] [blame] | 841 | * |
nicolas | 40ae463 | 2010-10-28 13:03:53 +0000 | [diff] [blame] | 842 | * We could clamp up the entries of the diagonal matrix Sigma so |
| 843 | * that they are at least 1, and then set |
nicolas | c90935c | 2010-09-27 16:47:39 +0000 | [diff] [blame] | 844 | * |
| 845 | * Jinv = U newSigma V^T. |
| 846 | * |
nicolas | 40ae463 | 2010-10-28 13:03:53 +0000 | [diff] [blame] | 847 | * However, we do not need to compute V for the following reason: |
| 848 | * V^T is an orthogonal matrix (that is, it represents a combination |
| 849 | * of rotations and reflexions) so that it maps the unit circle to |
| 850 | * itself. For this reason, the exact value of V does not affect the |
| 851 | * final ellipse, and we can choose V to be the identity |
| 852 | * matrix. This gives |
nicolas | c90935c | 2010-09-27 16:47:39 +0000 | [diff] [blame] | 853 | * |
nicolas | 40ae463 | 2010-10-28 13:03:53 +0000 | [diff] [blame] | 854 | * Jinv = U newSigma. |
nicolas | c90935c | 2010-09-27 16:47:39 +0000 | [diff] [blame] | 855 | * |
nicolas | 40ae463 | 2010-10-28 13:03:53 +0000 | [diff] [blame] | 856 | * In the end, we return the two diagonal entries of newSigma |
| 857 | * together with the two columns of U. |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 858 | */ |
| 859 | /* |
| 860 | * ClampUpAxes was written by Nicolas Robidoux and Chantal Racette |
nicolas | 47b9565 | 2010-11-09 20:51:33 +0000 | [diff] [blame] | 861 | * of Laurentian University with insightful suggestions from Anthony |
| 862 | * Thyssen and funding from the National Science and Engineering |
| 863 | * Research Council of Canada. It is distinguished from its |
| 864 | * predecessors by its efficient handling of degenerate cases. |
nicolas | 703291a | 2010-09-27 18:21:32 +0000 | [diff] [blame] | 865 | * |
nicolas | 8c741cc | 2010-11-09 20:37:24 +0000 | [diff] [blame] | 866 | * The idea of clamping up the EWA ellipse's major and minor axes so |
| 867 | * that the result contains the reconstruction kernel filter support |
nicolas | 47b9565 | 2010-11-09 20:51:33 +0000 | [diff] [blame] | 868 | * is taken from Andreas Gustaffson's Masters thesis "Interactive |
| 869 | * Image Warping", Helsinki University of Technology, Faculty of |
| 870 | * Information Technology, 59 pages, 1993 (see Section 3.6). |
nicolas | 8c741cc | 2010-11-09 20:37:24 +0000 | [diff] [blame] | 871 | * |
nicolas | 47b9565 | 2010-11-09 20:51:33 +0000 | [diff] [blame] | 872 | * The use of the SVD to clamp up the singular values of the |
| 873 | * Jacobian matrix of the pullback transformation for EWA resampling |
| 874 | * is taken from the astrophysicist Craig DeForest. It is |
| 875 | * implemented in his PDL::Transform code (PDL = Perl Data |
| 876 | * Language). |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 877 | */ |
| 878 | const double a = dux; |
| 879 | const double b = duy; |
| 880 | const double c = dvx; |
| 881 | const double d = dvy; |
| 882 | /* |
| 883 | * n is the matrix Jinv * transpose(Jinv). Eigenvalues of n are the |
| 884 | * squares of the singular values of Jinv. |
| 885 | */ |
| 886 | const double aa = a*a; |
| 887 | const double bb = b*b; |
| 888 | const double cc = c*c; |
| 889 | const double dd = d*d; |
| 890 | /* |
| 891 | * Eigenvectors of n are left singular vectors of Jinv. |
| 892 | */ |
| 893 | const double n11 = aa+bb; |
| 894 | const double n12 = a*c+b*d; |
| 895 | const double n21 = n12; |
| 896 | const double n22 = cc+dd; |
| 897 | const double det = a*d-b*c; |
| 898 | const double twice_det = det+det; |
| 899 | const double frobenius_squared = n11+n22; |
| 900 | const double discriminant = |
| 901 | (frobenius_squared+twice_det)*(frobenius_squared-twice_det); |
| 902 | const double sqrt_discriminant = sqrt(discriminant); |
| 903 | /* |
| 904 | * s1 is the largest singular value of the inverse Jacobian |
| 905 | * matrix. In other words, its reciprocal is the smallest singular |
| 906 | * value of the Jacobian matrix itself. |
| 907 | * If s1 = 0, both singular values are 0, and any orthogonal pair of |
| 908 | * left and right factors produces a singular decomposition of Jinv. |
nicolas | c90935c | 2010-09-27 16:47:39 +0000 | [diff] [blame] | 909 | */ |
| 910 | /* |
nicolas | 8b1d981 | 2010-09-29 18:41:55 +0000 | [diff] [blame] | 911 | * Initially, we only compute the squares of the singular values. |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 912 | */ |
| 913 | const double s1s1 = 0.5*(frobenius_squared+sqrt_discriminant); |
| 914 | /* |
| 915 | * s2 the smallest singular value of the inverse Jacobian |
| 916 | * matrix. Its reciprocal is the largest singular value of the |
| 917 | * Jacobian matrix itself. |
| 918 | */ |
| 919 | const double s2s2 = 0.5*(frobenius_squared-sqrt_discriminant); |
| 920 | const double s1s1minusn11 = s1s1-n11; |
| 921 | const double s1s1minusn22 = s1s1-n22; |
| 922 | /* |
| 923 | * u1, the first column of the U factor of a singular decomposition |
| 924 | * of Jinv, is a (non-normalized) left singular vector corresponding |
nicolas | c90935c | 2010-09-27 16:47:39 +0000 | [diff] [blame] | 925 | * to s1. It has entries u11 and u21. We compute u1 from the fact |
| 926 | * that it is an eigenvector of n corresponding to the eigenvalue |
| 927 | * s1^2. |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 928 | */ |
| 929 | const double s1s1minusn11_squared = s1s1minusn11*s1s1minusn11; |
| 930 | const double s1s1minusn22_squared = s1s1minusn22*s1s1minusn22; |
| 931 | /* |
| 932 | * The following selects the largest row of n-s1^2 I as the one |
| 933 | * which is used to find the eigenvector. If both s1^2-n11 and |
| 934 | * s1^2-n22 are zero, n-s1^2 I is the zero matrix. In that case, |
| 935 | * any vector is an eigenvector; in addition, norm below is equal to |
| 936 | * zero, and, in exact arithmetic, this is the only case in which |
| 937 | * norm = 0. So, setting u1 to the simple but arbitrary vector [1,0] |
| 938 | * if norm = 0 safely takes care of all cases. |
| 939 | */ |
| 940 | const double temp_u11 = |
| 941 | ( (s1s1minusn11_squared>=s1s1minusn22_squared) ? n12 : s1s1minusn22 ); |
| 942 | const double temp_u21 = |
| 943 | ( (s1s1minusn11_squared>=s1s1minusn22_squared) ? s1s1minusn11 : n21 ); |
| 944 | const double norm = sqrt(temp_u11*temp_u11+temp_u21*temp_u21); |
| 945 | /* |
| 946 | * Finalize the entries of first left singular vector (associated |
| 947 | * with the largest singular value). |
| 948 | */ |
| 949 | const double u11 = ( (norm>0.0) ? temp_u11/norm : 1.0 ); |
| 950 | const double u21 = ( (norm>0.0) ? temp_u21/norm : 0.0 ); |
| 951 | /* |
| 952 | * Clamp the singular values up to 1. |
| 953 | */ |
nicolas | ed22721 | 2010-09-27 17:24:57 +0000 | [diff] [blame] | 954 | *major_mag = ( (s1s1<=1.0) ? 1.0 : sqrt(s1s1) ); |
| 955 | *minor_mag = ( (s2s2<=1.0) ? 1.0 : sqrt(s2s2) ); |
nicolas | c90935c | 2010-09-27 16:47:39 +0000 | [diff] [blame] | 956 | /* |
| 957 | * Return the unit major and minor axis direction vectors. |
| 958 | */ |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 959 | *major_unit_x = u11; |
| 960 | *major_unit_y = u21; |
nicolas | c90935c | 2010-09-27 16:47:39 +0000 | [diff] [blame] | 961 | *minor_unit_x = -u21; |
| 962 | *minor_unit_y = u11; |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 963 | } |
| 964 | |
| 965 | #endif |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 966 | /* |
| 967 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 968 | % % |
| 969 | % % |
| 970 | % % |
| 971 | % S c a l e R e s a m p l e F i l t e r % |
| 972 | % % |
| 973 | % % |
| 974 | % % |
| 975 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 976 | % |
| 977 | % ScaleResampleFilter() does all the calculations needed to resample an image |
| 978 | % at a specific scale, defined by two scaling vectors. This not using |
| 979 | % a orthogonal scaling, but two distorted scaling vectors, to allow the |
| 980 | % generation of a angled ellipse. |
| 981 | % |
| 982 | % As only two deritive scaling vectors are used the center of the ellipse |
| 983 | % must be the center of the lookup. That is any curvature that the |
| 984 | % distortion may produce is discounted. |
| 985 | % |
| 986 | % The input vectors are produced by either finding the derivitives of the |
| 987 | % distortion function, or the partial derivitives from a distortion mapping. |
| 988 | % They do not need to be the orthogonal dx,dy scaling vectors, but can be |
| 989 | % calculated from other derivatives. For example you could use dr,da/r |
| 990 | % polar coordinate vector scaling vectors |
| 991 | % |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 992 | % If u,v = DistortEquation(x,y) OR u = Fu(x,y); v = Fv(x,y) |
| 993 | % Then the scaling vectors are determined from the deritives... |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 994 | % du/dx, dv/dx and du/dy, dv/dy |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 995 | % If the resulting scaling vectors is othogonally aligned then... |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 996 | % dv/dx = 0 and du/dy = 0 |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 997 | % Producing an othogonally alligned ellipse in source space for the area to |
| 998 | % be resampled. |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 999 | % |
| 1000 | % Note that scaling vectors are different to argument order. Argument order |
| 1001 | % is the general order the deritives are extracted from the distortion |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 1002 | % equations, and not the scaling vectors. As such the middle two vaules |
| 1003 | % may be swapped from what you expect. Caution is advised. |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1004 | % |
anthony | 3ebea1e | 2010-09-27 13:29:00 +0000 | [diff] [blame] | 1005 | % WARNING: It is assumed that any SetResampleFilter() method call will |
| 1006 | % always be performed before the ScaleResampleFilter() method, so that the |
| 1007 | % size of the ellipse will match the support for the resampling filter being |
| 1008 | % used. |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 1009 | % |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1010 | % The format of the ScaleResampleFilter method is: |
| 1011 | % |
| 1012 | % void ScaleResampleFilter(const ResampleFilter *resample_filter, |
| 1013 | % const double dux,const double duy,const double dvx,const double dvy) |
| 1014 | % |
| 1015 | % A description of each parameter follows: |
| 1016 | % |
| 1017 | % o resample_filter: the resampling resample_filterrmation defining the |
| 1018 | % image being resampled |
| 1019 | % |
| 1020 | % o dux,duy,dvx,dvy: |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 1021 | % The deritives or scaling vectors defining the EWA ellipse. |
| 1022 | % NOTE: watch the order, which is based on the order deritives |
| 1023 | % are usally determined from distortion equations (see above). |
| 1024 | % The middle two values may need to be swapped if you are thinking |
| 1025 | % in terms of scaling vectors. |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1026 | % |
| 1027 | */ |
| 1028 | MagickExport void ScaleResampleFilter(ResampleFilter *resample_filter, |
| 1029 | const double dux,const double duy,const double dvx,const double dvy) |
| 1030 | { |
anthony | d638d31 | 2010-09-15 13:13:01 +0000 | [diff] [blame] | 1031 | double A,B,C,F; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1032 | |
| 1033 | assert(resample_filter != (ResampleFilter *) NULL); |
| 1034 | assert(resample_filter->signature == MagickSignature); |
| 1035 | |
| 1036 | resample_filter->limit_reached = MagickFalse; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1037 | |
anthony | b821aaf | 2010-09-27 13:21:08 +0000 | [diff] [blame] | 1038 | /* A 'point' filter forces use of interpolation instead of area sampling */ |
| 1039 | if ( resample_filter->filter == PointFilter ) |
| 1040 | return; /* EWA turned off - nothing to do */ |
| 1041 | |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 1042 | #if DEBUG_ELLIPSE |
cristy | 5acdd94 | 2011-05-27 19:45:39 +0000 | [diff] [blame] | 1043 | (void) FormatLocaleFile(stderr, "# -----\n" ); |
| 1044 | (void) FormatLocaleFile(stderr, "dux=%lf; dvx=%lf; duy=%lf; dvy=%lf;\n", |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 1045 | dux, dvx, duy, dvy); |
| 1046 | #endif |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1047 | |
| 1048 | /* Find Ellipse Coefficents such that |
| 1049 | A*u^2 + B*u*v + C*v^2 = F |
| 1050 | With u,v relative to point around which we are resampling. |
| 1051 | And the given scaling dx,dy vectors in u,v space |
| 1052 | du/dx,dv/dx and du/dy,dv/dy |
| 1053 | */ |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 1054 | #if EWA |
anthony | d638d31 | 2010-09-15 13:13:01 +0000 | [diff] [blame] | 1055 | /* Direct conversion of derivatives into elliptical coefficients |
anthony | b821aaf | 2010-09-27 13:21:08 +0000 | [diff] [blame] | 1056 | However when magnifying images, the scaling vectors will be small |
| 1057 | resulting in a ellipse that is too small to sample properly. |
| 1058 | As such we need to clamp the major/minor axis to a minumum of 1.0 |
| 1059 | to prevent it getting too small. |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1060 | */ |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 1061 | #if EWA_CLAMP |
| 1062 | { double major_mag, |
| 1063 | minor_mag, |
| 1064 | major_x, |
| 1065 | major_y, |
| 1066 | minor_x, |
| 1067 | minor_y; |
| 1068 | |
| 1069 | ClampUpAxes(dux,dvx,duy,dvy, &major_mag, &minor_mag, |
| 1070 | &major_x, &major_y, &minor_x, &minor_y); |
anthony | bdfddb0 | 2010-10-05 00:06:45 +0000 | [diff] [blame] | 1071 | major_x *= major_mag; major_y *= major_mag; |
| 1072 | minor_x *= minor_mag; minor_y *= minor_mag; |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 1073 | #if DEBUG_ELLIPSE |
cristy | 5acdd94 | 2011-05-27 19:45:39 +0000 | [diff] [blame] | 1074 | (void) FormatLocaleFile(stderr, "major_x=%lf; major_y=%lf; minor_x=%lf; minor_y=%lf;\n", |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 1075 | major_x, major_y, minor_x, minor_y); |
| 1076 | #endif |
| 1077 | A = major_y*major_y+minor_y*minor_y; |
| 1078 | B = -2.0*(major_x*major_y+minor_x*minor_y); |
| 1079 | C = major_x*major_x+minor_x*minor_x; |
nicolas | eaa0862 | 2010-09-27 17:06:09 +0000 | [diff] [blame] | 1080 | F = major_mag*minor_mag; |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 1081 | F *= F; /* square it */ |
| 1082 | } |
anthony | 5b697cd | 2010-10-10 03:48:57 +0000 | [diff] [blame] | 1083 | #else /* raw unclamped EWA */ |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1084 | A = dvx*dvx+dvy*dvy; |
anthony | d638d31 | 2010-09-15 13:13:01 +0000 | [diff] [blame] | 1085 | B = -2.0*(dux*dvx+duy*dvy); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1086 | C = dux*dux+duy*duy; |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 1087 | F = dux*dvy-duy*dvx; |
anthony | 5708fc6 | 2010-09-14 13:52:50 +0000 | [diff] [blame] | 1088 | F *= F; /* square it */ |
anthony | 5b697cd | 2010-10-10 03:48:57 +0000 | [diff] [blame] | 1089 | #endif /* EWA_CLAMP */ |
anthony | d638d31 | 2010-09-15 13:13:01 +0000 | [diff] [blame] | 1090 | |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 1091 | #else /* HQ_EWA */ |
anthony | d638d31 | 2010-09-15 13:13:01 +0000 | [diff] [blame] | 1092 | /* |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 1093 | This Paul Heckbert's "Higher Quality EWA" formula, from page 60 in his |
| 1094 | thesis, which adds a unit circle to the elliptical area so as to do both |
| 1095 | Reconstruction and Prefiltering of the pixels in the resampling. It also |
| 1096 | means it is always likely to have at least 4 pixels within the area of the |
| 1097 | ellipse, for weighted averaging. No scaling will result with F == 4.0 and |
| 1098 | a circle of radius 2.0, and F smaller than this means magnification is |
| 1099 | being used. |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 1100 | |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 1101 | NOTE: This method produces a very blury result at near unity scale while |
anthony | bdfddb0 | 2010-10-05 00:06:45 +0000 | [diff] [blame] | 1102 | producing perfect results for strong minitification and magnifications. |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 1103 | |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 1104 | However filter support is fixed to 2.0 (no good for Windowed Sinc filters) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1105 | */ |
| 1106 | A = dvx*dvx+dvy*dvy+1; |
anthony | d638d31 | 2010-09-15 13:13:01 +0000 | [diff] [blame] | 1107 | B = -2.0*(dux*dvx+duy*dvy); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1108 | C = dux*dux+duy*duy+1; |
| 1109 | F = A*C - B*B/4; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1110 | #endif |
| 1111 | |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 1112 | #if DEBUG_ELLIPSE |
cristy | 5acdd94 | 2011-05-27 19:45:39 +0000 | [diff] [blame] | 1113 | (void) FormatLocaleFile(stderr, "A=%lf; B=%lf; C=%lf; F=%lf\n", A,B,C,F); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1114 | |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 1115 | /* Figure out the various information directly about the ellipse. |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1116 | This information currently not needed at this time, but may be |
| 1117 | needed later for better limit determination. |
anthony | d638d31 | 2010-09-15 13:13:01 +0000 | [diff] [blame] | 1118 | |
| 1119 | It is also good to have as a record for future debugging |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1120 | */ |
| 1121 | { double alpha, beta, gamma, Major, Minor; |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 1122 | double Eccentricity, Ellipse_Area, Ellipse_Angle; |
anthony | d638d31 | 2010-09-15 13:13:01 +0000 | [diff] [blame] | 1123 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1124 | alpha = A+C; |
| 1125 | beta = A-C; |
| 1126 | gamma = sqrt(beta*beta + B*B ); |
| 1127 | |
| 1128 | if ( alpha - gamma <= MagickEpsilon ) |
| 1129 | Major = MagickHuge; |
| 1130 | else |
| 1131 | Major = sqrt(2*F/(alpha - gamma)); |
| 1132 | Minor = sqrt(2*F/(alpha + gamma)); |
| 1133 | |
cristy | 5acdd94 | 2011-05-27 19:45:39 +0000 | [diff] [blame] | 1134 | (void) FormatLocaleFile(stderr, "# Major=%lf; Minor=%lf\n", Major, Minor ); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1135 | |
| 1136 | /* other information about ellipse include... */ |
| 1137 | Eccentricity = Major/Minor; |
| 1138 | Ellipse_Area = MagickPI*Major*Minor; |
nicolas | e2ecb24 | 2010-09-29 20:02:24 +0000 | [diff] [blame] | 1139 | Ellipse_Angle = atan2(B, A-C); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1140 | |
cristy | 5acdd94 | 2011-05-27 19:45:39 +0000 | [diff] [blame] | 1141 | (void) FormatLocaleFile(stderr, "# Angle=%lf Area=%lf\n", |
nicolas | e2ecb24 | 2010-09-29 20:02:24 +0000 | [diff] [blame] | 1142 | RadiansToDegrees(Ellipse_Angle), Ellipse_Area); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1143 | } |
| 1144 | #endif |
| 1145 | |
nicolas | 15c331b | 2010-09-29 19:05:00 +0000 | [diff] [blame] | 1146 | /* If one or both of the scaling vectors is impossibly large |
| 1147 | (producing a very large raw F value), we may as well not bother |
| 1148 | doing any form of resampling since resampled area is very large. |
| 1149 | In this case some alternative means of pixel sampling, such as |
| 1150 | the average of the whole image is needed to get a reasonable |
| 1151 | result. Calculate only as needed. |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1152 | */ |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 1153 | if ( (4*A*C - B*B) > MagickHuge ) { |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1154 | resample_filter->limit_reached = MagickTrue; |
| 1155 | return; |
| 1156 | } |
| 1157 | |
anthony | 582b6d7 | 2010-10-10 06:45:41 +0000 | [diff] [blame] | 1158 | /* Scale ellipse to match the filters support |
anthony | 9cb63cc | 2012-04-25 06:10:49 +0000 | [diff] [blame] | 1159 | (that is, multiply F by the square of the support) |
| 1160 | Simplier to just multiply it by the support twice! |
nicolas | e2ecb24 | 2010-09-29 20:02:24 +0000 | [diff] [blame] | 1161 | */ |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 1162 | F *= resample_filter->support; |
| 1163 | F *= resample_filter->support; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1164 | |
nicolas | e2ecb24 | 2010-09-29 20:02:24 +0000 | [diff] [blame] | 1165 | /* Orthogonal bounds of the ellipse */ |
cristy | c120ce3 | 2011-05-10 21:38:57 +0000 | [diff] [blame] | 1166 | resample_filter->Ulimit = sqrt(C*F/(A*C-0.25*B*B)); |
| 1167 | resample_filter->Vlimit = sqrt(A*F/(A*C-0.25*B*B)); |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 1168 | |
nicolas | e2ecb24 | 2010-09-29 20:02:24 +0000 | [diff] [blame] | 1169 | /* Horizontally aligned parallelogram fitted to Ellipse */ |
| 1170 | resample_filter->Uwidth = sqrt(F/A); /* Half of the parallelogram width */ |
cristy | c120ce3 | 2011-05-10 21:38:57 +0000 | [diff] [blame] | 1171 | resample_filter->slope = -B/(2.0*A); /* Reciprocal slope of the parallelogram */ |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 1172 | |
| 1173 | #if DEBUG_ELLIPSE |
cristy | 5acdd94 | 2011-05-27 19:45:39 +0000 | [diff] [blame] | 1174 | (void) FormatLocaleFile(stderr, "Ulimit=%lf; Vlimit=%lf; UWidth=%lf; Slope=%lf;\n", |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 1175 | resample_filter->Ulimit, resample_filter->Vlimit, |
| 1176 | resample_filter->Uwidth, resample_filter->slope ); |
| 1177 | #endif |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1178 | |
nicolas | e2ecb24 | 2010-09-29 20:02:24 +0000 | [diff] [blame] | 1179 | /* Check the absolute area of the parallelogram involved. |
| 1180 | * This limit needs more work, as it is too slow for larger images |
| 1181 | * with tiled views of the horizon. |
| 1182 | */ |
cristy | 39f347a | 2010-09-20 00:29:31 +0000 | [diff] [blame] | 1183 | if ( (resample_filter->Uwidth * resample_filter->Vlimit) |
| 1184 | > (4.0*resample_filter->image_area)) { |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1185 | resample_filter->limit_reached = MagickTrue; |
| 1186 | return; |
| 1187 | } |
| 1188 | |
anthony | 5708fc6 | 2010-09-14 13:52:50 +0000 | [diff] [blame] | 1189 | /* Scale ellipse formula to directly index the Filter Lookup Table */ |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1190 | { register double scale; |
anthony | 5b697cd | 2010-10-10 03:48:57 +0000 | [diff] [blame] | 1191 | #if FILTER_LUT |
anthony | 582b6d7 | 2010-10-10 06:45:41 +0000 | [diff] [blame] | 1192 | /* scale so that F = WLUT_WIDTH; -- hardcoded */ |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 1193 | scale = (double)WLUT_WIDTH/F; |
anthony | 5b697cd | 2010-10-10 03:48:57 +0000 | [diff] [blame] | 1194 | #else |
anthony | 582b6d7 | 2010-10-10 06:45:41 +0000 | [diff] [blame] | 1195 | /* scale so that F = resample_filter->F (support^2) */ |
| 1196 | scale = resample_filter->F/F; |
anthony | 5b697cd | 2010-10-10 03:48:57 +0000 | [diff] [blame] | 1197 | #endif |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1198 | resample_filter->A = A*scale; |
| 1199 | resample_filter->B = B*scale; |
| 1200 | resample_filter->C = C*scale; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1201 | } |
| 1202 | } |
| 1203 | |
| 1204 | /* |
| 1205 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 1206 | % % |
| 1207 | % % |
| 1208 | % % |
| 1209 | % S e t R e s a m p l e F i l t e r % |
| 1210 | % % |
| 1211 | % % |
| 1212 | % % |
| 1213 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 1214 | % |
| 1215 | % SetResampleFilter() set the resampling filter lookup table based on a |
| 1216 | % specific filter. Note that the filter is used as a radial filter not as a |
| 1217 | % two pass othogonally aligned resampling filter. |
| 1218 | % |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1219 | % The format of the SetResampleFilter method is: |
| 1220 | % |
| 1221 | % void SetResampleFilter(ResampleFilter *resample_filter, |
cristy | aa2c16c | 2012-03-25 22:21:35 +0000 | [diff] [blame] | 1222 | % const FilterTypes filter) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1223 | % |
| 1224 | % A description of each parameter follows: |
| 1225 | % |
| 1226 | % o resample_filter: resampling resample_filterrmation structure |
| 1227 | % |
| 1228 | % o filter: the resize filter for elliptical weighting LUT |
| 1229 | % |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1230 | */ |
| 1231 | MagickExport void SetResampleFilter(ResampleFilter *resample_filter, |
cristy | aa2c16c | 2012-03-25 22:21:35 +0000 | [diff] [blame] | 1232 | const FilterTypes filter) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1233 | { |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1234 | ResizeFilter |
| 1235 | *resize_filter; |
| 1236 | |
| 1237 | assert(resample_filter != (ResampleFilter *) NULL); |
| 1238 | assert(resample_filter->signature == MagickSignature); |
| 1239 | |
anthony | 2e6ab68 | 2010-09-28 12:02:25 +0000 | [diff] [blame] | 1240 | resample_filter->do_interpolate = MagickFalse; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1241 | resample_filter->filter = filter; |
| 1242 | |
anthony | 9cb63cc | 2012-04-25 06:10:49 +0000 | [diff] [blame] | 1243 | /* Default cylindrical filter is a Cubic Keys filter */ |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 1244 | if ( filter == UndefinedFilter ) |
anthony | 853d697 | 2010-10-08 06:01:31 +0000 | [diff] [blame] | 1245 | resample_filter->filter = RobidouxFilter; |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 1246 | |
anthony | 9cb63cc | 2012-04-25 06:10:49 +0000 | [diff] [blame] | 1247 | if ( resample_filter->filter == PointFilter ) { |
| 1248 | resample_filter->do_interpolate = MagickTrue; |
| 1249 | return; /* EWA turned off - nothing more to do */ |
| 1250 | } |
| 1251 | |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 1252 | resize_filter = AcquireResizeFilter(resample_filter->image, |
cristy | aa2c16c | 2012-03-25 22:21:35 +0000 | [diff] [blame] | 1253 | resample_filter->filter,MagickTrue,resample_filter->exception); |
anthony | 9cb63cc | 2012-04-25 06:10:49 +0000 | [diff] [blame] | 1254 | if (resize_filter == (ResizeFilter *) NULL) { |
| 1255 | (void) ThrowMagickException(resample_filter->exception,GetMagickModule(), |
| 1256 | ModuleError, "UnableToSetFilteringValue", |
| 1257 | "Fall back to Interpolated 'Point' filter"); |
| 1258 | resample_filter->filter = PointFilter; |
| 1259 | resample_filter->do_interpolate = MagickTrue; |
| 1260 | return; /* EWA turned off - nothing more to do */ |
| 1261 | } |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 1262 | |
anthony | 10b8bc8 | 2010-10-02 12:48:46 +0000 | [diff] [blame] | 1263 | /* Get the practical working support for the filter, |
| 1264 | * after any API call blur factors have been accoded for. |
| 1265 | */ |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 1266 | #if EWA |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 1267 | resample_filter->support = GetResizeFilterSupport(resize_filter); |
anthony | c7b82f2 | 2010-09-27 10:42:29 +0000 | [diff] [blame] | 1268 | #else |
| 1269 | resample_filter->support = 2.0; /* fixed support size for HQ-EWA */ |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 1270 | #endif |
| 1271 | |
anthony | 5b697cd | 2010-10-10 03:48:57 +0000 | [diff] [blame] | 1272 | #if FILTER_LUT |
| 1273 | /* Fill the LUT with the weights from the selected filter function */ |
| 1274 | { register int |
| 1275 | Q; |
| 1276 | double |
| 1277 | r_scale; |
anthony | 9cb63cc | 2012-04-25 06:10:49 +0000 | [diff] [blame] | 1278 | |
anthony | 5b697cd | 2010-10-10 03:48:57 +0000 | [diff] [blame] | 1279 | /* Scale radius so the filter LUT covers the full support range */ |
| 1280 | r_scale = resample_filter->support*sqrt(1.0/(double)WLUT_WIDTH); |
| 1281 | for(Q=0; Q<WLUT_WIDTH; Q++) |
| 1282 | resample_filter->filter_lut[Q] = (double) |
| 1283 | GetResizeFilterWeight(resize_filter,sqrt((double)Q)*r_scale); |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 1284 | |
anthony | 5b697cd | 2010-10-10 03:48:57 +0000 | [diff] [blame] | 1285 | /* finished with the resize filter */ |
| 1286 | resize_filter = DestroyResizeFilter(resize_filter); |
| 1287 | } |
| 1288 | #else |
anthony | 582b6d7 | 2010-10-10 06:45:41 +0000 | [diff] [blame] | 1289 | /* save the filter and the scaled ellipse bounds needed for filter */ |
anthony | 5b697cd | 2010-10-10 03:48:57 +0000 | [diff] [blame] | 1290 | resample_filter->filter_def = resize_filter; |
anthony | 582b6d7 | 2010-10-10 06:45:41 +0000 | [diff] [blame] | 1291 | resample_filter->F = resample_filter->support*resample_filter->support; |
anthony | 5b697cd | 2010-10-10 03:48:57 +0000 | [diff] [blame] | 1292 | #endif |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 1293 | |
anthony | 3ebea1e | 2010-09-27 13:29:00 +0000 | [diff] [blame] | 1294 | /* |
| 1295 | Adjust the scaling of the default unit circle |
| 1296 | This assumes that any real scaling changes will always |
| 1297 | take place AFTER the filter method has been initialized. |
| 1298 | */ |
anthony | 3ebea1e | 2010-09-27 13:29:00 +0000 | [diff] [blame] | 1299 | ScaleResampleFilter(resample_filter, 1.0, 0.0, 0.0, 1.0); |
| 1300 | |
anthony | 5708fc6 | 2010-09-14 13:52:50 +0000 | [diff] [blame] | 1301 | #if 0 |
anthony | d638d31 | 2010-09-15 13:13:01 +0000 | [diff] [blame] | 1302 | /* |
anthony | 9cb63cc | 2012-04-25 06:10:49 +0000 | [diff] [blame] | 1303 | This is old code kept as a reference only. Basically it generates |
| 1304 | a Gaussian bell curve, with sigma = 0.5 if the support is 2.0 |
| 1305 | |
anthony | d638d31 | 2010-09-15 13:13:01 +0000 | [diff] [blame] | 1306 | Create Normal Gaussian 2D Filter Weighted Lookup Table. |
| 1307 | A normal EWA guassual lookup would use exp(Q*ALPHA) |
| 1308 | where Q = distance squared from 0.0 (center) to 1.0 (edge) |
| 1309 | and ALPHA = -4.0*ln(2.0) ==> -2.77258872223978123767 |
anthony | 5b697cd | 2010-10-10 03:48:57 +0000 | [diff] [blame] | 1310 | The table is of length 1024, and equates to support radius of 2.0 |
anthony | d638d31 | 2010-09-15 13:13:01 +0000 | [diff] [blame] | 1311 | thus needs to be scaled by ALPHA*4/1024 and any blur factor squared |
anthony | 5708fc6 | 2010-09-14 13:52:50 +0000 | [diff] [blame] | 1312 | |
anthony | 9cb63cc | 2012-04-25 06:10:49 +0000 | [diff] [blame] | 1313 | The it comes from reference code provided by Fred Weinhaus. |
anthony | d638d31 | 2010-09-15 13:13:01 +0000 | [diff] [blame] | 1314 | */ |
anthony | d638d31 | 2010-09-15 13:13:01 +0000 | [diff] [blame] | 1315 | r_scale = -2.77258872223978123767/(WLUT_WIDTH*blur*blur); |
| 1316 | for(Q=0; Q<WLUT_WIDTH; Q++) |
| 1317 | resample_filter->filter_lut[Q] = exp((double)Q*r_scale); |
| 1318 | resample_filter->support = WLUT_WIDTH; |
anthony | 5708fc6 | 2010-09-14 13:52:50 +0000 | [diff] [blame] | 1319 | #endif |
anthony | 490ab03 | 2010-09-20 00:02:08 +0000 | [diff] [blame] | 1320 | |
anthony | 5b697cd | 2010-10-10 03:48:57 +0000 | [diff] [blame] | 1321 | #if FILTER_LUT |
anthony | e06e4c1 | 2010-09-15 04:03:52 +0000 | [diff] [blame] | 1322 | #if defined(MAGICKCORE_OPENMP_SUPPORT) |
anthony | 7294979 | 2010-10-08 04:44:56 +0000 | [diff] [blame] | 1323 | #pragma omp single |
anthony | e06e4c1 | 2010-09-15 04:03:52 +0000 | [diff] [blame] | 1324 | #endif |
anthony | 9cb63cc | 2012-04-25 06:10:49 +0000 | [diff] [blame] | 1325 | { |
anthony | 451f909 | 2012-05-11 01:56:24 +0000 | [diff] [blame^] | 1326 | if (IfStringTrue(GetImageArtifact(resample_filter->image, |
anthony | 9cb63cc | 2012-04-25 06:10:49 +0000 | [diff] [blame] | 1327 | "resample:verbose")) ) |
anthony | e06e4c1 | 2010-09-15 04:03:52 +0000 | [diff] [blame] | 1328 | { |
anthony | 9cb63cc | 2012-04-25 06:10:49 +0000 | [diff] [blame] | 1329 | register int |
| 1330 | Q; |
| 1331 | double |
| 1332 | r_scale; |
| 1333 | |
anthony | e06e4c1 | 2010-09-15 04:03:52 +0000 | [diff] [blame] | 1334 | /* Debug output of the filter weighting LUT |
anthony | 9cb63cc | 2012-04-25 06:10:49 +0000 | [diff] [blame] | 1335 | Gnuplot the LUT data, the x scale index has been adjusted |
| 1336 | plot [0:2][-.2:1] "lut.dat" with lines |
| 1337 | The filter values should be normalized for comparision |
anthony | e06e4c1 | 2010-09-15 04:03:52 +0000 | [diff] [blame] | 1338 | */ |
anthony | d638d31 | 2010-09-15 13:13:01 +0000 | [diff] [blame] | 1339 | printf("#\n"); |
anthony | 9cb63cc | 2012-04-25 06:10:49 +0000 | [diff] [blame] | 1340 | printf("# Resampling Filter LUT (%d values) for '%s' filter\n", |
| 1341 | WLUT_WIDTH, CommandOptionToMnemonic(MagickFilterOptions, |
| 1342 | resample_filter->filter) ); |
anthony | e06e4c1 | 2010-09-15 04:03:52 +0000 | [diff] [blame] | 1343 | printf("#\n"); |
anthony | d638d31 | 2010-09-15 13:13:01 +0000 | [diff] [blame] | 1344 | printf("# Note: values in table are using a squared radius lookup.\n"); |
anthony | 9cb63cc | 2012-04-25 06:10:49 +0000 | [diff] [blame] | 1345 | printf("# As such its distribution is not uniform.\n"); |
| 1346 | printf("#\n"); |
| 1347 | printf("# The X value is the support distance for the Y weight\n"); |
| 1348 | printf("# so you can use gnuplot to plot this cylindrical filter\n"); |
| 1349 | printf("# plot [0:2][-.2:1] \"lut.dat\" with lines\n"); |
| 1350 | printf("#\n"); |
| 1351 | |
| 1352 | /* Scale radius so the filter LUT covers the full support range */ |
| 1353 | r_scale = resample_filter->support*sqrt(1.0/(double)WLUT_WIDTH); |
anthony | e06e4c1 | 2010-09-15 04:03:52 +0000 | [diff] [blame] | 1354 | for(Q=0; Q<WLUT_WIDTH; Q++) |
anthony | d638d31 | 2010-09-15 13:13:01 +0000 | [diff] [blame] | 1355 | printf("%8.*g %.*g\n", |
anthony | 9cb63cc | 2012-04-25 06:10:49 +0000 | [diff] [blame] | 1356 | GetMagickPrecision(),sqrt((double)Q)*r_scale, |
| 1357 | GetMagickPrecision(),resample_filter->filter_lut[Q] ); |
| 1358 | printf("\n\n"); /* generate a 'break' in gnuplot if multiple outputs */ |
anthony | e06e4c1 | 2010-09-15 04:03:52 +0000 | [diff] [blame] | 1359 | } |
anthony | 9cb63cc | 2012-04-25 06:10:49 +0000 | [diff] [blame] | 1360 | /* Output the above once only for each image, and each setting |
anthony | 7294979 | 2010-10-08 04:44:56 +0000 | [diff] [blame] | 1361 | (void) DeleteImageArtifact(resample_filter->image,"resample:verbose"); |
anthony | 9cb63cc | 2012-04-25 06:10:49 +0000 | [diff] [blame] | 1362 | */ |
anthony | 7294979 | 2010-10-08 04:44:56 +0000 | [diff] [blame] | 1363 | } |
anthony | 5b697cd | 2010-10-10 03:48:57 +0000 | [diff] [blame] | 1364 | #endif /* FILTER_LUT */ |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1365 | return; |
| 1366 | } |
| 1367 | |
| 1368 | /* |
| 1369 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 1370 | % % |
| 1371 | % % |
| 1372 | % % |
| 1373 | % 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 % |
| 1374 | % % |
| 1375 | % % |
| 1376 | % % |
| 1377 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 1378 | % |
cristy | 2ab242e | 2011-03-11 02:45:46 +0000 | [diff] [blame] | 1379 | % SetResampleFilterInterpolateMethod() sets the resample filter interpolation |
| 1380 | % method. |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1381 | % |
| 1382 | % The format of the SetResampleFilterInterpolateMethod method is: |
| 1383 | % |
| 1384 | % MagickBooleanType SetResampleFilterInterpolateMethod( |
| 1385 | % ResampleFilter *resample_filter,const InterpolateMethod method) |
| 1386 | % |
| 1387 | % A description of each parameter follows: |
| 1388 | % |
| 1389 | % o resample_filter: the resample filter. |
| 1390 | % |
| 1391 | % o method: the interpolation method. |
| 1392 | % |
| 1393 | */ |
| 1394 | MagickExport MagickBooleanType SetResampleFilterInterpolateMethod( |
cristy | 5c4e258 | 2011-09-11 19:21:03 +0000 | [diff] [blame] | 1395 | ResampleFilter *resample_filter,const PixelInterpolateMethod method) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1396 | { |
| 1397 | assert(resample_filter != (ResampleFilter *) NULL); |
| 1398 | assert(resample_filter->signature == MagickSignature); |
| 1399 | assert(resample_filter->image != (Image *) NULL); |
| 1400 | if (resample_filter->debug != MagickFalse) |
| 1401 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s", |
| 1402 | resample_filter->image->filename); |
| 1403 | resample_filter->interpolate=method; |
cristy | 2ab242e | 2011-03-11 02:45:46 +0000 | [diff] [blame] | 1404 | return(MagickTrue); |
| 1405 | } |
| 1406 | |
| 1407 | /* |
| 1408 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 1409 | % % |
| 1410 | % % |
| 1411 | % % |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1412 | % 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 % |
| 1413 | % % |
| 1414 | % % |
| 1415 | % % |
| 1416 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 1417 | % |
| 1418 | % SetResampleFilterVirtualPixelMethod() changes the virtual pixel method |
| 1419 | % associated with the specified resample filter. |
| 1420 | % |
| 1421 | % The format of the SetResampleFilterVirtualPixelMethod method is: |
| 1422 | % |
| 1423 | % MagickBooleanType SetResampleFilterVirtualPixelMethod( |
| 1424 | % ResampleFilter *resample_filter,const VirtualPixelMethod method) |
| 1425 | % |
| 1426 | % A description of each parameter follows: |
| 1427 | % |
| 1428 | % o resample_filter: the resample filter. |
| 1429 | % |
| 1430 | % o method: the virtual pixel method. |
| 1431 | % |
| 1432 | */ |
| 1433 | MagickExport MagickBooleanType SetResampleFilterVirtualPixelMethod( |
| 1434 | ResampleFilter *resample_filter,const VirtualPixelMethod method) |
| 1435 | { |
| 1436 | assert(resample_filter != (ResampleFilter *) NULL); |
| 1437 | assert(resample_filter->signature == MagickSignature); |
| 1438 | assert(resample_filter->image != (Image *) NULL); |
| 1439 | if (resample_filter->debug != MagickFalse) |
| 1440 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s", |
| 1441 | resample_filter->image->filename); |
| 1442 | resample_filter->virtual_pixel=method; |
cristy | 2d5e44d | 2010-03-12 01:56:29 +0000 | [diff] [blame] | 1443 | if (method != UndefinedVirtualPixelMethod) |
| 1444 | (void) SetCacheViewVirtualPixelMethod(resample_filter->view,method); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1445 | return(MagickTrue); |
| 1446 | } |