All Projects → polyfloyd → edge-detection-rs

polyfloyd / edge-detection-rs

Licence: MIT license
The Canny edge detection algorithm implemented in Rust

Programming Languages

rust
11053 projects

Projects that are alternatives of or similar to edge-detection-rs

OpenCVAndroid
Using OpenCV in Android Devices
Stars: ✭ 25 (-19.35%)
Mutual labels:  canny
images-processing
Project of computational mathematics, image processing, eliminating the noise of an image, reflection of an image and canny filter
Stars: ✭ 23 (-25.81%)
Mutual labels:  canny

Edge Detection

Build Status Crate Documentation

An implementation of the Canny edge detection algorithm in Rust. The base for many computer vision applications.

let source_image = image::open("testdata/line-simple.png")
    .expect("failed to read image")
    .to_luma();
let detection = edge_detection::canny(
    source_image,
    1.2,  // sigma
    0.2,  // strong threshold
    0.01, // weak threshold
);

alt tag

alt tag

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].