Pixel
Pixel

Reputation: 439

How to Create a Opencv dll for C# application?

i have C++ Opencv code where i need to build it as a C++ dll which is suppose to use in c# application. do i need to use "extern " spec or do i need to add a reference for the DLL?

How to Create a Opencv dll for C# application ?

How to Achieve this ??

Upvotes: 3

Views: 2365

Answers (2)

Freelancer
Freelancer

Reputation: 9074

Emgu CV is a cross platform .Net wrapper to the Intel OpenCV image processing library. Allowing OpenCV functions to be called from .NET compatible languages such as C#, VB, VC++, IronPython etc.

OpenCV is just a library used by your C/C++ code.

Refer Following Link:

http://www.emgu.com/wiki/index.php/Main_Page

Also Refer This useful link.

Hope its helpful.

Upvotes: 2

rekire
rekire

Reputation: 47945

Why don't you use OpenCvDotNet?

This warper should do what you want.

Upvotes: 0

Related Questions