2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6 % EEEEE FFFFF FFFFF EEEEE CCCC TTTTT %
8 % EEE FFF FFF EEE C T %
10 % EEEEE F F EEEEE CCCC T %
13 % MagickCore Image Effects Methods %
20 % Copyright 1999-2012 ImageMagick Studio LLC, a non-profit organization %
21 % dedicated to making software imaging solutions freely available. %
23 % You may not use this file except in compliance with the License. You may %
24 % obtain a copy of the License at %
26 % http://www.imagemagick.org/script/license.php %
28 % Unless required by applicable law or agreed to in writing, software %
29 % distributed under the License is distributed on an "AS IS" BASIS, %
30 % WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. %
31 % See the License for the specific language governing permissions and %
32 % limitations under the License. %
34 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
43 #include "MagickCore/studio.h"
44 #include "MagickCore/accelerate.h"
45 #include "MagickCore/blob.h"
46 #include "MagickCore/cache-view.h"
47 #include "MagickCore/color.h"
48 #include "MagickCore/color-private.h"
49 #include "MagickCore/colorspace.h"
50 #include "MagickCore/constitute.h"
51 #include "MagickCore/decorate.h"
52 #include "MagickCore/distort.h"
53 #include "MagickCore/draw.h"
54 #include "MagickCore/enhance.h"
55 #include "MagickCore/exception.h"
56 #include "MagickCore/exception-private.h"
57 #include "MagickCore/effect.h"
58 #include "MagickCore/fx.h"
59 #include "MagickCore/gem.h"
60 #include "MagickCore/gem-private.h"
61 #include "MagickCore/geometry.h"
62 #include "MagickCore/image-private.h"
63 #include "MagickCore/list.h"
64 #include "MagickCore/log.h"
65 #include "MagickCore/memory_.h"
66 #include "MagickCore/monitor.h"
67 #include "MagickCore/monitor-private.h"
68 #include "MagickCore/montage.h"
69 #include "MagickCore/morphology.h"
70 #include "MagickCore/paint.h"
71 #include "MagickCore/pixel-accessor.h"
72 #include "MagickCore/property.h"
73 #include "MagickCore/quantize.h"
74 #include "MagickCore/quantum.h"
75 #include "MagickCore/quantum-private.h"
76 #include "MagickCore/random_.h"
77 #include "MagickCore/random-private.h"
78 #include "MagickCore/resample.h"
79 #include "MagickCore/resample-private.h"
80 #include "MagickCore/resize.h"
81 #include "MagickCore/resource_.h"
82 #include "MagickCore/segment.h"
83 #include "MagickCore/shear.h"
84 #include "MagickCore/signature-private.h"
85 #include "MagickCore/statistic.h"
86 #include "MagickCore/string_.h"
87 #include "MagickCore/thread-private.h"
88 #include "MagickCore/transform.h"
89 #include "MagickCore/threshold.h"
92 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
96 % A d a p t i v e B l u r I m a g e %
100 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
102 % AdaptiveBlurImage() adaptively blurs the image by blurring less
103 % intensely near image edges and more intensely far from edges. We blur the
104 % image with a Gaussian operator of the given radius and standard deviation
105 % (sigma). For reasonable results, radius should be larger than sigma. Use a
106 % radius of 0 and AdaptiveBlurImage() selects a suitable radius for you.
108 % The format of the AdaptiveBlurImage method is:
110 % Image *AdaptiveBlurImage(const Image *image,const double radius,
111 % const double sigma,const double bias,ExceptionInfo *exception)
113 % A description of each parameter follows:
115 % o image: the image.
117 % o radius: the radius of the Gaussian, in pixels, not counting the center
120 % o sigma: the standard deviation of the Laplacian, in pixels.
124 % o exception: return any errors or warnings in this structure.
128 MagickExport MagickBooleanType AdaptiveLevelImage(Image *image,
129 const char *levels,ExceptionInfo *exception)
148 if (levels == (char *) NULL)
150 flags=ParseGeometry(levels,&geometry_info);
151 black_point=geometry_info.rho;
152 white_point=(double) QuantumRange;
153 if ((flags & SigmaValue) != 0)
154 white_point=geometry_info.sigma;
156 if ((flags & XiValue) != 0)
157 gamma=geometry_info.xi;
158 if ((flags & PercentValue) != 0)
160 black_point*=(double) image->columns*image->rows/100.0;
161 white_point*=(double) image->columns*image->rows/100.0;
163 if ((flags & SigmaValue) == 0)
164 white_point=(double) QuantumRange-black_point;
165 if ((flags & AspectValue ) == 0)
166 status=LevelImage(image,black_point,white_point,gamma,exception);
168 status=LevelizeImage(image,black_point,white_point,gamma,exception);
172 MagickExport Image *AdaptiveBlurImage(const Image *image,const double radius,
173 const double sigma,const double bias,ExceptionInfo *exception)
175 #define AdaptiveBlurImageTag "Convolve/Image"
176 #define MagickSigma (fabs(sigma) <= MagickEpsilon ? 1.0 : sigma)
211 assert(image != (const Image *) NULL);
212 assert(image->signature == MagickSignature);
213 if (image->debug != MagickFalse)
214 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
215 assert(exception != (ExceptionInfo *) NULL);
216 assert(exception->signature == MagickSignature);
217 blur_image=CloneImage(image,image->columns,image->rows,MagickTrue,exception);
218 if (blur_image == (Image *) NULL)
219 return((Image *) NULL);
220 if (fabs(sigma) <= MagickEpsilon)
222 if (SetImageStorageClass(blur_image,DirectClass,exception) == MagickFalse)
224 blur_image=DestroyImage(blur_image);
225 return((Image *) NULL);
228 Edge detect the image brighness channel, level, blur, and level again.
230 edge_image=EdgeImage(image,radius,sigma,exception);
231 if (edge_image == (Image *) NULL)
233 blur_image=DestroyImage(blur_image);
234 return((Image *) NULL);
236 (void) AdaptiveLevelImage(edge_image,"20%,95%",exception);
237 gaussian_image=GaussianBlurImage(edge_image,radius,sigma,bias,exception);
238 if (gaussian_image != (Image *) NULL)
240 edge_image=DestroyImage(edge_image);
241 edge_image=gaussian_image;
243 (void) AdaptiveLevelImage(edge_image,"10%,95%",exception);
245 Create a set of kernels from maximum (radius,sigma) to minimum.
247 width=GetOptimalKernelWidth2D(radius,sigma);
248 kernel=(double **) AcquireAlignedMemory((size_t) width,sizeof(*kernel));
249 if (kernel == (double **) NULL)
251 edge_image=DestroyImage(edge_image);
252 blur_image=DestroyImage(blur_image);
253 ThrowImageException(ResourceLimitError,"MemoryAllocationFailed");
255 (void) ResetMagickMemory(kernel,0,(size_t) width*sizeof(*kernel));
256 for (i=0; i < (ssize_t) width; i+=2)
258 kernel[i]=(double *) AcquireAlignedMemory((size_t) (width-i),(width-i)*
260 if (kernel[i] == (double *) NULL)
263 j=(ssize_t) (width-i)/2;
265 for (v=(-j); v <= j; v++)
267 for (u=(-j); u <= j; u++)
269 kernel[i][k]=(double) (exp(-((double) u*u+v*v)/(2.0*MagickSigma*
270 MagickSigma))/(2.0*MagickPI*MagickSigma*MagickSigma));
271 normalize+=kernel[i][k];
275 if (fabs(normalize) <= MagickEpsilon)
277 normalize=1.0/normalize;
278 for (k=0; k < (j*j); k++)
279 kernel[i][k]=normalize*kernel[i][k];
281 if (i < (ssize_t) width)
283 for (i-=2; i >= 0; i-=2)
284 kernel[i]=(double *) RelinquishAlignedMemory(kernel[i]);
285 kernel=(double **) RelinquishAlignedMemory(kernel);
286 edge_image=DestroyImage(edge_image);
287 blur_image=DestroyImage(blur_image);
288 ThrowImageException(ResourceLimitError,"MemoryAllocationFailed");
291 Adaptively blur image.
295 image_view=AcquireCacheView(image);
296 edge_view=AcquireCacheView(edge_image);
297 blur_view=AcquireCacheView(blur_image);
298 #if defined(MAGICKCORE_OPENMP_SUPPORT)
299 #pragma omp parallel for schedule(static,4) shared(progress,status)
301 for (y=0; y < (ssize_t) blur_image->rows; y++)
303 register const Quantum
312 if (status == MagickFalse)
314 r=GetCacheViewVirtualPixels(edge_view,0,y,edge_image->columns,1,exception);
315 q=QueueCacheViewAuthenticPixels(blur_view,0,y,blur_image->columns,1,
317 if ((r == (const Quantum *) NULL) || (q == (Quantum *) NULL))
322 for (x=0; x < (ssize_t) blur_image->columns; x++)
324 register const Quantum
334 j=(ssize_t) ceil((double) width*QuantumScale*
335 GetPixelIntensity(edge_image,r)-0.5);
339 if (j > (ssize_t) width)
343 p=GetCacheViewVirtualPixels(image_view,x-((ssize_t) (width-j)/2L),y-
344 (ssize_t) ((width-j)/2L),width-j,width-j,exception);
345 if (p == (const Quantum *) NULL)
347 center=(ssize_t) GetPixelChannels(image)*(width-j)*
348 ((width-j)/2L)+GetPixelChannels(image)*((width-j)/2L);
349 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
363 register const double
366 register const Quantum
375 channel=GetPixelChannelMapChannel(image,i);
376 traits=GetPixelChannelMapTraits(image,channel);
377 blur_traits=GetPixelChannelMapTraits(blur_image,channel);
378 if ((traits == UndefinedPixelTrait) ||
379 (blur_traits == UndefinedPixelTrait))
381 if ((blur_traits & CopyPixelTrait) != 0)
383 SetPixelChannel(blur_image,channel,p[center+i],q);
390 if ((blur_traits & BlendPixelTrait) == 0)
395 for (v=0; v < (ssize_t) (width-j); v++)
397 for (u=0; u < (ssize_t) (width-j); u++)
399 pixel+=(*k)*pixels[i];
402 pixels+=GetPixelChannels(image);
405 gamma=1.0/(fabs((double) gamma) <= MagickEpsilon ? 1.0 : gamma);
406 SetPixelChannel(blur_image,channel,ClampToQuantum(gamma*pixel),q);
412 for (v=0; v < (ssize_t) (width-j); v++)
414 for (u=0; u < (ssize_t) (width-j); u++)
416 alpha=(MagickRealType) (QuantumScale*GetPixelAlpha(image,pixels));
417 pixel+=(*k)*alpha*pixels[i];
420 pixels+=GetPixelChannels(image);
423 gamma=1.0/(fabs((double) gamma) <= MagickEpsilon ? 1.0 : gamma);
424 SetPixelChannel(blur_image,channel,ClampToQuantum(gamma*pixel),q);
426 q+=GetPixelChannels(blur_image);
427 r+=GetPixelChannels(edge_image);
429 if (SyncCacheViewAuthenticPixels(blur_view,exception) == MagickFalse)
431 if (image->progress_monitor != (MagickProgressMonitor) NULL)
436 #if defined(MAGICKCORE_OPENMP_SUPPORT)
437 #pragma omp critical (MagickCore_AdaptiveBlurImage)
439 proceed=SetImageProgress(image,AdaptiveBlurImageTag,progress++,
441 if (proceed == MagickFalse)
445 blur_image->type=image->type;
446 blur_view=DestroyCacheView(blur_view);
447 edge_view=DestroyCacheView(edge_view);
448 image_view=DestroyCacheView(image_view);
449 edge_image=DestroyImage(edge_image);
450 for (i=0; i < (ssize_t) width; i+=2)
451 kernel[i]=(double *) RelinquishAlignedMemory(kernel[i]);
452 kernel=(double **) RelinquishAlignedMemory(kernel);
453 if (status == MagickFalse)
454 blur_image=DestroyImage(blur_image);
459 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
463 % A d a p t i v e S h a r p e n I m a g e %
467 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
469 % AdaptiveSharpenImage() adaptively sharpens the image by sharpening more
470 % intensely near image edges and less intensely far from edges. We sharpen the
471 % image with a Gaussian operator of the given radius and standard deviation
472 % (sigma). For reasonable results, radius should be larger than sigma. Use a
473 % radius of 0 and AdaptiveSharpenImage() selects a suitable radius for you.
475 % The format of the AdaptiveSharpenImage method is:
477 % Image *AdaptiveSharpenImage(const Image *image,const double radius,
478 % const double sigma,const double bias,ExceptionInfo *exception)
480 % A description of each parameter follows:
482 % o image: the image.
484 % o radius: the radius of the Gaussian, in pixels, not counting the center
487 % o sigma: the standard deviation of the Laplacian, in pixels.
491 % o exception: return any errors or warnings in this structure.
494 MagickExport Image *AdaptiveSharpenImage(const Image *image,const double radius,
495 const double sigma,const double bias,ExceptionInfo *exception)
497 #define AdaptiveSharpenImageTag "Convolve/Image"
498 #define MagickSigma (fabs(sigma) <= MagickEpsilon ? 1.0 : sigma)
533 assert(image != (const Image *) NULL);
534 assert(image->signature == MagickSignature);
535 if (image->debug != MagickFalse)
536 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
537 assert(exception != (ExceptionInfo *) NULL);
538 assert(exception->signature == MagickSignature);
539 sharp_image=CloneImage(image,0,0,MagickTrue,exception);
540 if (sharp_image == (Image *) NULL)
541 return((Image *) NULL);
542 if (fabs(sigma) <= MagickEpsilon)
544 if (SetImageStorageClass(sharp_image,DirectClass,exception) == MagickFalse)
546 sharp_image=DestroyImage(sharp_image);
547 return((Image *) NULL);
550 Edge detect the image brighness channel, level, sharp, and level again.
552 edge_image=EdgeImage(image,radius,sigma,exception);
553 if (edge_image == (Image *) NULL)
555 sharp_image=DestroyImage(sharp_image);
556 return((Image *) NULL);
558 (void) AdaptiveLevelImage(edge_image,"20%,95%",exception);
559 gaussian_image=GaussianBlurImage(edge_image,radius,sigma,bias,exception);
560 if (gaussian_image != (Image *) NULL)
562 edge_image=DestroyImage(edge_image);
563 edge_image=gaussian_image;
565 (void) AdaptiveLevelImage(edge_image,"10%,95%",exception);
567 Create a set of kernels from maximum (radius,sigma) to minimum.
569 width=GetOptimalKernelWidth2D(radius,sigma);
570 kernel=(double **) AcquireAlignedMemory((size_t) width,sizeof(*kernel));
571 if (kernel == (double **) NULL)
573 edge_image=DestroyImage(edge_image);
574 sharp_image=DestroyImage(sharp_image);
575 ThrowImageException(ResourceLimitError,"MemoryAllocationFailed");
577 (void) ResetMagickMemory(kernel,0,(size_t) width*sizeof(*kernel));
578 for (i=0; i < (ssize_t) width; i+=2)
580 kernel[i]=(double *) AcquireAlignedMemory((size_t) (width-i),(width-i)*
582 if (kernel[i] == (double *) NULL)
585 j=(ssize_t) (width-i)/2;
587 for (v=(-j); v <= j; v++)
589 for (u=(-j); u <= j; u++)
591 kernel[i][k]=(double) (-exp(-((double) u*u+v*v)/(2.0*MagickSigma*
592 MagickSigma))/(2.0*MagickPI*MagickSigma*MagickSigma));
593 normalize+=kernel[i][k];
597 if (fabs(normalize) <= MagickEpsilon)
599 normalize=1.0/normalize;
600 for (k=0; k < (j*j); k++)
601 kernel[i][k]=normalize*kernel[i][k];
603 if (i < (ssize_t) width)
605 for (i-=2; i >= 0; i-=2)
606 kernel[i]=(double *) RelinquishAlignedMemory(kernel[i]);
607 kernel=(double **) RelinquishAlignedMemory(kernel);
608 edge_image=DestroyImage(edge_image);
609 sharp_image=DestroyImage(sharp_image);
610 ThrowImageException(ResourceLimitError,"MemoryAllocationFailed");
613 Adaptively sharpen image.
617 image_view=AcquireCacheView(image);
618 edge_view=AcquireCacheView(edge_image);
619 sharp_view=AcquireCacheView(sharp_image);
620 #if defined(MAGICKCORE_OPENMP_SUPPORT)
621 #pragma omp parallel for schedule(static,4) shared(progress,status)
623 for (y=0; y < (ssize_t) sharp_image->rows; y++)
625 register const Quantum
634 if (status == MagickFalse)
636 r=GetCacheViewVirtualPixels(edge_view,0,y,edge_image->columns,1,exception);
637 q=QueueCacheViewAuthenticPixels(sharp_view,0,y,sharp_image->columns,1,
639 if ((r == (const Quantum *) NULL) || (q == (Quantum *) NULL))
644 for (x=0; x < (ssize_t) sharp_image->columns; x++)
646 register const Quantum
656 j=(ssize_t) ceil((double) width*QuantumScale*
657 GetPixelIntensity(edge_image,r)-0.5);
661 if (j > (ssize_t) width)
665 p=GetCacheViewVirtualPixels(image_view,x-((ssize_t) (width-j)/2L),y-
666 (ssize_t) ((width-j)/2L),width-j,width-j,exception);
667 if (p == (const Quantum *) NULL)
669 center=(ssize_t) GetPixelChannels(image)*(width-j)*
670 ((width-j)/2L)+GetPixelChannels(image)*((width-j)/2);
671 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
685 register const double
688 register const Quantum
697 channel=GetPixelChannelMapChannel(image,i);
698 traits=GetPixelChannelMapTraits(image,channel);
699 sharp_traits=GetPixelChannelMapTraits(sharp_image,channel);
700 if ((traits == UndefinedPixelTrait) ||
701 (sharp_traits == UndefinedPixelTrait))
703 if ((sharp_traits & CopyPixelTrait) != 0)
705 SetPixelChannel(sharp_image,channel,p[center+i],q);
712 if ((sharp_traits & BlendPixelTrait) == 0)
717 for (v=0; v < (ssize_t) (width-j); v++)
719 for (u=0; u < (ssize_t) (width-j); u++)
721 pixel+=(*k)*pixels[i];
724 pixels+=GetPixelChannels(image);
727 gamma=1.0/(fabs((double) gamma) <= MagickEpsilon ? 1.0 : gamma);
728 SetPixelChannel(sharp_image,channel,ClampToQuantum(gamma*pixel),q);
734 for (v=0; v < (ssize_t) (width-j); v++)
736 for (u=0; u < (ssize_t) (width-j); u++)
738 alpha=(MagickRealType) (QuantumScale*GetPixelAlpha(image,pixels));
739 pixel+=(*k)*alpha*pixels[i];
742 pixels+=GetPixelChannels(image);
745 gamma=1.0/(fabs((double) gamma) <= MagickEpsilon ? 1.0 : gamma);
746 SetPixelChannel(sharp_image,channel,ClampToQuantum(gamma*pixel),q);
748 q+=GetPixelChannels(sharp_image);
749 r+=GetPixelChannels(edge_image);
751 if (SyncCacheViewAuthenticPixels(sharp_view,exception) == MagickFalse)
753 if (image->progress_monitor != (MagickProgressMonitor) NULL)
758 #if defined(MAGICKCORE_OPENMP_SUPPORT)
759 #pragma omp critical (MagickCore_AdaptiveSharpenImage)
761 proceed=SetImageProgress(image,AdaptiveSharpenImageTag,progress++,
763 if (proceed == MagickFalse)
767 sharp_image->type=image->type;
768 sharp_view=DestroyCacheView(sharp_view);
769 edge_view=DestroyCacheView(edge_view);
770 image_view=DestroyCacheView(image_view);
771 edge_image=DestroyImage(edge_image);
772 for (i=0; i < (ssize_t) width; i+=2)
773 kernel[i]=(double *) RelinquishAlignedMemory(kernel[i]);
774 kernel=(double **) RelinquishAlignedMemory(kernel);
775 if (status == MagickFalse)
776 sharp_image=DestroyImage(sharp_image);
781 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
785 % B l u r I m a g e %
789 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
791 % BlurImage() blurs an image. We convolve the image with a Gaussian operator
792 % of the given radius and standard deviation (sigma). For reasonable results,
793 % the radius should be larger than sigma. Use a radius of 0 and BlurImage()
794 % selects a suitable radius for you.
796 % BlurImage() differs from GaussianBlurImage() in that it uses a separable
797 % kernel which is faster but mathematically equivalent to the non-separable
800 % The format of the BlurImage method is:
802 % Image *BlurImage(const Image *image,const double radius,
803 % const double sigma,const double bias,ExceptionInfo *exception)
805 % A description of each parameter follows:
807 % o image: the image.
809 % o radius: the radius of the Gaussian, in pixels, not counting the center
812 % o sigma: the standard deviation of the Gaussian, in pixels.
816 % o exception: return any errors or warnings in this structure.
820 static double *GetBlurKernel(const size_t width,const double sigma)
834 Generate a 1-D convolution kernel.
836 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
837 kernel=(double *) AcquireAlignedMemory((size_t) width,sizeof(*kernel));
838 if (kernel == (double *) NULL)
843 for (k=(-j); k <= j; k++)
845 kernel[i]=(double) (exp(-((double) k*k)/(2.0*MagickSigma*MagickSigma))/
846 (MagickSQ2PI*MagickSigma));
847 normalize+=kernel[i];
850 for (i=0; i < (ssize_t) width; i++)
851 kernel[i]/=normalize;
855 MagickExport Image *BlurImage(const Image *image,const double radius,
856 const double sigma,const double bias,ExceptionInfo *exception)
858 #define BlurImageTag "Blur/Image"
888 Initialize blur image attributes.
890 assert(image != (Image *) NULL);
891 assert(image->signature == MagickSignature);
892 if (image->debug != MagickFalse)
893 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
894 assert(exception != (ExceptionInfo *) NULL);
895 assert(exception->signature == MagickSignature);
896 blur_image=CloneImage(image,0,0,MagickTrue,exception);
897 if (blur_image == (Image *) NULL)
898 return((Image *) NULL);
899 if (fabs(sigma) <= MagickEpsilon)
901 if (SetImageStorageClass(blur_image,DirectClass,exception) == MagickFalse)
903 blur_image=DestroyImage(blur_image);
904 return((Image *) NULL);
906 width=GetOptimalKernelWidth1D(radius,sigma);
907 kernel=GetBlurKernel(width,sigma);
908 if (kernel == (double *) NULL)
910 blur_image=DestroyImage(blur_image);
911 ThrowImageException(ResourceLimitError,"MemoryAllocationFailed");
913 if (image->debug != MagickFalse)
916 format[MaxTextExtent],
919 register const double
922 (void) LogMagickEvent(TransformEvent,GetMagickModule(),
923 " BlurImage with %.20g kernel:",(double) width);
924 message=AcquireString("");
926 for (i=0; i < (ssize_t) width; i++)
929 (void) FormatLocaleString(format,MaxTextExtent,"%.20g: ",(double) i);
930 (void) ConcatenateString(&message,format);
931 (void) FormatLocaleString(format,MaxTextExtent,"%g ",*k++);
932 (void) ConcatenateString(&message,format);
933 (void) LogMagickEvent(TransformEvent,GetMagickModule(),"%s",message);
935 message=DestroyString(message);
942 center=(ssize_t) GetPixelChannels(image)*(width/2L);
943 image_view=AcquireCacheView(image);
944 blur_view=AcquireCacheView(blur_image);
945 #if defined(MAGICKCORE_OPENMP_SUPPORT)
946 #pragma omp parallel for schedule(static,4) shared(progress,status)
948 for (y=0; y < (ssize_t) image->rows; y++)
950 register const Quantum
959 if (status == MagickFalse)
961 p=GetCacheViewVirtualPixels(image_view,-((ssize_t) width/2L),y,
962 image->columns+width,1,exception);
963 q=QueueCacheViewAuthenticPixels(blur_view,0,y,blur_image->columns,1,
965 if ((p == (const Quantum *) NULL) || (q == (Quantum *) NULL))
970 for (x=0; x < (ssize_t) image->columns; x++)
975 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
989 register const double
992 register const Quantum
998 channel=GetPixelChannelMapChannel(image,i);
999 traits=GetPixelChannelMapTraits(image,channel);
1000 blur_traits=GetPixelChannelMapTraits(blur_image,channel);
1001 if ((traits == UndefinedPixelTrait) ||
1002 (blur_traits == UndefinedPixelTrait))
1004 if ((blur_traits & CopyPixelTrait) != 0)
1006 SetPixelChannel(blur_image,channel,p[center+i],q);
1012 if ((blur_traits & BlendPixelTrait) == 0)
1017 for (u=0; u < (ssize_t) width; u++)
1019 pixel+=(*k)*pixels[i];
1021 pixels+=GetPixelChannels(image);
1023 SetPixelChannel(blur_image,channel,ClampToQuantum(pixel),q);
1030 for (u=0; u < (ssize_t) width; u++)
1032 alpha=(MagickRealType) (QuantumScale*GetPixelAlpha(image,pixels));
1033 pixel+=(*k)*alpha*pixels[i];
1036 pixels+=GetPixelChannels(image);
1038 gamma=1.0/(fabs((double) gamma) <= MagickEpsilon ? 1.0 : gamma);
1039 SetPixelChannel(blur_image,channel,ClampToQuantum(gamma*pixel),q);
1041 p+=GetPixelChannels(image);
1042 q+=GetPixelChannels(blur_image);
1044 if (SyncCacheViewAuthenticPixels(blur_view,exception) == MagickFalse)
1046 if (image->progress_monitor != (MagickProgressMonitor) NULL)
1051 #if defined(MAGICKCORE_OPENMP_SUPPORT)
1052 #pragma omp critical (MagickCore_BlurImage)
1054 proceed=SetImageProgress(image,BlurImageTag,progress++,blur_image->rows+
1055 blur_image->columns);
1056 if (proceed == MagickFalse)
1060 blur_view=DestroyCacheView(blur_view);
1061 image_view=DestroyCacheView(image_view);
1065 image_view=AcquireCacheView(blur_image);
1066 blur_view=AcquireCacheView(blur_image);
1067 #if defined(MAGICKCORE_OPENMP_SUPPORT)
1068 #pragma omp parallel for schedule(static,4) shared(progress,status)
1070 for (x=0; x < (ssize_t) blur_image->columns; x++)
1072 register const Quantum
1081 if (status == MagickFalse)
1083 p=GetCacheViewVirtualPixels(image_view,x,-((ssize_t) width/2L),1,
1084 blur_image->rows+width,exception);
1085 q=GetCacheViewAuthenticPixels(blur_view,x,0,1,blur_image->rows,exception);
1086 if ((p == (const Quantum *) NULL) || (q == (Quantum *) NULL))
1091 for (y=0; y < (ssize_t) blur_image->rows; y++)
1096 for (i=0; i < (ssize_t) GetPixelChannels(blur_image); i++)
1110 register const double
1113 register const Quantum
1119 channel=GetPixelChannelMapChannel(blur_image,i);
1120 traits=GetPixelChannelMapTraits(blur_image,channel);
1121 blur_traits=GetPixelChannelMapTraits(blur_image,channel);
1122 if ((traits == UndefinedPixelTrait) ||
1123 (blur_traits == UndefinedPixelTrait))
1125 if ((blur_traits & CopyPixelTrait) != 0)
1127 SetPixelChannel(blur_image,channel,p[center+i],q);
1133 if ((blur_traits & BlendPixelTrait) == 0)
1138 for (u=0; u < (ssize_t) width; u++)
1140 pixel+=(*k)*pixels[i];
1142 pixels+=GetPixelChannels(blur_image);
1144 SetPixelChannel(blur_image,channel,ClampToQuantum(pixel),q);
1151 for (u=0; u < (ssize_t) width; u++)
1153 alpha=(MagickRealType) (QuantumScale*GetPixelAlpha(blur_image,
1155 pixel+=(*k)*alpha*pixels[i];
1158 pixels+=GetPixelChannels(blur_image);
1160 gamma=1.0/(fabs((double) gamma) <= MagickEpsilon ? 1.0 : gamma);
1161 SetPixelChannel(blur_image,channel,ClampToQuantum(gamma*pixel),q);
1163 p+=GetPixelChannels(blur_image);
1164 q+=GetPixelChannels(blur_image);
1166 if (SyncCacheViewAuthenticPixels(blur_view,exception) == MagickFalse)
1168 if (blur_image->progress_monitor != (MagickProgressMonitor) NULL)
1173 #if defined(MAGICKCORE_OPENMP_SUPPORT)
1174 #pragma omp critical (MagickCore_BlurImage)
1176 proceed=SetImageProgress(blur_image,BlurImageTag,progress++,
1177 blur_image->rows+blur_image->columns);
1178 if (proceed == MagickFalse)
1182 blur_view=DestroyCacheView(blur_view);
1183 image_view=DestroyCacheView(image_view);
1184 kernel=(double *) RelinquishAlignedMemory(kernel);
1185 blur_image->type=image->type;
1186 if (status == MagickFalse)
1187 blur_image=DestroyImage(blur_image);
1192 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1196 % C o n v o l v e I m a g e %
1200 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1202 % ConvolveImage() applies a custom convolution kernel to the image.
1204 % The format of the ConvolveImage method is:
1206 % Image *ConvolveImage(const Image *image,const KernelInfo *kernel,
1207 % ExceptionInfo *exception)
1209 % A description of each parameter follows:
1211 % o image: the image.
1213 % o kernel: the filtering kernel.
1215 % o exception: return any errors or warnings in this structure.
1218 MagickExport Image *ConvolveImage(const Image *image,
1219 const KernelInfo *kernel_info,ExceptionInfo *exception)
1221 #define ConvolveImageTag "Convolve/Image"
1241 Initialize convolve image attributes.
1243 assert(image != (Image *) NULL);
1244 assert(image->signature == MagickSignature);
1245 if (image->debug != MagickFalse)
1246 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
1247 assert(exception != (ExceptionInfo *) NULL);
1248 assert(exception->signature == MagickSignature);
1249 if ((kernel_info->width % 2) == 0)
1250 ThrowImageException(OptionError,"KernelWidthMustBeAnOddNumber");
1251 convolve_image=CloneImage(image,image->columns,image->rows,MagickTrue,
1253 if (convolve_image == (Image *) NULL)
1254 return((Image *) NULL);
1255 if (SetImageStorageClass(convolve_image,DirectClass,exception) == MagickFalse)
1257 convolve_image=DestroyImage(convolve_image);
1258 return((Image *) NULL);
1260 if (image->debug != MagickFalse)
1263 format[MaxTextExtent],
1266 register const MagickRealType
1275 (void) LogMagickEvent(TransformEvent,GetMagickModule(),
1276 " ConvolveImage with %.20gx%.20g kernel:",(double) kernel_info->width,
1277 (double) kernel_info->height);
1278 message=AcquireString("");
1279 k=kernel_info->values;
1280 for (v=0; v < (ssize_t) kernel_info->width; v++)
1283 (void) FormatLocaleString(format,MaxTextExtent,"%.20g: ",(double) v);
1284 (void) ConcatenateString(&message,format);
1285 for (u=0; u < (ssize_t) kernel_info->height; u++)
1287 (void) FormatLocaleString(format,MaxTextExtent,"%g ",*k++);
1288 (void) ConcatenateString(&message,format);
1290 (void) LogMagickEvent(TransformEvent,GetMagickModule(),"%s",message);
1292 message=DestroyString(message);
1294 status=AccelerateConvolveImage(image,kernel_info,convolve_image,exception);
1295 if (status == MagickTrue)
1296 return(convolve_image);
1300 center=(ssize_t) GetPixelChannels(image)*(image->columns+kernel_info->width)*
1301 (kernel_info->height/2L)+GetPixelChannels(image)*(kernel_info->width/2L);
1304 image_view=AcquireCacheView(image);
1305 convolve_view=AcquireCacheView(convolve_image);
1306 #if defined(MAGICKCORE_OPENMP_SUPPORT)
1307 #pragma omp parallel for schedule(guided) shared(progress,status)
1309 for (y=0; y < (ssize_t) image->rows; y++)
1311 register const Quantum
1320 if (status == MagickFalse)
1322 p=GetCacheViewVirtualPixels(image_view,-((ssize_t) kernel_info->width/2L),y-
1323 (ssize_t) (kernel_info->height/2L),image->columns+kernel_info->width,
1324 kernel_info->height,exception);
1325 q=QueueCacheViewAuthenticPixels(convolve_view,0,y,convolve_image->columns,1,
1327 if ((p == (const Quantum *) NULL) || (q == (Quantum *) NULL))
1332 for (x=0; x < (ssize_t) image->columns; x++)
1337 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
1351 register const MagickRealType
1354 register const Quantum
1363 channel=GetPixelChannelMapChannel(image,i);
1364 traits=GetPixelChannelMapTraits(image,channel);
1365 convolve_traits=GetPixelChannelMapTraits(convolve_image,channel);
1366 if ((traits == UndefinedPixelTrait) ||
1367 (convolve_traits == UndefinedPixelTrait))
1369 if ((convolve_traits & CopyPixelTrait) != 0)
1371 SetPixelChannel(convolve_image,channel,p[center+i],q);
1374 k=kernel_info->values;
1376 pixel=kernel_info->bias;
1377 if ((convolve_traits & BlendPixelTrait) == 0)
1382 for (v=0; v < (ssize_t) kernel_info->height; v++)
1384 for (u=0; u < (ssize_t) kernel_info->width; u++)
1386 pixel+=(*k)*pixels[i];
1388 pixels+=GetPixelChannels(image);
1390 pixels+=image->columns*GetPixelChannels(image);
1392 SetPixelChannel(convolve_image,channel,ClampToQuantum(pixel),q);
1399 for (v=0; v < (ssize_t) kernel_info->height; v++)
1401 for (u=0; u < (ssize_t) kernel_info->width; u++)
1403 alpha=(MagickRealType) (QuantumScale*GetPixelAlpha(image,pixels));
1404 pixel+=(*k)*alpha*pixels[i];
1407 pixels+=GetPixelChannels(image);
1409 pixels+=image->columns*GetPixelChannels(image);
1411 gamma=1.0/(fabs((double) gamma) <= MagickEpsilon ? 1.0 : gamma);
1412 SetPixelChannel(convolve_image,channel,ClampToQuantum(gamma*pixel),q);
1414 p+=GetPixelChannels(image);
1415 q+=GetPixelChannels(convolve_image);
1417 if (SyncCacheViewAuthenticPixels(convolve_view,exception) == MagickFalse)
1419 if (image->progress_monitor != (MagickProgressMonitor) NULL)
1424 #if defined(MAGICKCORE_OPENMP_SUPPORT)
1425 #pragma omp critical (MagickCore_ConvolveImage)
1427 proceed=SetImageProgress(image,ConvolveImageTag,progress++,image->rows);
1428 if (proceed == MagickFalse)
1432 convolve_image->type=image->type;
1433 convolve_view=DestroyCacheView(convolve_view);
1434 image_view=DestroyCacheView(image_view);
1435 if (status == MagickFalse)
1436 convolve_image=DestroyImage(convolve_image);
1437 return(convolve_image);
1441 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1445 % D e s p e c k l e I m a g e %
1449 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1451 % DespeckleImage() reduces the speckle noise in an image while perserving the
1452 % edges of the original image. A speckle removing filter uses a complementary % hulling technique (raising pixels that are darker than their surrounding
1453 % neighbors, then complementarily lowering pixels that are brighter than their
1454 % surrounding neighbors) to reduce the speckle index of that image (reference
1455 % Crimmins speckle removal).
1457 % The format of the DespeckleImage method is:
1459 % Image *DespeckleImage(const Image *image,ExceptionInfo *exception)
1461 % A description of each parameter follows:
1463 % o image: the image.
1465 % o exception: return any errors or warnings in this structure.
1469 static void Hull(const ssize_t x_offset,const ssize_t y_offset,
1470 const size_t columns,const size_t rows,const int polarity,Quantum *restrict f,
1471 Quantum *restrict g)
1482 assert(f != (Quantum *) NULL);
1483 assert(g != (Quantum *) NULL);
1486 r=p+(y_offset*(columns+2)+x_offset);
1487 #if defined(HAVE_OPENMP)
1488 #pragma omp parallel for schedule(guided)
1490 for (y=0; y < (ssize_t) rows; y++)
1499 i=(2*y+1)+y*columns;
1501 for (x=0; x < (ssize_t) columns; x++)
1503 v=(SignedQuantum) p[i];
1504 if ((SignedQuantum) r[i] >= (v+ScaleCharToQuantum(2)))
1505 v+=ScaleCharToQuantum(1);
1510 for (x=0; x < (ssize_t) columns; x++)
1512 v=(SignedQuantum) p[i];
1513 if ((SignedQuantum) r[i] <= (v-ScaleCharToQuantum(2)))
1514 v-=ScaleCharToQuantum(1);
1521 r=q+(y_offset*(columns+2)+x_offset);
1522 s=q-(y_offset*(columns+2)+x_offset);
1523 #if defined(HAVE_OPENMP)
1524 #pragma omp parallel for schedule(guided)
1526 for (y=0; y < (ssize_t) rows; y++)
1535 i=(2*y+1)+y*columns;
1537 for (x=0; x < (ssize_t) columns; x++)
1539 v=(SignedQuantum) q[i];
1540 if (((SignedQuantum) s[i] >= (v+ScaleCharToQuantum(2))) &&
1541 ((SignedQuantum) r[i] > v))
1542 v+=ScaleCharToQuantum(1);
1547 for (x=0; x < (ssize_t) columns; x++)
1549 v=(SignedQuantum) q[i];
1550 if (((SignedQuantum) s[i] <= (v-ScaleCharToQuantum(2))) &&
1551 ((SignedQuantum) r[i] < v))
1552 v-=ScaleCharToQuantum(1);
1559 MagickExport Image *DespeckleImage(const Image *image,ExceptionInfo *exception)
1561 #define DespeckleImageTag "Despeckle/Image"
1583 static const ssize_t
1584 X[4] = {0, 1, 1,-1},
1585 Y[4] = {1, 0, 1, 1};
1588 Allocate despeckled image.
1590 assert(image != (const Image *) NULL);
1591 assert(image->signature == MagickSignature);
1592 if (image->debug != MagickFalse)
1593 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
1594 assert(exception != (ExceptionInfo *) NULL);
1595 assert(exception->signature == MagickSignature);
1596 despeckle_image=CloneImage(image,0,0,MagickTrue,exception);
1597 if (despeckle_image == (Image *) NULL)
1598 return((Image *) NULL);
1599 status=SetImageStorageClass(despeckle_image,DirectClass,exception);
1600 if (status == MagickFalse)
1602 despeckle_image=DestroyImage(despeckle_image);
1603 return((Image *) NULL);
1606 Allocate image buffer.
1608 length=(size_t) ((image->columns+2)*(image->rows+2));
1609 pixels=(Quantum *) AcquireQuantumMemory(length,sizeof(*pixels));
1610 buffer=(Quantum *) AcquireQuantumMemory(length,sizeof(*buffer));
1611 if ((pixels == (Quantum *) NULL) || (buffer == (Quantum *) NULL))
1613 if (buffer != (Quantum *) NULL)
1614 buffer=(Quantum *) RelinquishMagickMemory(buffer);
1615 if (pixels != (Quantum *) NULL)
1616 pixels=(Quantum *) RelinquishMagickMemory(pixels);
1617 despeckle_image=DestroyImage(despeckle_image);
1618 ThrowImageException(ResourceLimitError,"MemoryAllocationFailed");
1621 Reduce speckle in the image.
1624 image_view=AcquireCacheView(image);
1625 despeckle_view=AcquireCacheView(despeckle_image);
1626 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
1643 if (status == MagickFalse)
1645 channel=GetPixelChannelMapChannel(image,i);
1646 traits=GetPixelChannelMapTraits(image,channel);
1647 despeckle_traits=GetPixelChannelMapTraits(despeckle_image,channel);
1648 if ((traits == UndefinedPixelTrait) ||
1649 (despeckle_traits == UndefinedPixelTrait))
1651 if ((despeckle_traits & CopyPixelTrait) != 0)
1653 (void) ResetMagickMemory(pixels,0,length*sizeof(*pixels));
1654 j=(ssize_t) image->columns+2;
1655 for (y=0; y < (ssize_t) image->rows; y++)
1657 register const Quantum
1660 p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception);
1661 if (p == (const Quantum *) NULL)
1667 for (x=0; x < (ssize_t) image->columns; x++)
1670 p+=GetPixelChannels(image);
1674 (void) ResetMagickMemory(buffer,0,length*sizeof(*buffer));
1675 for (k=0; k < 4; k++)
1677 Hull(X[k],Y[k],image->columns,image->rows,1,pixels,buffer);
1678 Hull(-X[k],-Y[k],image->columns,image->rows,1,pixels,buffer);
1679 Hull(-X[k],-Y[k],image->columns,image->rows,-1,pixels,buffer);
1680 Hull(X[k],Y[k],image->columns,image->rows,-1,pixels,buffer);
1682 j=(ssize_t) image->columns+2;
1683 for (y=0; y < (ssize_t) image->rows; y++)
1691 q=QueueCacheViewAuthenticPixels(despeckle_view,0,y,
1692 despeckle_image->columns,1,exception);
1693 if (q == (Quantum *) NULL)
1699 for (x=0; x < (ssize_t) image->columns; x++)
1701 SetPixelChannel(despeckle_image,channel,pixels[j++],q);
1702 q+=GetPixelChannels(despeckle_image);
1704 sync=SyncCacheViewAuthenticPixels(despeckle_view,exception);
1705 if (sync == MagickFalse)
1709 if (image->progress_monitor != (MagickProgressMonitor) NULL)
1714 proceed=SetImageProgress(image,DespeckleImageTag,(MagickOffsetType) i,
1715 GetPixelChannels(image));
1716 if (proceed == MagickFalse)
1720 despeckle_view=DestroyCacheView(despeckle_view);
1721 image_view=DestroyCacheView(image_view);
1722 buffer=(Quantum *) RelinquishMagickMemory(buffer);
1723 pixels=(Quantum *) RelinquishMagickMemory(pixels);
1724 despeckle_image->type=image->type;
1725 if (status == MagickFalse)
1726 despeckle_image=DestroyImage(despeckle_image);
1727 return(despeckle_image);
1731 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1735 % E d g e I m a g e %
1739 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1741 % EdgeImage() finds edges in an image. Radius defines the radius of the
1742 % convolution filter. Use a radius of 0 and EdgeImage() selects a suitable
1745 % The format of the EdgeImage method is:
1747 % Image *EdgeImage(const Image *image,const double radius,
1748 % const double sigma,ExceptionInfo *exception)
1750 % A description of each parameter follows:
1752 % o image: the image.
1754 % o radius: the radius of the pixel neighborhood.
1756 % o sigma: the standard deviation of the Gaussian, in pixels.
1758 % o exception: return any errors or warnings in this structure.
1761 MagickExport Image *EdgeImage(const Image *image,const double radius,
1762 const double sigma,ExceptionInfo *exception)
1781 assert(image != (const Image *) NULL);
1782 assert(image->signature == MagickSignature);
1783 if (image->debug != MagickFalse)
1784 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
1785 assert(exception != (ExceptionInfo *) NULL);
1786 assert(exception->signature == MagickSignature);
1787 width=GetOptimalKernelWidth1D(radius,sigma);
1788 kernel_info=AcquireKernelInfo((const char *) NULL);
1789 if (kernel_info == (KernelInfo *) NULL)
1790 ThrowImageException(ResourceLimitError,"MemoryAllocationFailed");
1791 kernel_info->width=width;
1792 kernel_info->height=width;
1793 kernel_info->values=(MagickRealType *) AcquireAlignedMemory(
1794 kernel_info->width,kernel_info->width*sizeof(*kernel_info->values));
1795 if (kernel_info->values == (MagickRealType *) NULL)
1797 kernel_info=DestroyKernelInfo(kernel_info);
1798 ThrowImageException(ResourceLimitError,"MemoryAllocationFailed");
1800 j=(ssize_t) kernel_info->width/2;
1802 for (v=(-j); v <= j; v++)
1804 for (u=(-j); u <= j; u++)
1806 kernel_info->values[i]=(-1.0);
1810 kernel_info->values[i/2]=(double) (width*width-1.0);
1811 kernel_info->bias=image->bias; /* FUTURE: User bias on a edge image? */
1812 edge_image=ConvolveImage(image,kernel_info,exception);
1813 kernel_info=DestroyKernelInfo(kernel_info);
1818 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1822 % E m b o s s I m a g e %
1826 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1828 % EmbossImage() returns a grayscale image with a three-dimensional effect.
1829 % We convolve the image with a Gaussian operator of the given radius and
1830 % standard deviation (sigma). For reasonable results, radius should be
1831 % larger than sigma. Use a radius of 0 and Emboss() selects a suitable
1834 % The format of the EmbossImage method is:
1836 % Image *EmbossImage(const Image *image,const double radius,
1837 % const double sigma,ExceptionInfo *exception)
1839 % A description of each parameter follows:
1841 % o image: the image.
1843 % o radius: the radius of the pixel neighborhood.
1845 % o sigma: the standard deviation of the Gaussian, in pixels.
1847 % o exception: return any errors or warnings in this structure.
1850 MagickExport Image *EmbossImage(const Image *image,const double radius,
1851 const double sigma,ExceptionInfo *exception)
1871 assert(image != (const Image *) NULL);
1872 assert(image->signature == MagickSignature);
1873 if (image->debug != MagickFalse)
1874 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
1875 assert(exception != (ExceptionInfo *) NULL);
1876 assert(exception->signature == MagickSignature);
1877 width=GetOptimalKernelWidth1D(radius,sigma);
1878 kernel_info=AcquireKernelInfo((const char *) NULL);
1879 if (kernel_info == (KernelInfo *) NULL)
1880 ThrowImageException(ResourceLimitError,"MemoryAllocationFailed");
1881 kernel_info->width=width;
1882 kernel_info->height=width;
1883 kernel_info->values=(MagickRealType *) AcquireAlignedMemory(
1884 kernel_info->width,kernel_info->width*sizeof(*kernel_info->values));
1885 if (kernel_info->values == (MagickRealType *) NULL)
1887 kernel_info=DestroyKernelInfo(kernel_info);
1888 ThrowImageException(ResourceLimitError,"MemoryAllocationFailed");
1890 j=(ssize_t) kernel_info->width/2;
1893 for (v=(-j); v <= j; v++)
1895 for (u=(-j); u <= j; u++)
1897 kernel_info->values[i]=(double) (((u < 0) || (v < 0) ? -8.0 : 8.0)*
1898 exp(-((double) u*u+v*v)/(2.0*MagickSigma*MagickSigma))/
1899 (2.0*MagickPI*MagickSigma*MagickSigma));
1901 kernel_info->values[i]=0.0;
1906 kernel_info->bias=image->bias; /* FUTURE: user bias on an edge image */
1907 emboss_image=ConvolveImage(image,kernel_info,exception);
1908 kernel_info=DestroyKernelInfo(kernel_info);
1909 if (emboss_image != (Image *) NULL)
1910 (void) EqualizeImage(emboss_image,exception);
1911 return(emboss_image);
1915 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1919 % G a u s s i a n B l u r I m a g e %
1923 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1925 % GaussianBlurImage() blurs an image. We convolve the image with a
1926 % Gaussian operator of the given radius and standard deviation (sigma).
1927 % For reasonable results, the radius should be larger than sigma. Use a
1928 % radius of 0 and GaussianBlurImage() selects a suitable radius for you
1930 % The format of the GaussianBlurImage method is:
1932 % Image *GaussianBlurImage(const Image *image,onst double radius,
1933 % const double sigma,const double bias,ExceptionInfo *exception)
1935 % A description of each parameter follows:
1937 % o image: the image.
1939 % o radius: the radius of the Gaussian, in pixels, not counting the center
1942 % o sigma: the standard deviation of the Gaussian, in pixels.
1946 % o exception: return any errors or warnings in this structure.
1949 MagickExport Image *GaussianBlurImage(const Image *image,const double radius,
1950 const double sigma,const double bias,ExceptionInfo *exception)
1969 assert(image != (const Image *) NULL);
1970 assert(image->signature == MagickSignature);
1971 if (image->debug != MagickFalse)
1972 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
1973 assert(exception != (ExceptionInfo *) NULL);
1974 assert(exception->signature == MagickSignature);
1975 width=GetOptimalKernelWidth2D(radius,sigma);
1976 kernel_info=AcquireKernelInfo((const char *) NULL);
1977 if (kernel_info == (KernelInfo *) NULL)
1978 ThrowImageException(ResourceLimitError,"MemoryAllocationFailed");
1979 (void) ResetMagickMemory(kernel_info,0,sizeof(*kernel_info));
1980 kernel_info->width=width;
1981 kernel_info->height=width;
1982 kernel_info->bias=bias; /* FUTURE: user bias on Gaussian Blur! non-sense */
1983 kernel_info->signature=MagickSignature;
1984 kernel_info->values=(MagickRealType *) AcquireAlignedMemory(
1985 kernel_info->width,kernel_info->width*sizeof(*kernel_info->values));
1986 if (kernel_info->values == (MagickRealType *) NULL)
1988 kernel_info=DestroyKernelInfo(kernel_info);
1989 ThrowImageException(ResourceLimitError,"MemoryAllocationFailed");
1991 j=(ssize_t) kernel_info->width/2;
1993 for (v=(-j); v <= j; v++)
1995 for (u=(-j); u <= j; u++)
1997 kernel_info->values[i]=(double) (exp(-((double) u*u+v*v)/(2.0*
1998 MagickSigma*MagickSigma))/(2.0*MagickPI*MagickSigma*MagickSigma));
2002 blur_image=ConvolveImage(image,kernel_info,exception);
2003 kernel_info=DestroyKernelInfo(kernel_info);
2008 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2012 % M o t i o n B l u r I m a g e %
2016 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2018 % MotionBlurImage() simulates motion blur. We convolve the image with a
2019 % Gaussian operator of the given radius and standard deviation (sigma).
2020 % For reasonable results, radius should be larger than sigma. Use a
2021 % radius of 0 and MotionBlurImage() selects a suitable radius for you.
2022 % Angle gives the angle of the blurring motion.
2024 % Andrew Protano contributed this effect.
2026 % The format of the MotionBlurImage method is:
2028 % Image *MotionBlurImage(const Image *image,const double radius,
2029 % const double sigma,const double angle,const double bias,
2030 % ExceptionInfo *exception)
2032 % A description of each parameter follows:
2034 % o image: the image.
2036 % o radius: the radius of the Gaussian, in pixels, not counting
2039 % o sigma: the standard deviation of the Gaussian, in pixels.
2041 % o angle: Apply the effect along this angle.
2045 % o exception: return any errors or warnings in this structure.
2049 static double *GetMotionBlurKernel(const size_t width,const double sigma)
2059 Generate a 1-D convolution kernel.
2061 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
2062 kernel=(double *) AcquireAlignedMemory((size_t) width,sizeof(*kernel));
2063 if (kernel == (double *) NULL)
2066 for (i=0; i < (ssize_t) width; i++)
2068 kernel[i]=(double) (exp((-((double) i*i)/(double) (2.0*MagickSigma*
2069 MagickSigma)))/(MagickSQ2PI*MagickSigma));
2070 normalize+=kernel[i];
2072 for (i=0; i < (ssize_t) width; i++)
2073 kernel[i]/=normalize;
2077 MagickExport Image *MotionBlurImage(const Image *image,const double radius,
2078 const double sigma,const double angle,const double bias,
2079 ExceptionInfo *exception)
2113 assert(image != (Image *) NULL);
2114 assert(image->signature == MagickSignature);
2115 if (image->debug != MagickFalse)
2116 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
2117 assert(exception != (ExceptionInfo *) NULL);
2118 width=GetOptimalKernelWidth1D(radius,sigma);
2119 kernel=GetMotionBlurKernel(width,sigma);
2120 if (kernel == (double *) NULL)
2121 ThrowImageException(ResourceLimitError,"MemoryAllocationFailed");
2122 offset=(OffsetInfo *) AcquireQuantumMemory(width,sizeof(*offset));
2123 if (offset == (OffsetInfo *) NULL)
2125 kernel=(double *) RelinquishAlignedMemory(kernel);
2126 ThrowImageException(ResourceLimitError,"MemoryAllocationFailed");
2128 blur_image=CloneImage(image,image->columns,image->rows,MagickTrue,exception);
2129 if (blur_image == (Image *) NULL)
2131 kernel=(double *) RelinquishAlignedMemory(kernel);
2132 offset=(OffsetInfo *) RelinquishMagickMemory(offset);
2133 return((Image *) NULL);
2135 if (SetImageStorageClass(blur_image,DirectClass,exception) == MagickFalse)
2137 kernel=(double *) RelinquishAlignedMemory(kernel);
2138 offset=(OffsetInfo *) RelinquishMagickMemory(offset);
2139 blur_image=DestroyImage(blur_image);
2140 return((Image *) NULL);
2142 point.x=(double) width*sin(DegreesToRadians(angle));
2143 point.y=(double) width*cos(DegreesToRadians(angle));
2144 for (i=0; i < (ssize_t) width; i++)
2146 offset[i].x=(ssize_t) ceil((double) (i*point.y)/hypot(point.x,point.y)-0.5);
2147 offset[i].y=(ssize_t) ceil((double) (i*point.x)/hypot(point.x,point.y)-0.5);
2154 image_view=AcquireCacheView(image);
2155 motion_view=AcquireCacheView(image);
2156 blur_view=AcquireCacheView(blur_image);
2157 #if defined(MAGICKCORE_OPENMP_SUPPORT)
2158 #pragma omp parallel for schedule(static,1) shared(progress,status)
2160 for (y=0; y < (ssize_t) image->rows; y++)
2162 register const Quantum
2171 if (status == MagickFalse)
2173 p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception);
2174 q=QueueCacheViewAuthenticPixels(blur_view,0,y,blur_image->columns,1,
2176 if ((p == (const Quantum *) NULL) || (q == (Quantum *) NULL))
2181 for (x=0; x < (ssize_t) image->columns; x++)
2186 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
2200 register const Quantum
2209 channel=GetPixelChannelMapChannel(image,i);
2210 traits=GetPixelChannelMapTraits(image,channel);
2211 blur_traits=GetPixelChannelMapTraits(blur_image,channel);
2212 if ((traits == UndefinedPixelTrait) ||
2213 (blur_traits == UndefinedPixelTrait))
2215 if ((blur_traits & CopyPixelTrait) != 0)
2217 SetPixelChannel(blur_image,channel,p[i],q);
2222 if ((blur_traits & BlendPixelTrait) == 0)
2224 for (j=0; j < (ssize_t) width; j++)
2226 r=GetCacheViewVirtualPixels(motion_view,x+offset[j].x,y+
2227 offset[j].y,1,1,exception);
2228 if (r == (const Quantum *) NULL)
2236 SetPixelChannel(blur_image,channel,ClampToQuantum(pixel),q);
2241 for (j=0; j < (ssize_t) width; j++)
2243 r=GetCacheViewVirtualPixels(motion_view,x+offset[j].x,y+offset[j].y,1,
2245 if (r == (const Quantum *) NULL)
2250 alpha=(MagickRealType) (QuantumScale*GetPixelAlpha(image,r));
2251 pixel+=(*k)*alpha*r[i];
2255 gamma=1.0/(fabs((double) gamma) <= MagickEpsilon ? 1.0 : gamma);
2256 SetPixelChannel(blur_image,channel,ClampToQuantum(gamma*pixel),q);
2258 p+=GetPixelChannels(image);
2259 q+=GetPixelChannels(blur_image);
2261 if (SyncCacheViewAuthenticPixels(blur_view,exception) == MagickFalse)
2263 if (image->progress_monitor != (MagickProgressMonitor) NULL)
2268 #if defined(MAGICKCORE_OPENMP_SUPPORT)
2269 #pragma omp critical (MagickCore_MotionBlurImage)
2271 proceed=SetImageProgress(image,BlurImageTag,progress++,image->rows);
2272 if (proceed == MagickFalse)
2276 blur_view=DestroyCacheView(blur_view);
2277 motion_view=DestroyCacheView(motion_view);
2278 image_view=DestroyCacheView(image_view);
2279 kernel=(double *) RelinquishAlignedMemory(kernel);
2280 offset=(OffsetInfo *) RelinquishMagickMemory(offset);
2281 if (status == MagickFalse)
2282 blur_image=DestroyImage(blur_image);
2287 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2291 % P r e v i e w I m a g e %
2295 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2297 % PreviewImage() tiles 9 thumbnails of the specified image with an image
2298 % processing operation applied with varying parameters. This may be helpful
2299 % pin-pointing an appropriate parameter for a particular image processing
2302 % The format of the PreviewImages method is:
2304 % Image *PreviewImages(const Image *image,const PreviewType preview,
2305 % ExceptionInfo *exception)
2307 % A description of each parameter follows:
2309 % o image: the image.
2311 % o preview: the image processing operation.
2313 % o exception: return any errors or warnings in this structure.
2316 MagickExport Image *PreviewImage(const Image *image,const PreviewType preview,
2317 ExceptionInfo *exception)
2319 #define NumberTiles 9
2320 #define PreviewImageTag "Preview/Image"
2321 #define DefaultPreviewGeometry "204x204+10+10"
2324 factor[MaxTextExtent],
2325 label[MaxTextExtent];
2367 Open output image file.
2369 assert(image != (Image *) NULL);
2370 assert(image->signature == MagickSignature);
2371 if (image->debug != MagickFalse)
2372 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
2376 preview_info=AcquireImageInfo();
2377 SetGeometry(image,&geometry);
2378 (void) ParseMetaGeometry(DefaultPreviewGeometry,&geometry.x,&geometry.y,
2379 &geometry.width,&geometry.height);
2380 images=NewImageList();
2382 GetQuantizeInfo(&quantize_info);
2388 for (i=0; i < NumberTiles; i++)
2390 thumbnail=ThumbnailImage(image,geometry.width,geometry.height,exception);
2391 if (thumbnail == (Image *) NULL)
2393 (void) SetImageProgressMonitor(thumbnail,(MagickProgressMonitor) NULL,
2395 (void) SetImageProperty(thumbnail,"label",DefaultTileLabel,exception);
2396 if (i == (NumberTiles/2))
2398 (void) QueryColorCompliance("#dfdfdf",AllCompliance,
2399 &thumbnail->matte_color,exception);
2400 AppendImageToList(&images,thumbnail);
2408 preview_image=RotateImage(thumbnail,degrees,exception);
2409 (void) FormatLocaleString(label,MaxTextExtent,"rotate %g",degrees);
2415 preview_image=ShearImage(thumbnail,degrees,degrees,exception);
2416 (void) FormatLocaleString(label,MaxTextExtent,"shear %gx%g",
2417 degrees,2.0*degrees);
2422 x=(ssize_t) ((i+1)*thumbnail->columns)/NumberTiles;
2423 y=(ssize_t) ((i+1)*thumbnail->rows)/NumberTiles;
2424 preview_image=RollImage(thumbnail,x,y,exception);
2425 (void) FormatLocaleString(label,MaxTextExtent,"roll %+.20gx%+.20g",
2426 (double) x,(double) y);
2431 preview_image=CloneImage(thumbnail,0,0,MagickTrue,exception);
2432 if (preview_image == (Image *) NULL)
2434 (void) FormatLocaleString(factor,MaxTextExtent,"100,100,%g",
2436 (void) ModulateImage(preview_image,factor,exception);
2437 (void) FormatLocaleString(label,MaxTextExtent,"modulate %s",factor);
2440 case SaturationPreview:
2442 preview_image=CloneImage(thumbnail,0,0,MagickTrue,exception);
2443 if (preview_image == (Image *) NULL)
2445 (void) FormatLocaleString(factor,MaxTextExtent,"100,%g",
2447 (void) ModulateImage(preview_image,factor,exception);
2448 (void) FormatLocaleString(label,MaxTextExtent,"modulate %s",factor);
2451 case BrightnessPreview:
2453 preview_image=CloneImage(thumbnail,0,0,MagickTrue,exception);
2454 if (preview_image == (Image *) NULL)
2456 (void) FormatLocaleString(factor,MaxTextExtent,"%g",2.0*percentage);
2457 (void) ModulateImage(preview_image,factor,exception);
2458 (void) FormatLocaleString(label,MaxTextExtent,"modulate %s",factor);
2464 preview_image=CloneImage(thumbnail,0,0,MagickTrue,exception);
2465 if (preview_image == (Image *) NULL)
2468 (void) GammaImage(preview_image,gamma,exception);
2469 (void) FormatLocaleString(label,MaxTextExtent,"gamma %g",gamma);
2474 preview_image=CloneImage(thumbnail,0,0,MagickTrue,exception);
2475 if (preview_image != (Image *) NULL)
2476 for (x=0; x < i; x++)
2477 (void) ContrastImage(preview_image,MagickTrue,exception);
2478 (void) FormatLocaleString(label,MaxTextExtent,"contrast (%.20g)",
2484 preview_image=CloneImage(thumbnail,0,0,MagickTrue,exception);
2485 if (preview_image == (Image *) NULL)
2487 for (x=0; x < i; x++)
2488 (void) ContrastImage(preview_image,MagickFalse,exception);
2489 (void) FormatLocaleString(label,MaxTextExtent,"+contrast (%.20g)",
2493 case GrayscalePreview:
2495 preview_image=CloneImage(thumbnail,0,0,MagickTrue,exception);
2496 if (preview_image == (Image *) NULL)
2499 quantize_info.number_colors=colors;
2500 quantize_info.colorspace=GRAYColorspace;
2501 (void) QuantizeImage(&quantize_info,preview_image,exception);
2502 (void) FormatLocaleString(label,MaxTextExtent,
2503 "-colorspace gray -colors %.20g",(double) colors);
2506 case QuantizePreview:
2508 preview_image=CloneImage(thumbnail,0,0,MagickTrue,exception);
2509 if (preview_image == (Image *) NULL)
2512 quantize_info.number_colors=colors;
2513 (void) QuantizeImage(&quantize_info,preview_image,exception);
2514 (void) FormatLocaleString(label,MaxTextExtent,"colors %.20g",(double)
2518 case DespecklePreview:
2520 for (x=0; x < (i-1); x++)
2522 preview_image=DespeckleImage(thumbnail,exception);
2523 if (preview_image == (Image *) NULL)
2525 thumbnail=DestroyImage(thumbnail);
2526 thumbnail=preview_image;
2528 preview_image=DespeckleImage(thumbnail,exception);
2529 if (preview_image == (Image *) NULL)
2531 (void) FormatLocaleString(label,MaxTextExtent,"despeckle (%.20g)",
2535 case ReduceNoisePreview:
2537 preview_image=StatisticImage(thumbnail,NonpeakStatistic,(size_t) radius,
2538 (size_t) radius,exception);
2539 (void) FormatLocaleString(label,MaxTextExtent,"noise %g",radius);
2542 case AddNoisePreview:
2548 (void) CopyMagickString(factor,"uniform",MaxTextExtent);
2553 (void) CopyMagickString(factor,"gaussian",MaxTextExtent);
2558 (void) CopyMagickString(factor,"multiplicative",MaxTextExtent);
2563 (void) CopyMagickString(factor,"impulse",MaxTextExtent);
2568 (void) CopyMagickString(factor,"laplacian",MaxTextExtent);
2573 (void) CopyMagickString(factor,"Poisson",MaxTextExtent);
2578 (void) CopyMagickString(thumbnail->magick,"NULL",MaxTextExtent);
2582 preview_image=StatisticImage(thumbnail,NonpeakStatistic,(size_t) i,
2583 (size_t) i,exception);
2584 (void) FormatLocaleString(label,MaxTextExtent,"+noise %s",factor);
2587 case SharpenPreview:
2589 /* FUTURE: user bias on sharpen! This is non-sensical! */
2590 preview_image=SharpenImage(thumbnail,radius,sigma,image->bias,
2592 (void) FormatLocaleString(label,MaxTextExtent,"sharpen %gx%g",
2598 /* FUTURE: user bias on blur! This is non-sensical! */
2599 preview_image=BlurImage(thumbnail,radius,sigma,image->bias,exception);
2600 (void) FormatLocaleString(label,MaxTextExtent,"blur %gx%g",radius,
2604 case ThresholdPreview:
2606 preview_image=CloneImage(thumbnail,0,0,MagickTrue,exception);
2607 if (preview_image == (Image *) NULL)
2609 (void) BilevelImage(thumbnail,(double) (percentage*((MagickRealType)
2610 QuantumRange+1.0))/100.0,exception);
2611 (void) FormatLocaleString(label,MaxTextExtent,"threshold %g",
2612 (double) (percentage*((MagickRealType) QuantumRange+1.0))/100.0);
2615 case EdgeDetectPreview:
2617 preview_image=EdgeImage(thumbnail,radius,sigma,exception);
2618 (void) FormatLocaleString(label,MaxTextExtent,"edge %g",radius);
2623 preview_image=SpreadImage(thumbnail,radius,thumbnail->interpolate,
2625 (void) FormatLocaleString(label,MaxTextExtent,"spread %g",
2629 case SolarizePreview:
2631 preview_image=CloneImage(thumbnail,0,0,MagickTrue,exception);
2632 if (preview_image == (Image *) NULL)
2634 (void) SolarizeImage(preview_image,(double) QuantumRange*
2635 percentage/100.0,exception);
2636 (void) FormatLocaleString(label,MaxTextExtent,"solarize %g",
2637 (QuantumRange*percentage)/100.0);
2643 preview_image=ShadeImage(thumbnail,MagickTrue,degrees,degrees,
2645 (void) FormatLocaleString(label,MaxTextExtent,"shade %gx%g",
2651 preview_image=CloneImage(thumbnail,0,0,MagickTrue,exception);
2652 if (preview_image == (Image *) NULL)
2654 geometry.width=(size_t) (2*i+2);
2655 geometry.height=(size_t) (2*i+2);
2658 (void) RaiseImage(preview_image,&geometry,MagickTrue,exception);
2659 (void) FormatLocaleString(label,MaxTextExtent,
2660 "raise %.20gx%.20g%+.20g%+.20g",(double) geometry.width,(double)
2661 geometry.height,(double) geometry.x,(double) geometry.y);
2664 case SegmentPreview:
2666 preview_image=CloneImage(thumbnail,0,0,MagickTrue,exception);
2667 if (preview_image == (Image *) NULL)
2670 (void) SegmentImage(preview_image,RGBColorspace,MagickFalse,threshold,
2671 threshold,exception);
2672 (void) FormatLocaleString(label,MaxTextExtent,"segment %gx%g",
2673 threshold,threshold);
2678 preview_image=SwirlImage(thumbnail,degrees,image->interpolate,
2680 (void) FormatLocaleString(label,MaxTextExtent,"swirl %g",degrees);
2684 case ImplodePreview:
2687 preview_image=ImplodeImage(thumbnail,degrees,image->interpolate,
2689 (void) FormatLocaleString(label,MaxTextExtent,"implode %g",degrees);
2695 preview_image=WaveImage(thumbnail,0.5*degrees,2.0*degrees,
2696 image->interpolate,exception);
2697 (void) FormatLocaleString(label,MaxTextExtent,"wave %gx%g",
2698 0.5*degrees,2.0*degrees);
2701 case OilPaintPreview:
2703 preview_image=OilPaintImage(thumbnail,(double) radius,(double) sigma,
2705 (void) FormatLocaleString(label,MaxTextExtent,"charcoal %gx%g",
2709 case CharcoalDrawingPreview:
2711 /* FUTURE: user bias on charcoal! This is non-sensical! */
2712 preview_image=CharcoalImage(thumbnail,(double) radius,(double) sigma,
2713 image->bias,exception);
2714 (void) FormatLocaleString(label,MaxTextExtent,"charcoal %gx%g",
2721 filename[MaxTextExtent];
2729 preview_image=CloneImage(thumbnail,0,0,MagickTrue,exception);
2730 if (preview_image == (Image *) NULL)
2732 preview_info->quality=(size_t) percentage;
2733 (void) FormatLocaleString(factor,MaxTextExtent,"%.20g",(double)
2734 preview_info->quality);
2735 file=AcquireUniqueFileResource(filename);
2738 (void) FormatLocaleString(preview_image->filename,MaxTextExtent,
2739 "jpeg:%s",filename);
2740 status=WriteImage(preview_info,preview_image,exception);
2741 if (status != MagickFalse)
2746 (void) CopyMagickString(preview_info->filename,
2747 preview_image->filename,MaxTextExtent);
2748 quality_image=ReadImage(preview_info,exception);
2749 if (quality_image != (Image *) NULL)
2751 preview_image=DestroyImage(preview_image);
2752 preview_image=quality_image;
2755 (void) RelinquishUniqueFileResource(preview_image->filename);
2756 if ((GetBlobSize(preview_image)/1024) >= 1024)
2757 (void) FormatLocaleString(label,MaxTextExtent,"quality %s\n%gmb ",
2758 factor,(double) ((MagickOffsetType) GetBlobSize(preview_image))/
2761 if (GetBlobSize(preview_image) >= 1024)
2762 (void) FormatLocaleString(label,MaxTextExtent,
2763 "quality %s\n%gkb ",factor,(double) ((MagickOffsetType)
2764 GetBlobSize(preview_image))/1024.0);
2766 (void) FormatLocaleString(label,MaxTextExtent,"quality %s\n%.20gb ",
2767 factor,(double) ((MagickOffsetType) GetBlobSize(thumbnail)));
2771 thumbnail=DestroyImage(thumbnail);
2775 if (preview_image == (Image *) NULL)
2777 (void) DeleteImageProperty(preview_image,"label");
2778 (void) SetImageProperty(preview_image,"label",label,exception);
2779 AppendImageToList(&images,preview_image);
2780 proceed=SetImageProgress(image,PreviewImageTag,(MagickOffsetType) i,
2782 if (proceed == MagickFalse)
2785 if (images == (Image *) NULL)
2787 preview_info=DestroyImageInfo(preview_info);
2788 return((Image *) NULL);
2793 montage_info=CloneMontageInfo(preview_info,(MontageInfo *) NULL);
2794 (void) CopyMagickString(montage_info->filename,image->filename,MaxTextExtent);
2795 montage_info->shadow=MagickTrue;
2796 (void) CloneString(&montage_info->tile,"3x3");
2797 (void) CloneString(&montage_info->geometry,DefaultPreviewGeometry);
2798 (void) CloneString(&montage_info->frame,DefaultTileFrame);
2799 montage_image=MontageImages(images,montage_info,exception);
2800 montage_info=DestroyMontageInfo(montage_info);
2801 images=DestroyImageList(images);
2802 if (montage_image == (Image *) NULL)
2803 ThrowImageException(ResourceLimitError,"MemoryAllocationFailed");
2804 if (montage_image->montage != (char *) NULL)
2807 Free image directory.
2809 montage_image->montage=(char *) RelinquishMagickMemory(
2810 montage_image->montage);
2811 if (image->directory != (char *) NULL)
2812 montage_image->directory=(char *) RelinquishMagickMemory(
2813 montage_image->directory);
2815 preview_info=DestroyImageInfo(preview_info);
2816 return(montage_image);
2820 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2824 % R a d i a l B l u r I m a g e %
2828 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2830 % RadialBlurImage() applies a radial blur to the image.
2832 % Andrew Protano contributed this effect.
2834 % The format of the RadialBlurImage method is:
2836 % Image *RadialBlurImage(const Image *image,const double angle,
2837 % const double blur,ExceptionInfo *exception)
2839 % A description of each parameter follows:
2841 % o image: the image.
2843 % o angle: the angle of the radial blur.
2847 % o exception: return any errors or warnings in this structure.
2850 MagickExport Image *RadialBlurImage(const Image *image,const double angle,
2851 const double bias,ExceptionInfo *exception)
2887 Allocate blur image.
2889 assert(image != (Image *) NULL);
2890 assert(image->signature == MagickSignature);
2891 if (image->debug != MagickFalse)
2892 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
2893 assert(exception != (ExceptionInfo *) NULL);
2894 assert(exception->signature == MagickSignature);
2895 blur_image=CloneImage(image,image->columns,image->rows,MagickTrue,exception);
2896 if (blur_image == (Image *) NULL)
2897 return((Image *) NULL);
2898 if (SetImageStorageClass(blur_image,DirectClass,exception) == MagickFalse)
2900 blur_image=DestroyImage(blur_image);
2901 return((Image *) NULL);
2903 blur_center.x=(double) image->columns/2.0;
2904 blur_center.y=(double) image->rows/2.0;
2905 blur_radius=hypot(blur_center.x,blur_center.y);
2906 n=(size_t) fabs(4.0*DegreesToRadians(angle)*sqrt((double) blur_radius)+2UL);
2907 theta=DegreesToRadians(angle)/(MagickRealType) (n-1);
2908 cos_theta=(MagickRealType *) AcquireQuantumMemory((size_t) n,
2909 sizeof(*cos_theta));
2910 sin_theta=(MagickRealType *) AcquireQuantumMemory((size_t) n,
2911 sizeof(*sin_theta));
2912 if ((cos_theta == (MagickRealType *) NULL) ||
2913 (sin_theta == (MagickRealType *) NULL))
2915 blur_image=DestroyImage(blur_image);
2916 ThrowImageException(ResourceLimitError,"MemoryAllocationFailed");
2918 offset=theta*(MagickRealType) (n-1)/2.0;
2919 for (i=0; i < (ssize_t) n; i++)
2921 cos_theta[i]=cos((double) (theta*i-offset));
2922 sin_theta[i]=sin((double) (theta*i-offset));
2929 image_view=AcquireCacheView(image);
2930 radial_view=AcquireCacheView(image);
2931 blur_view=AcquireCacheView(blur_image);
2932 #if defined(MAGICKCORE_OPENMP_SUPPORT)
2933 #pragma omp parallel for schedule(static,4) shared(progress,status)
2935 for (y=0; y < (ssize_t) image->rows; y++)
2937 register const Quantum
2946 if (status == MagickFalse)
2948 p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception);
2949 q=QueueCacheViewAuthenticPixels(blur_view,0,y,blur_image->columns,1,
2951 if ((p == (const Quantum *) NULL) || (q == (Quantum *) NULL))
2956 for (x=0; x < (ssize_t) image->columns; x++)
2970 center.x=(double) x-blur_center.x;
2971 center.y=(double) y-blur_center.y;
2972 radius=hypot((double) center.x,center.y);
2977 step=(size_t) (blur_radius/radius);
2984 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
2997 register const Quantum
3003 channel=GetPixelChannelMapChannel(image,i);
3004 traits=GetPixelChannelMapTraits(image,channel);
3005 blur_traits=GetPixelChannelMapTraits(blur_image,channel);
3006 if ((traits == UndefinedPixelTrait) ||
3007 (blur_traits == UndefinedPixelTrait))
3009 if ((blur_traits & CopyPixelTrait) != 0)
3011 SetPixelChannel(blur_image,channel,p[i],q);
3016 if ((blur_traits & BlendPixelTrait) == 0)
3018 for (j=0; j < (ssize_t) n; j+=(ssize_t) step)
3020 r=GetCacheViewVirtualPixels(radial_view, (ssize_t) (blur_center.x+
3021 center.x*cos_theta[j]-center.y*sin_theta[j]+0.5),(ssize_t)
3022 (blur_center.y+center.x*sin_theta[j]+center.y*cos_theta[j]+0.5),
3024 if (r == (const Quantum *) NULL)
3032 gamma=1.0/(fabs((double) gamma) <= MagickEpsilon ? 1.0 : gamma);
3033 SetPixelChannel(blur_image,channel,ClampToQuantum(gamma*pixel),q);
3036 for (j=0; j < (ssize_t) n; j+=(ssize_t) step)
3038 r=GetCacheViewVirtualPixels(radial_view, (ssize_t) (blur_center.x+
3039 center.x*cos_theta[j]-center.y*sin_theta[j]+0.5),(ssize_t)
3040 (blur_center.y+center.x*sin_theta[j]+center.y*cos_theta[j]+0.5),
3042 if (r == (const Quantum *) NULL)
3047 pixel+=GetPixelAlpha(image,r)*r[i];
3048 gamma+=GetPixelAlpha(image,r);
3050 gamma=1.0/(fabs((double) gamma) <= MagickEpsilon ? 1.0 : gamma);
3051 SetPixelChannel(blur_image,channel,ClampToQuantum(gamma*pixel),q);
3053 p+=GetPixelChannels(image);
3054 q+=GetPixelChannels(blur_image);
3056 if (SyncCacheViewAuthenticPixels(blur_view,exception) == MagickFalse)
3058 if (image->progress_monitor != (MagickProgressMonitor) NULL)
3063 #if defined(MAGICKCORE_OPENMP_SUPPORT)
3064 #pragma omp critical (MagickCore_RadialBlurImage)
3066 proceed=SetImageProgress(image,BlurImageTag,progress++,image->rows);
3067 if (proceed == MagickFalse)
3071 blur_view=DestroyCacheView(blur_view);
3072 radial_view=DestroyCacheView(radial_view);
3073 image_view=DestroyCacheView(image_view);
3074 cos_theta=(MagickRealType *) RelinquishMagickMemory(cos_theta);
3075 sin_theta=(MagickRealType *) RelinquishMagickMemory(sin_theta);
3076 if (status == MagickFalse)
3077 blur_image=DestroyImage(blur_image);
3082 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3086 % S e l e c t i v e B l u r I m a g e %
3090 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3092 % SelectiveBlurImage() selectively blur pixels within a contrast threshold.
3093 % It is similar to the unsharpen mask that sharpens everything with contrast
3094 % above a certain threshold.
3096 % The format of the SelectiveBlurImage method is:
3098 % Image *SelectiveBlurImage(const Image *image,const double radius,
3099 % const double sigma,const double threshold,const double bias,
3100 % ExceptionInfo *exception)
3102 % A description of each parameter follows:
3104 % o image: the image.
3106 % o radius: the radius of the Gaussian, in pixels, not counting the center
3109 % o sigma: the standard deviation of the Gaussian, in pixels.
3111 % o threshold: only pixels within this contrast threshold are included
3112 % in the blur operation.
3116 % o exception: return any errors or warnings in this structure.
3119 MagickExport Image *SelectiveBlurImage(const Image *image,const double radius,
3120 const double sigma,const double threshold,const double bias,
3121 ExceptionInfo *exception)
3123 #define SelectiveBlurImageTag "SelectiveBlur/Image"
3155 Initialize blur image attributes.
3157 assert(image != (Image *) NULL);
3158 assert(image->signature == MagickSignature);
3159 if (image->debug != MagickFalse)
3160 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
3161 assert(exception != (ExceptionInfo *) NULL);
3162 assert(exception->signature == MagickSignature);
3163 width=GetOptimalKernelWidth1D(radius,sigma);
3164 kernel=(double *) AcquireAlignedMemory((size_t) width,width*sizeof(*kernel));
3165 if (kernel == (double *) NULL)
3166 ThrowImageException(ResourceLimitError,"MemoryAllocationFailed");
3167 j=(ssize_t) width/2;
3169 for (v=(-j); v <= j; v++)
3171 for (u=(-j); u <= j; u++)
3172 kernel[i++]=(double) (exp(-((double) u*u+v*v)/(2.0*MagickSigma*
3173 MagickSigma))/(2.0*MagickPI*MagickSigma*MagickSigma));
3175 if (image->debug != MagickFalse)
3178 format[MaxTextExtent],
3181 register const double
3188 (void) LogMagickEvent(TransformEvent,GetMagickModule(),
3189 " SelectiveBlurImage with %.20gx%.20g kernel:",(double) width,(double)
3191 message=AcquireString("");
3193 for (v=0; v < (ssize_t) width; v++)
3196 (void) FormatLocaleString(format,MaxTextExtent,"%.20g: ",(double) v);
3197 (void) ConcatenateString(&message,format);
3198 for (u=0; u < (ssize_t) width; u++)
3200 (void) FormatLocaleString(format,MaxTextExtent,"%+f ",*k++);
3201 (void) ConcatenateString(&message,format);
3203 (void) LogMagickEvent(TransformEvent,GetMagickModule(),"%s",message);
3205 message=DestroyString(message);
3207 blur_image=CloneImage(image,image->columns,image->rows,MagickTrue,exception);
3208 if (blur_image == (Image *) NULL)
3209 return((Image *) NULL);
3210 if (SetImageStorageClass(blur_image,DirectClass,exception) == MagickFalse)
3212 blur_image=DestroyImage(blur_image);
3213 return((Image *) NULL);
3216 Threshold blur image.
3220 center=(ssize_t) (GetPixelChannels(image)*(image->columns+width)*(width/2L)+
3221 GetPixelChannels(image)*(width/2L));
3222 image_view=AcquireCacheView(image);
3223 blur_view=AcquireCacheView(blur_image);
3224 #if defined(MAGICKCORE_OPENMP_SUPPORT)
3225 #pragma omp parallel for schedule(static,4) shared(progress,status)
3227 for (y=0; y < (ssize_t) image->rows; y++)
3235 register const Quantum
3244 if (status == MagickFalse)
3246 p=GetCacheViewVirtualPixels(image_view,-((ssize_t) width/2L),y-(ssize_t)
3247 (width/2L),image->columns+width,width,exception);
3248 q=QueueCacheViewAuthenticPixels(blur_view,0,y,blur_image->columns,1,
3250 if ((p == (const Quantum *) NULL) || (q == (Quantum *) NULL))
3255 for (x=0; x < (ssize_t) image->columns; x++)
3260 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
3275 register const double
3278 register const Quantum
3287 channel=GetPixelChannelMapChannel(image,i);
3288 traits=GetPixelChannelMapTraits(image,channel);
3289 blur_traits=GetPixelChannelMapTraits(blur_image,channel);
3290 if ((traits == UndefinedPixelTrait) ||
3291 (blur_traits == UndefinedPixelTrait))
3293 if ((blur_traits & CopyPixelTrait) != 0)
3295 SetPixelChannel(blur_image,channel,p[center+i],q);
3301 intensity=(MagickRealType) GetPixelIntensity(image,p+center);
3303 if ((blur_traits & BlendPixelTrait) == 0)
3305 for (v=0; v < (ssize_t) width; v++)
3307 for (u=0; u < (ssize_t) width; u++)
3309 contrast=GetPixelIntensity(image,pixels)-intensity;
3310 if (fabs(contrast) < threshold)
3312 pixel+=(*k)*pixels[i];
3316 pixels+=GetPixelChannels(image);
3318 pixels+=image->columns*GetPixelChannels(image);
3320 if (fabs((double) gamma) < MagickEpsilon)
3322 SetPixelChannel(blur_image,channel,p[center+i],q);
3325 gamma=1.0/(fabs((double) gamma) <= MagickEpsilon ? 1.0 : gamma);
3326 SetPixelChannel(blur_image,channel,ClampToQuantum(gamma*pixel),q);
3329 for (v=0; v < (ssize_t) width; v++)
3331 for (u=0; u < (ssize_t) width; u++)
3333 contrast=GetPixelIntensity(image,pixels)-intensity;
3334 if (fabs(contrast) < threshold)
3336 alpha=(MagickRealType) (QuantumScale*
3337 GetPixelAlpha(image,pixels));
3338 pixel+=(*k)*alpha*pixels[i];
3342 pixels+=GetPixelChannels(image);
3344 pixels+=image->columns*GetPixelChannels(image);
3346 if (fabs((double) gamma) < MagickEpsilon)
3348 SetPixelChannel(blur_image,channel,p[center+i],q);
3351 gamma=1.0/(fabs((double) gamma) <= MagickEpsilon ? 1.0 : gamma);
3352 SetPixelChannel(blur_image,channel,ClampToQuantum(gamma*pixel),q);
3354 p+=GetPixelChannels(image);
3355 q+=GetPixelChannels(blur_image);
3357 sync=SyncCacheViewAuthenticPixels(blur_view,exception);
3358 if (sync == MagickFalse)
3360 if (image->progress_monitor != (MagickProgressMonitor) NULL)
3365 #if defined(MAGICKCORE_OPENMP_SUPPORT)
3366 #pragma omp critical (MagickCore_SelectiveBlurImage)
3368 proceed=SetImageProgress(image,SelectiveBlurImageTag,progress++,
3370 if (proceed == MagickFalse)
3374 blur_image->type=image->type;
3375 blur_view=DestroyCacheView(blur_view);
3376 image_view=DestroyCacheView(image_view);
3377 kernel=(double *) RelinquishAlignedMemory(kernel);
3378 if (status == MagickFalse)
3379 blur_image=DestroyImage(blur_image);
3384 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3388 % S h a d e I m a g e %
3392 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3394 % ShadeImage() shines a distant light on an image to create a
3395 % three-dimensional effect. You control the positioning of the light with
3396 % azimuth and elevation; azimuth is measured in degrees off the x axis
3397 % and elevation is measured in pixels above the Z axis.
3399 % The format of the ShadeImage method is:
3401 % Image *ShadeImage(const Image *image,const MagickBooleanType gray,
3402 % const double azimuth,const double elevation,ExceptionInfo *exception)
3404 % A description of each parameter follows:
3406 % o image: the image.
3408 % o gray: A value other than zero shades the intensity of each pixel.
3410 % o azimuth, elevation: Define the light source direction.
3412 % o exception: return any errors or warnings in this structure.
3415 MagickExport Image *ShadeImage(const Image *image,const MagickBooleanType gray,
3416 const double azimuth,const double elevation,ExceptionInfo *exception)
3418 #define ShadeImageTag "Shade/Image"
3440 Initialize shaded image attributes.
3442 assert(image != (const Image *) NULL);
3443 assert(image->signature == MagickSignature);
3444 if (image->debug != MagickFalse)
3445 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
3446 assert(exception != (ExceptionInfo *) NULL);
3447 assert(exception->signature == MagickSignature);
3448 shade_image=CloneImage(image,image->columns,image->rows,MagickTrue,exception);
3449 if (shade_image == (Image *) NULL)
3450 return((Image *) NULL);
3451 if (SetImageStorageClass(shade_image,DirectClass,exception) == MagickFalse)
3453 shade_image=DestroyImage(shade_image);
3454 return((Image *) NULL);
3457 Compute the light vector.
3459 light.x=(double) QuantumRange*cos(DegreesToRadians(azimuth))*
3460 cos(DegreesToRadians(elevation));
3461 light.y=(double) QuantumRange*sin(DegreesToRadians(azimuth))*
3462 cos(DegreesToRadians(elevation));
3463 light.z=(double) QuantumRange*sin(DegreesToRadians(elevation));
3469 image_view=AcquireCacheView(image);
3470 shade_view=AcquireCacheView(shade_image);
3471 #if defined(MAGICKCORE_OPENMP_SUPPORT)
3472 #pragma omp parallel for schedule(static,4) shared(progress,status)
3474 for (y=0; y < (ssize_t) image->rows; y++)
3484 register const Quantum
3496 if (status == MagickFalse)
3498 p=GetCacheViewVirtualPixels(image_view,-1,y-1,image->columns+2,3,exception);
3499 q=QueueCacheViewAuthenticPixels(shade_view,0,y,shade_image->columns,1,
3501 if ((p == (const Quantum *) NULL) || (q == (Quantum *) NULL))
3507 Shade this row of pixels.
3509 normal.z=2.0*(double) QuantumRange; /* constant Z of surface normal */
3510 pre=p+GetPixelChannels(image);
3511 center=pre+(image->columns+2)*GetPixelChannels(image);
3512 post=center+(image->columns+2)*GetPixelChannels(image);
3513 for (x=0; x < (ssize_t) image->columns; x++)
3519 Determine the surface normal and compute shading.
3521 normal.x=(double) (GetPixelIntensity(image,pre-GetPixelChannels(image))+
3522 GetPixelIntensity(image,center-GetPixelChannels(image))+
3523 GetPixelIntensity(image,post-GetPixelChannels(image))-
3524 GetPixelIntensity(image,pre+GetPixelChannels(image))-
3525 GetPixelIntensity(image,center+GetPixelChannels(image))-
3526 GetPixelIntensity(image,post+GetPixelChannels(image)));
3527 normal.y=(double) (GetPixelIntensity(image,post-GetPixelChannels(image))+
3528 GetPixelIntensity(image,post)+GetPixelIntensity(image,post+
3529 GetPixelChannels(image))-GetPixelIntensity(image,pre-
3530 GetPixelChannels(image))-GetPixelIntensity(image,pre)-
3531 GetPixelIntensity(image,pre+GetPixelChannels(image)));
3532 if ((normal.x == 0.0) && (normal.y == 0.0))
3537 distance=normal.x*light.x+normal.y*light.y+normal.z*light.z;
3538 if (distance > MagickEpsilon)
3541 normal.x*normal.x+normal.y*normal.y+normal.z*normal.z;
3542 if (normal_distance > (MagickEpsilon*MagickEpsilon))
3543 shade=distance/sqrt((double) normal_distance);
3546 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
3555 channel=GetPixelChannelMapChannel(image,i);
3556 traits=GetPixelChannelMapTraits(image,channel);
3557 shade_traits=GetPixelChannelMapTraits(shade_image,channel);
3558 if ((traits == UndefinedPixelTrait) ||
3559 (shade_traits == UndefinedPixelTrait))
3561 if ((shade_traits & CopyPixelTrait) != 0)
3563 SetPixelChannel(shade_image,channel,center[i],q);
3566 if (gray != MagickFalse)
3568 SetPixelChannel(shade_image,channel,ClampToQuantum(shade),q);
3571 SetPixelChannel(shade_image,channel,ClampToQuantum(QuantumScale*shade*
3574 pre+=GetPixelChannels(image);
3575 center+=GetPixelChannels(image);
3576 post+=GetPixelChannels(image);
3577 q+=GetPixelChannels(shade_image);
3579 if (SyncCacheViewAuthenticPixels(shade_view,exception) == MagickFalse)
3581 if (image->progress_monitor != (MagickProgressMonitor) NULL)
3586 #if defined(MAGICKCORE_OPENMP_SUPPORT)
3587 #pragma omp critical (MagickCore_ShadeImage)
3589 proceed=SetImageProgress(image,ShadeImageTag,progress++,image->rows);
3590 if (proceed == MagickFalse)
3594 shade_view=DestroyCacheView(shade_view);
3595 image_view=DestroyCacheView(image_view);
3596 if (status == MagickFalse)
3597 shade_image=DestroyImage(shade_image);
3598 return(shade_image);
3602 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3606 % S h a r p e n I m a g e %
3610 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3612 % SharpenImage() sharpens the image. We convolve the image with a Gaussian
3613 % operator of the given radius and standard deviation (sigma). For
3614 % reasonable results, radius should be larger than sigma. Use a radius of 0
3615 % and SharpenImage() selects a suitable radius for you.
3617 % Using a separable kernel would be faster, but the negative weights cancel
3618 % out on the corners of the kernel producing often undesirable ringing in the
3619 % filtered result; this can be avoided by using a 2D gaussian shaped image
3620 % sharpening kernel instead.
3622 % The format of the SharpenImage method is:
3624 % Image *SharpenImage(const Image *image,const double radius,
3625 % const double sigma,const double bias,ExceptionInfo *exception)
3627 % A description of each parameter follows:
3629 % o image: the image.
3631 % o radius: the radius of the Gaussian, in pixels, not counting the center
3634 % o sigma: the standard deviation of the Laplacian, in pixels.
3638 % o exception: return any errors or warnings in this structure.
3641 MagickExport Image *SharpenImage(const Image *image,const double radius,
3642 const double sigma,const double bias,ExceptionInfo *exception)
3664 assert(image != (const Image *) NULL);
3665 assert(image->signature == MagickSignature);
3666 if (image->debug != MagickFalse)
3667 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
3668 assert(exception != (ExceptionInfo *) NULL);
3669 assert(exception->signature == MagickSignature);
3670 width=GetOptimalKernelWidth2D(radius,sigma);
3671 kernel_info=AcquireKernelInfo((const char *) NULL);
3672 if (kernel_info == (KernelInfo *) NULL)
3673 ThrowImageException(ResourceLimitError,"MemoryAllocationFailed");
3674 (void) ResetMagickMemory(kernel_info,0,sizeof(*kernel_info));
3675 kernel_info->width=width;
3676 kernel_info->height=width;
3677 kernel_info->bias=bias; /* FUTURE: user bias - non-sensical! */
3678 kernel_info->signature=MagickSignature;
3679 kernel_info->values=(MagickRealType *) AcquireAlignedMemory(
3680 kernel_info->width,kernel_info->width*sizeof(*kernel_info->values));
3681 if (kernel_info->values == (MagickRealType *) NULL)
3683 kernel_info=DestroyKernelInfo(kernel_info);
3684 ThrowImageException(ResourceLimitError,"MemoryAllocationFailed");
3687 j=(ssize_t) kernel_info->width/2;
3689 for (v=(-j); v <= j; v++)
3691 for (u=(-j); u <= j; u++)
3693 kernel_info->values[i]=(double) (-exp(-((double) u*u+v*v)/(2.0*
3694 MagickSigma*MagickSigma))/(2.0*MagickPI*MagickSigma*MagickSigma));
3695 normalize+=kernel_info->values[i];
3699 kernel_info->values[i/2]=(double) ((-2.0)*normalize);
3700 sharp_image=ConvolveImage(image,kernel_info,exception);
3701 kernel_info=DestroyKernelInfo(kernel_info);
3702 return(sharp_image);
3706 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3710 % S p r e a d I m a g e %
3714 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3716 % SpreadImage() is a special effects method that randomly displaces each
3717 % pixel in a block defined by the radius parameter.
3719 % The format of the SpreadImage method is:
3721 % Image *SpreadImage(const Image *image,const double radius,
3722 % const PixelInterpolateMethod method,ExceptionInfo *exception)
3724 % A description of each parameter follows:
3726 % o image: the image.
3728 % o radius: choose a random pixel in a neighborhood of this extent.
3730 % o method: the pixel interpolation method.
3732 % o exception: return any errors or warnings in this structure.
3735 MagickExport Image *SpreadImage(const Image *image,const double radius,
3736 const PixelInterpolateMethod method,ExceptionInfo *exception)
3738 #define SpreadImageTag "Spread/Image"
3754 **restrict random_info;
3763 Initialize spread image attributes.
3765 assert(image != (Image *) NULL);
3766 assert(image->signature == MagickSignature);
3767 if (image->debug != MagickFalse)
3768 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
3769 assert(exception != (ExceptionInfo *) NULL);
3770 assert(exception->signature == MagickSignature);
3771 spread_image=CloneImage(image,image->columns,image->rows,MagickTrue,
3773 if (spread_image == (Image *) NULL)
3774 return((Image *) NULL);
3775 if (SetImageStorageClass(spread_image,DirectClass,exception) == MagickFalse)
3777 spread_image=DestroyImage(spread_image);
3778 return((Image *) NULL);
3785 width=GetOptimalKernelWidth1D(radius,0.5);
3786 random_info=AcquireRandomInfoThreadSet();
3787 image_view=AcquireCacheView(image);
3788 spread_view=AcquireCacheView(spread_image);
3789 #if defined(MAGICKCORE_OPENMP_SUPPORT)
3790 #pragma omp parallel for schedule(static,8) shared(progress,status)
3792 for (y=0; y < (ssize_t) image->rows; y++)
3795 id = GetOpenMPThreadId();
3797 register const Quantum
3806 if (status == MagickFalse)
3808 p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception);
3809 q=QueueCacheViewAuthenticPixels(spread_view,0,y,spread_image->columns,1,
3811 if ((p == (const Quantum *) NULL) || (q == (Quantum *) NULL))
3816 for (x=0; x < (ssize_t) image->columns; x++)
3821 point.x=GetPseudoRandomValue(random_info[id]);
3822 point.y=GetPseudoRandomValue(random_info[id]);
3823 status=InterpolatePixelChannels(image,image_view,spread_image,method,
3824 (double) x+width*point.x-0.5,(double) y+width*point.y-0.5,q,exception);
3825 q+=GetPixelChannels(spread_image);
3827 if (SyncCacheViewAuthenticPixels(spread_view,exception) == MagickFalse)
3829 if (image->progress_monitor != (MagickProgressMonitor) NULL)
3834 #if defined(MAGICKCORE_OPENMP_SUPPORT)
3835 #pragma omp critical (MagickCore_SpreadImage)
3837 proceed=SetImageProgress(image,SpreadImageTag,progress++,image->rows);
3838 if (proceed == MagickFalse)
3842 spread_view=DestroyCacheView(spread_view);
3843 image_view=DestroyCacheView(image_view);
3844 random_info=DestroyRandomInfoThreadSet(random_info);
3845 return(spread_image);
3849 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3853 % U n s h a r p M a s k I m a g e %
3857 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3859 % UnsharpMaskImage() sharpens one or more image channels. We convolve the
3860 % image with a Gaussian operator of the given radius and standard deviation
3861 % (sigma). For reasonable results, radius should be larger than sigma. Use a
3862 % radius of 0 and UnsharpMaskImage() selects a suitable radius for you.
3864 % The format of the UnsharpMaskImage method is:
3866 % Image *UnsharpMaskImage(const Image *image,const double radius,
3867 % const double sigma,const double amount,const double threshold,
3868 % ExceptionInfo *exception)
3870 % A description of each parameter follows:
3872 % o image: the image.
3874 % o radius: the radius of the Gaussian, in pixels, not counting the center
3877 % o sigma: the standard deviation of the Gaussian, in pixels.
3879 % o amount: the percentage of the difference between the original and the
3880 % blur image that is added back into the original.
3882 % o threshold: the threshold in pixels needed to apply the diffence amount.
3884 % o exception: return any errors or warnings in this structure.
3887 MagickExport Image *UnsharpMaskImage(const Image *image,const double radius,
3888 const double sigma,const double amount,const double threshold,
3889 ExceptionInfo *exception)
3891 #define SharpenImageTag "Sharpen/Image"
3912 assert(image != (const Image *) NULL);
3913 assert(image->signature == MagickSignature);
3914 if (image->debug != MagickFalse)
3915 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
3916 assert(exception != (ExceptionInfo *) NULL);
3917 unsharp_image=BlurImage(image,radius,sigma,image->bias,exception);
3918 if (unsharp_image == (Image *) NULL)
3919 return((Image *) NULL);
3920 quantum_threshold=(MagickRealType) QuantumRange*threshold;
3926 image_view=AcquireCacheView(image);
3927 unsharp_view=AcquireCacheView(unsharp_image);
3928 #if defined(MAGICKCORE_OPENMP_SUPPORT)
3929 #pragma omp parallel for schedule(static,4) shared(progress,status)
3931 for (y=0; y < (ssize_t) image->rows; y++)
3933 register const Quantum
3942 if (status == MagickFalse)
3944 p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception);
3945 q=QueueCacheViewAuthenticPixels(unsharp_view,0,y,unsharp_image->columns,1,
3947 if ((p == (const Quantum *) NULL) || (q == (Quantum *) NULL))
3952 for (x=0; x < (ssize_t) image->columns; x++)
3957 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
3969 channel=GetPixelChannelMapChannel(image,i);
3970 traits=GetPixelChannelMapTraits(image,channel);
3971 unsharp_traits=GetPixelChannelMapTraits(unsharp_image,channel);
3972 if ((traits == UndefinedPixelTrait) ||
3973 (unsharp_traits == UndefinedPixelTrait))
3975 if ((unsharp_traits & CopyPixelTrait) != 0)
3977 SetPixelChannel(unsharp_image,channel,p[i],q);
3980 pixel=p[i]-(MagickRealType) GetPixelChannel(unsharp_image,channel,q);
3981 if (fabs(2.0*pixel) < quantum_threshold)
3982 pixel=(MagickRealType) p[i];
3984 pixel=(MagickRealType) p[i]+amount*pixel;
3985 SetPixelChannel(unsharp_image,channel,ClampToQuantum(pixel),q);
3987 p+=GetPixelChannels(image);
3988 q+=GetPixelChannels(unsharp_image);
3990 if (SyncCacheViewAuthenticPixels(unsharp_view,exception) == MagickFalse)
3992 if (image->progress_monitor != (MagickProgressMonitor) NULL)
3997 #if defined(MAGICKCORE_OPENMP_SUPPORT)
3998 #pragma omp critical (MagickCore_UnsharpMaskImage)
4000 proceed=SetImageProgress(image,SharpenImageTag,progress++,image->rows);
4001 if (proceed == MagickFalse)
4005 unsharp_image->type=image->type;
4006 unsharp_view=DestroyCacheView(unsharp_view);
4007 image_view=DestroyCacheView(image_view);
4008 if (status == MagickFalse)
4009 unsharp_image=DestroyImage(unsharp_image);
4010 return(unsharp_image);