{"id":19073227,"url":"https://github.com/anshap1719/convolve-image","last_synced_at":"2026-02-08T01:34:00.316Z","repository":{"id":232401565,"uuid":"784294366","full_name":"anshap1719/convolve-image","owner":"anshap1719","description":"A crate to perform convolution operations with stride on either image data or n-dimensional arrays","archived":false,"fork":false,"pushed_at":"2025-06-04T20:46:14.000Z","size":32,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-10T15:37:04.353Z","etag":null,"topics":["convolution","image-processing","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/anshap1719.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null}},"created_at":"2024-04-09T15:10:21.000Z","updated_at":"2024-05-03T02:25:55.000Z","dependencies_parsed_at":null,"dependency_job_id":"38dbb387-227c-4f63-b204-fc90b525348f","html_url":"https://github.com/anshap1719/convolve-image","commit_stats":null,"previous_names":["anshap1719/convolve-image"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/anshap1719/convolve-image","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anshap1719%2Fconvolve-image","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anshap1719%2Fconvolve-image/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anshap1719%2Fconvolve-image/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anshap1719%2Fconvolve-image/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/anshap1719","download_url":"https://codeload.github.com/anshap1719/convolve-image/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anshap1719%2Fconvolve-image/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29216086,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-08T00:10:47.190Z","status":"ssl_error","status_checked_at":"2026-02-08T00:10:43.589Z","response_time":63,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["convolution","image-processing","rust"],"created_at":"2024-11-09T01:46:00.057Z","updated_at":"2026-02-08T01:34:00.301Z","avatar_url":"https://github.com/anshap1719.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Image Convolution Using Separable Kernel\n\nThis project provides an implementation convolution on images using separable kernels of arbitrary size. The library is aimed to provide a fast implementation with 0 dependencies other than `image-rs`.\n\n## Usage\n\n```rust\nuse convolve_image::convolve::Convolution;\nuse convolve_image::kernel::SeparableKernel;\n\nfn convolve_image() {\n    let image = image::open(\"./sample.jpg\").unwrap();\n    let image = image.to_rgb32f();\n    image.convolve(SeparableKernel::new([1. / 4., 1. / 2., 1. / 4.]), 1);\n}\n```\n\n## Installation\n\nTo use this library in your Rust project, add the following to your `Cargo.toml` file:\n\n```toml\n[dependencies]\nconvolve-image = \"0.1.0\"","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanshap1719%2Fconvolve-image","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanshap1719%2Fconvolve-image","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanshap1719%2Fconvolve-image/lists"}