https://github.com/keboo/pyimagesearchsharp
A collection of C# projects translated from Adrian Rosebrock excellent python examples using OpenCV
https://github.com/keboo/pyimagesearchsharp
opencv pyimagesearch
Last synced: over 1 year ago
JSON representation
A collection of C# projects translated from Adrian Rosebrock excellent python examples using OpenCV
- Host: GitHub
- URL: https://github.com/keboo/pyimagesearchsharp
- Owner: Keboo
- License: mit
- Created: 2016-11-23T05:24:52.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-24T20:26:15.000Z (over 9 years ago)
- Last Synced: 2025-02-28T20:41:19.487Z (over 1 year ago)
- Topics: opencv, pyimagesearch
- Language: C#
- Size: 24.9 MB
- Stars: 11
- Watchers: 5
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PyImageSearch in C#
A collection of C# projects translated from [Adrian Rosebrock excellent python examples](http://www.pyimagesearch.com/) using OpenCV.
## Implemented projects
- [Document Scanner](9-1-2014-DocumentScanner)
- [Skin Detection](8-18-2014-SkinDetection)
- [Color Transfer](6-30-2014-ColorTransfer)
## Utility Code
In both the OpenCVSharp and Emgu versions the OpenCV objects implement IDisposable and should be properly disposed. To facilitate this, and to keep the code resembling the original blog post, a [Disposer class](Common/Disposer.cs) is used that simply maintains a list of objects to be disposed of at the end.
The [Common](Common) code contain many utility classes similar ot those presented in the original blog posts.
This code was done as a learning experience, and provided as a guide for otheres. The code should be seen as an example, and not production ready. I have tried to keep the code similar to the original blog posts, rather than clean refactoring to make it clean C# code.
Pull requests welcome.