A library for detecting edges in images.
Finding the edges in an image
extern crate edge_detection;
extern crate image;
let source_image = open
.expect
.to_luma;
let detection = canny;
See the canny
function for details on what each parameter means.