{"id":22711604,"url":"https://github.com/polyfloyd/edge-detection-rs","last_synced_at":"2025-10-11T14:31:15.043Z","repository":{"id":57623286,"uuid":"107130597","full_name":"polyfloyd/edge-detection-rs","owner":"polyfloyd","description":"The Canny edge detection algorithm implemented in Rust","archived":false,"fork":false,"pushed_at":"2024-07-29T12:06:59.000Z","size":677,"stargazers_count":40,"open_issues_count":0,"forks_count":6,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-21T22:01:40.128Z","etag":null,"topics":["canny","computer-vision"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/polyfloyd.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-10-16T13:23:17.000Z","updated_at":"2024-10-23T04:06:47.000Z","dependencies_parsed_at":"2024-12-31T16:11:19.023Z","dependency_job_id":"e16494d8-aed9-4626-8aa9-d6607794e15c","html_url":"https://github.com/polyfloyd/edge-detection-rs","commit_stats":{"total_commits":76,"total_committers":2,"mean_commits":38.0,"dds":"0.013157894736842146","last_synced_commit":"51fd1bd73eeae35efc9f3675e6b9e26c551b5c19"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/polyfloyd%2Fedge-detection-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/polyfloyd%2Fedge-detection-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/polyfloyd%2Fedge-detection-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/polyfloyd%2Fedge-detection-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/polyfloyd","download_url":"https://codeload.github.com/polyfloyd/edge-detection-rs/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":236096212,"owners_count":19094181,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["canny","computer-vision"],"created_at":"2024-12-10T13:07:33.396Z","updated_at":"2025-10-11T14:31:15.038Z","avatar_url":"https://github.com/polyfloyd.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"Edge Detection\n==============\n[![Crate](https://img.shields.io/crates/v/edge-detection.svg)](https://crates.io/crates/edge-detection)\n[![Documentation](https://docs.rs/edge-detection/badge.svg)](https://docs.rs/edge-detection/)\n\nAn implementation of the Canny edge detection algorithm in Rust. The base for\nmany computer vision applications.\n\n```rust\nlet source_image = image::open(\"testdata/line-simple.png\")\n    .expect(\"failed to read image\");\n\nlet detection = edge_detection::canny(\n    source_image,\n    1.2,  // sigma\n    0.2,  // strong threshold\n    0.01, // weak threshold\n);\n```\n\n![alt tag](https://raw.githubusercontent.com/polyfloyd/edge-detection-rs/master/media/demo-circle.png \"Circle\")\n\n![alt tag](https://raw.githubusercontent.com/polyfloyd/edge-detection-rs/master/media/demo-peppers.png \"Peppers\")\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpolyfloyd%2Fedge-detection-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpolyfloyd%2Fedge-detection-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpolyfloyd%2Fedge-detection-rs/lists"}