Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between OpenCV.NET, OpenCVSharp and EmguCV?

What is the difference between OpenCV.NET, OpenCVSharp and EmguCV?

They are derived from OpenCV.

So, what is the difference in their design, implementation and application philosophies?

like image 736
user366312 Avatar asked Jun 01 '16 11:06

user366312


1 Answers

OpenCVSharp is syntactical closer to OpenCV's C++ functions and methods. Can work on mono as well, and has support for .net core.

You'll probably do the same things with it, so your choice of what you should use maybe depends more on the examples you use (do they use EmguCV or OpenCVSharp).

like image 174
Peter Avatar answered Oct 16 '22 22:10

Peter