Image-Processing-CLI-in-Rust icon indicating copy to clipboard operation
Image-Processing-CLI-in-Rust copied to clipboard

Added Canny Edge Detector

Open EthanTheMaster opened this issue 6 years ago • 0 comments

This is an implementation of an edge detector based on the Canny Edge Detection Algorithm. The new operation is called "canny" and it takes 3 floats: sigma (Gaussian blur parameter to reduce noise), min_val (parameter to remove pixels that aren't "strong" enough edge pixels), and max_val (parameter that keeps pixels that are "strong" enough edge pixels).

EthanTheMaster avatar Oct 04 '19 22:10 EthanTheMaster