{"id":20400324,"url":"https://github.com/fschutt/fastblur","last_synced_at":"2025-04-05T17:03:54.479Z","repository":{"id":57627495,"uuid":"103571868","full_name":"fschutt/fastblur","owner":"fschutt","description":"Fast (linear time) implementation of the Gaussian Blur algorithm in Rust","archived":false,"fork":false,"pushed_at":"2024-11-11T12:30:13.000Z","size":201,"stargazers_count":44,"open_issues_count":7,"forks_count":9,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-29T16:06:47.490Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fschutt.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-APACHE","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-09-14T19:14:43.000Z","updated_at":"2025-03-15T09:32:24.000Z","dependencies_parsed_at":"2025-01-13T01:15:48.856Z","dependency_job_id":null,"html_url":"https://github.com/fschutt/fastblur","commit_stats":{"total_commits":25,"total_committers":3,"mean_commits":8.333333333333334,"dds":0.52,"last_synced_commit":"07629f9061db5d4c5f2cf9a40a8a5f7c6111123d"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fschutt%2Ffastblur","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fschutt%2Ffastblur/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fschutt%2Ffastblur/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fschutt%2Ffastblur/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fschutt","download_url":"https://codeload.github.com/fschutt/fastblur/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247369953,"owners_count":20927928,"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":[],"created_at":"2024-11-15T04:39:33.883Z","updated_at":"2025-04-05T17:03:54.452Z","avatar_url":"https://github.com/fschutt.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# fastblur\n\nFast (linear time) implementation of the Gaussian Blur algorithm in Rust.\nOriginal taken from http://blog.ivank.net/fastest-gaussian-blur.html\n\n## Usage\n\nThe image is assumed to be an RGB image with three channels.\nThis should change in the future, so you can blur as many channels as you want. Still WIP.\n\n```rust\n#[dependencies]\nfastblur = { git = \"https://github.com/fschutt/fastblur\" }\n```\n\n```rust\nuse fastblur::gaussian_blur;\n\n// data is a Vec\u003c[u8;3]\u003e - 3 items for R, G and B.\n// This format will probably change.\ngaussian_blur(\u0026mut data, width, height, 10.0);\n```\n\n__NOTE__: This is not \"the fastest\" Gaussian blur. It currently takes 8ms - but\nit is independent of the blur size. A regular Gaussian blur depends on the size\nof the blur. At a 3px blur, the example from the `imageproc` library needs 4ms.\nAt a 10px blur, it already needs 28ms. And so on. This library always needs\n8ms, no matter of the size of the blur.\n\n## License\n\nLicensed under either of\n\n- Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or \u003chttp://www.apache.org/licenses/LICENSE-2.0\u003e)\n- MIT license ([LICENSE-MIT](LICENSE-MIT) or \u003chttp://opensource.org/licenses/MIT\u003e)\n\nat your option.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffschutt%2Ffastblur","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffschutt%2Ffastblur","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffschutt%2Ffastblur/lists"}