{"id":15897586,"url":"https://github.com/maturk/image-denoising","last_synced_at":"2025-06-27T19:34:02.025Z","repository":{"id":157967713,"uuid":"597143904","full_name":"maturk/image-denoising","owner":"maturk","description":"Image denoising algorithms in Python","archived":false,"fork":false,"pushed_at":"2023-02-05T19:49:57.000Z","size":1825,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-08T09:36:01.443Z","etag":null,"topics":["computer-vision","denoising","denoising-images","python"],"latest_commit_sha":null,"homepage":"https://maturk.github.io/page/2023/02/03/image_denoising.html","language":"Python","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/maturk.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}},"created_at":"2023-02-03T18:15:56.000Z","updated_at":"2024-09-10T09:59:45.000Z","dependencies_parsed_at":null,"dependency_job_id":"2867aeaf-c81b-472e-bc8d-e00ed8c2a6f1","html_url":"https://github.com/maturk/image-denoising","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maturk%2Fimage-denoising","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maturk%2Fimage-denoising/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maturk%2Fimage-denoising/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maturk%2Fimage-denoising/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maturk","download_url":"https://codeload.github.com/maturk/image-denoising/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246875907,"owners_count":20848048,"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":["computer-vision","denoising","denoising-images","python"],"created_at":"2024-10-06T10:00:28.617Z","updated_at":"2025-04-02T19:12:20.575Z","avatar_url":"https://github.com/maturk.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"A small collection of Image Based Denoising algorithms written in Python. Small writeup and demo images can be seen here: [link to demo.](https://maturk.github.io/page/2023/02/03/image_denoising.html) All algorithms are hard coded. Requirements are only numpy and Pillow (see requirements.txt).\n\n## Algorithms:\n- [x] Gaussian blur\n- [x] Bilateral filter\n    - [ ] TODO: optimize bilateral\n- [ ] Non-local means filter \n- [ ] Neural network based denoising \n    - [ ] Intel® Open Image Denoise  \n\n## Download\n```\ngit clone git@github.com:maturk/image-denoising.git\ncd image-denoising/\npip install -r requirements.txt    \n```\n\n### Gaussian Blur\nGaussian blur is one of the simplest denoising algorithms and it amounts to estimating\nat each pixel position a local average of intensities and corresponds to low-pass filtering.\n\n```\npython ./gaussian-blur/gaussian-blur.py --size 5 --sigma 1 --show True --save True\n```\n### Bilateral Filter\nThe bilateral filter is technique to smooth images while preserving edges. It consists of a weighted product of two gaussian kernels, one for pixel distances (sigma_space) and another for pixel intensities (sigma_color). \n\n```\npython ./bilateral-filter/bilateral-filter.py --size 10 --sigma_color 10  --sigma_space 10 --show True --save True\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaturk%2Fimage-denoising","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaturk%2Fimage-denoising","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaturk%2Fimage-denoising/lists"}