in reply to Sobel Operator Edge Detection
#sub sobelEdgeDetection($); sub sobelEdgeDetection { }
Also, I don't know the exact differences, but the IM charcoal method produces similar output, but quicker. :-)
#!/usr/bin/perl use warnings; use strict; use Image::Magick; my $file = shift or die "need a file\n";; my $p = new Image::Magick; $p->Read($file); $p->Charcoal('0x1'); $p->Write($0.'.jpg'); exit;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Sobel Operator Edge Detection
by t-k (Novice) on Jul 10, 2012 at 11:08 UTC |