{"id":21901221,"url":"https://github.com/koraygocmen/medianfilter","last_synced_at":"2025-07-20T17:04:09.558Z","repository":{"id":139566257,"uuid":"141603933","full_name":"KorayGocmen/medianfilter","owner":"KorayGocmen","description":"Remove moving objects from a series of images and create a new image with median filter method","archived":false,"fork":false,"pushed_at":"2019-09-01T02:38:04.000Z","size":7248,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-03-22T06:16:54.237Z","etag":null,"topics":["go","golang","image","image-processing","images","medianfilter"],"latest_commit_sha":null,"homepage":"","language":"Go","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/KorayGocmen.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":"2018-07-19T16:15:22.000Z","updated_at":"2024-07-06T01:13:38.000Z","dependencies_parsed_at":"2023-05-15T13:00:37.061Z","dependency_job_id":null,"html_url":"https://github.com/KorayGocmen/medianfilter","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/KorayGocmen/medianfilter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KorayGocmen%2Fmedianfilter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KorayGocmen%2Fmedianfilter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KorayGocmen%2Fmedianfilter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KorayGocmen%2Fmedianfilter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KorayGocmen","download_url":"https://codeload.github.com/KorayGocmen/medianfilter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KorayGocmen%2Fmedianfilter/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266161901,"owners_count":23885927,"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":["go","golang","image","image-processing","images","medianfilter"],"created_at":"2024-11-28T15:12:45.557Z","updated_at":"2025-07-20T17:04:09.531Z","avatar_url":"https://github.com/KorayGocmen.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# `MedianFilter`\n\t\nPackage MedianFilter implements a simple library for image operations. The library can work with pngs or jpgs. Same functions can be used for both of those image types.\n\nRead more here:\nhttp://www.koraygocmen.com/removing-moving-objects-from-images-in-go\n\n---\n#### Full Documentation:\n\nhttps://godoc.org/github.com/KorayGocmen/MedianFilter\n\n```go\npackage main\n\nimport (\n\t\"io/ioutil\"\n\t\"log\"\n\n\t\"github.com/koraygocmen/MedianFilter\"\n)\n\nfunc main() {\n\tfiles, err := ioutil.ReadDir(\"./test-frames/\")\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\n\tvar filePaths []string\n\tfor _, f := range files {\n\t\tfilePaths = append(filePaths, \"./test-frames/\"+f.Name())\n\t}\n\n\tif err := MedianFilter.RemoveMovingObjs(filePaths, \"./out.jpg\"); err != nil {\n\t\tlog.Fatal(err)\n\t}\n}\n```\n\n## Result\n ![input](github/input.gif)\n\n to\n\n ![output](github/out.png)\n\n### Thanks \n---\n\nNikolas Moya, for writing the very informative [Medium Article](https://medium.com/@nikolasmoya/simple-algorithm-to-remove-moving-objects-from-pictures-cdd3396c68e0) explaning the concept and providing the test frames used in this code.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkoraygocmen%2Fmedianfilter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkoraygocmen%2Fmedianfilter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkoraygocmen%2Fmedianfilter/lists"}