A collection of C# projects translated from Adrian Rosebrock excellent python examples using OpenCV.
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 is used that simply maintains a list of objects to be disposed of at the end. The 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.