Canny edge detector: Difference between revisions

m (Corrected typo.)
Line 866:
Mathematica uses canny edge detection by default. This seems so cheaty next to all of these giant answers...
 
=={{header|MATLAB}} / {{header|Octave}}==
There is a built-function in function,the image processing toolbox [http://www.mathworks.com/help/images/ref/edge.html edge], that has Canny Edge Detection as one of its options.
<lang MATLAB>BWImage = edge(GrayscaleImage,'canny');</lang>
 
Anonymous user