From: cristy Date: Fri, 4 Apr 2014 15:31:52 +0000 (+0000) Subject: (no commit message) X-Git-Tag: 7.0.1-0~2511 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cfe7bf043a5f4481b47266b3867a6b4f8045cee8;p=imagemagick --- diff --git a/MagickCore/effect.c b/MagickCore/effect.c index 4c4b5ed52..f78f41146 100644 --- a/MagickCore/effect.c +++ b/MagickCore/effect.c @@ -862,7 +862,7 @@ MagickExport Image *BlurImage(const Image *image,const double radius, % The format of the EdgeImage method is: % % Image *CannyEdgeImage(const Image *image,const double radius, -% const double sigma,const double low_percent,const double high_percent, +% const double sigma,const double lower_precent,const double upper_percent, % const size_t threshold,ExceptionInfo *exception) % % A description of each parameter follows: @@ -875,9 +875,9 @@ MagickExport Image *BlurImage(const Image *image,const double radius, % % o sigma: the sigma of the gaussian smoothing filter. % -% o low_percent: percentage of pixels in the low threshold. +% o lower_precent: percentage of edge pixels in the lower threshold. % -% o high_percent: percentage of pixels in the high threshold. +% o upper_percent: percentage of edge pixels in the upper threshold. % % o exception: return any errors or warnings in this structure. % @@ -922,6 +922,9 @@ static MagickBooleanType TraceEdge(Image *edge_image,CacheView *edge_view, ssize_t v; + /* + Edge due to pixel gradient between upper and lower thresholds. + */ *q=QuantumRange; status=SyncCacheViewAuthenticPixels(edge_view,exception); if (status != MagickFalse) @@ -937,6 +940,9 @@ static MagickBooleanType TraceEdge(Image *edge_image,CacheView *edge_view, continue; if (IsAuthenticPixel(edge_image,x+u,y+v) == MagickFalse) continue; + /* + Not an edge if gradient value is below the lower threshold. + */ (void) GetMatrixElement(pixel_cache,x+u,y+v,&pixel); if (pixel.intensity < threshold) continue; @@ -953,7 +959,7 @@ static MagickBooleanType TraceEdge(Image *edge_image,CacheView *edge_view, } MagickExport Image *CannyEdgeImage(const Image *image,const double radius, - const double sigma,const double low_percent,const double high_percent, + const double sigma,const double lower_precent,const double upper_percent, ExceptionInfo *exception) { CacheView @@ -963,8 +969,8 @@ MagickExport Image *CannyEdgeImage(const Image *image,const double radius, geometry[MaxTextExtent]; double - high_threshold, - low_threshold; + upper_threshold, + lower_threshold; Image *edge_image; @@ -996,7 +1002,7 @@ MagickExport Image *CannyEdgeImage(const Image *image,const double radius, assert(exception != (ExceptionInfo *) NULL); assert(exception->signature == MagickSignature); /* - Filter out noise before trying to locate and detect any edges. + Filter out noise. */ (void) FormatLocaleString(geometry,MaxTextExtent, "blur:%.20gx%.20g;blur:%.20gx%.20g+90",radius,sigma,radius,sigma); @@ -1014,7 +1020,7 @@ MagickExport Image *CannyEdgeImage(const Image *image,const double radius, return((Image *) NULL); } /* - Find the edge strength by taking the gradient of the image. + Find the intensity gradient of the image. */ pixel_cache=AcquireMatrixInfo(edge_image->columns,edge_image->rows, sizeof(CannyInfo),exception); @@ -1131,7 +1137,8 @@ MagickExport Image *CannyEdgeImage(const Image *image,const double radius, } edge_view=DestroyCacheView(edge_view); /* - Non-maxima suppression; reset edge image. + Non-maxima suppression, remove pixels that are not considered to be part + of an edge. */ histogram=(size_t *) AcquireQuantumMemory(65536,sizeof(*histogram)); if (histogram == (size_t *) NULL) @@ -1230,18 +1237,18 @@ MagickExport Image *CannyEdgeImage(const Image *image,const double radius, /* Estimate hysteresis threshold. */ - number_pixels=(size_t) (low_percent*(image->columns*image->rows- + number_pixels=(size_t) (lower_precent*(image->columns*image->rows- histogram[0])); count=0; for (i=65535; count < (ssize_t) number_pixels; i--) count+=histogram[i]; - high_threshold=(double) ScaleShortToQuantum((unsigned short) i); + upper_threshold=(double) ScaleShortToQuantum((unsigned short) i); for (i=0; histogram[i] == 0; i++) ; - low_threshold=high_percent*(high_threshold+ + lower_threshold=upper_percent*(upper_threshold+ ScaleShortToQuantum((unsigned short) i)); histogram=(size_t *) RelinquishMagickMemory(histogram); /* - Hysteresis thresholding. + Hysteresis threshold. */ edge_view=AcquireAuthenticCacheView(edge_image,exception); #if defined(MAGICKCORE_OPENMP_SUPPORT) @@ -1270,9 +1277,12 @@ MagickExport Image *CannyEdgeImage(const Image *image,const double radius, CannyInfo pixel; + /* + Edge if pixel gradient higher than upper threshold. + */ (void) GetMatrixElement(pixel_cache,x,y,&pixel); - if (pixel.intensity >= high_threshold) - (void) TraceEdge(edge_image,edge_view,pixel_cache,x,y,low_threshold, + if (pixel.intensity >= upper_threshold) + (void) TraceEdge(edge_image,edge_view,pixel_cache,x,y,lower_threshold, exception); } if (SyncCacheViewAuthenticPixels(edge_view,exception) == MagickFalse) diff --git a/PerlMagick/Magick.xs b/PerlMagick/Magick.xs index e207408fc..f981e6785 100644 --- a/PerlMagick/Magick.xs +++ b/PerlMagick/Magick.xs @@ -546,7 +546,7 @@ static struct { "Grayscale", { {"method", MagickNoiseOptions} } }, { "CannyEdge", { {"geometry", StringReference}, {"radius", RealReference}, {"sigma", RealReference}, - {"low-factor", RealReference}, {"high-factor", RealReference} } }, + {"lower-percent", RealReference}, {"upper-percent", RealReference} } }, }; static SplayTreeInfo