{"id":15170403,"url":"https://github.com/ryeguard/cvpipe","last_synced_at":"2026-02-27T17:41:43.104Z","repository":{"id":220224008,"uuid":"751076633","full_name":"ryeguard/cvpipe","owner":"ryeguard","description":"A tool for quickly prototyping computer vision filters and operations using OpenCV/GoCV.","archived":false,"fork":false,"pushed_at":"2025-03-20T17:02:25.000Z","size":32,"stargazers_count":2,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-20T18:22:08.182Z","etag":null,"topics":["gocv","opencv"],"latest_commit_sha":null,"homepage":"","language":"Go","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/ryeguard.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":"2024-01-31T22:03:39.000Z","updated_at":"2024-12-01T11:36:12.000Z","dependencies_parsed_at":"2024-01-31T23:36:10.013Z","dependency_job_id":"e20800d0-5e25-42a3-a6a0-838369ff2193","html_url":"https://github.com/ryeguard/cvpipe","commit_stats":{"total_commits":17,"total_committers":3,"mean_commits":5.666666666666667,"dds":"0.23529411764705888","last_synced_commit":"11c92e1a7faad4ec7169fd0d34482d253546c79d"},"previous_names":["ryeguard/cvpipe"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryeguard%2Fcvpipe","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryeguard%2Fcvpipe/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryeguard%2Fcvpipe/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryeguard%2Fcvpipe/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ryeguard","download_url":"https://codeload.github.com/ryeguard/cvpipe/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247956525,"owners_count":21024565,"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":["gocv","opencv"],"created_at":"2024-09-27T08:02:04.967Z","updated_at":"2026-02-27T17:41:38.059Z","avatar_url":"https://github.com/ryeguard.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# cvpipe\n\n`cvpipe` is a tool for quickly prototyping computer vision filters and operations using [OpenCV](https://opencv.org/)/[GoCV](https://gocv.io/).\n\n## Getting Started\n\nBuild and run the docker image to quickly get started:\n\n```bash\ndocker build -t cvpipe .\n```\n\n```bash\ndocker run -it --rm \\\n--mount type=bind,source=\"$(pwd)/data\",target=/go/src/cvpipe/data \\\n-t cvpipe\n```\n\n## Usage\n\nThe `cvpipe` package provides a simple API for chaining together OpenCV operations in Go. The following pseudo-code demonstrates the intention of the package:\n\n```go\npipe := NewPipe()\ndefer pipe.Close()\n\nresult := pipe.\n    Add(ResizeOperation(0.5)).\n    Add(BlurOperation(5)).\n    Add(ThresholdOperation(127)).\n    Run(image)\ndefer result.Close()\n\n// Do something with the result\n```\n\nFor up-to-date, working/running examples, see the [cmd](./cmd) directory.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fryeguard%2Fcvpipe","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fryeguard%2Fcvpipe","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fryeguard%2Fcvpipe/lists"}