]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authorcristy <urban-warrior@git.imagemagick.org>
Sun, 24 Mar 2013 01:42:04 +0000 (01:42 +0000)
committercristy <urban-warrior@git.imagemagick.org>
Sun, 24 Mar 2013 01:42:04 +0000 (01:42 +0000)
Magick++/lib/STL.cpp

index 721163ce5cc63e23900eee42f822ec46025fcc3d..ecf681b1cdb47a8f5b0873e37a6d4f49c28d4968 100644 (file)
@@ -335,14 +335,13 @@ void Magick::drawImage::operator()( Magick::Image &image_ ) const
 }
 
 // Edge image (hilight edges in image)
-Magick::edgeImage::edgeImage( const double radius_, const double sigma_ )
-  : _radius( radius_ ),
-    _sigma( sigma_ )
+Magick::edgeImage::edgeImage( const double radius_ )
+  : _radius( radius_ )
 {
 }
 void Magick::edgeImage::operator()( Magick::Image &image_ ) const
 {
-  image_.edge( _radius, _sigma );
+  image_.edge( _radius );
 }
 
 // Emboss image (hilight edges with 3D effect)