Canny edge detector: Difference between revisions

Content added Content deleted
Line 755: Line 755:
)
)
</lang>
</lang>
<p>The above implementation solves the 'inner problem' of Canny Edge Detection in the J, with no external dependencies. Standard libraries provide additional support including interfaces to image file formats and graphic displays. </p>
<p>The above implementation solves the 'inner problem' of Canny Edge Detection in the J language, with no external dependencies. Standard libraries provide additional support including interfaces to image file formats and graphic displays. </p>


<p>Image file libraries for different image formats import into and export from a generalized data structure, an array of pixels with three or four color channels. The following code invokes these standard libraries, and also converts between the import format and the monochromatic representation used here for edge detection.</p>
<p>Image file libraries for different image formats import into and export from a generalized data structure, an array of pixels with three or four color channels. The following code invokes these standard libraries, and also converts between the import format and the monochromatic representation used here for edge detection.</p>