Ask Your Question

Stephen85's profile - activity

2017-07-12 05:51:20 -0600 received badge  Notable Question (source)
2016-01-04 05:57:58 -0600 received badge  Popular Question (source)
2014-03-02 16:53:57 -0600 commented answer Creating a wrapper for C# and converting Bitmap

I don't want to use Emgu CV because I want my IP code to be platform independent. I'm not too familiar with C++ and started learning it only recently, I know it enough to write my IP code. GUI is one of the reasons as well as serial port communication my app has to have, I'm not quite sure how to do it in C++. Thanks for the advice.

2014-03-02 16:19:22 -0600 commented answer Creating a wrapper for C# and converting Bitmap

I wrote my image processing code in C++ and now i want to use it in a C# project. From the link above I have learned that I can do it by creating a managed wrapper in C++/CLI. I want to know is there any other way and how can i convert Bitmaps from c# to Mat so i can use it in C++.

2014-03-02 14:04:24 -0600 commented answer Creating a wrapper for C# and converting Bitmap

No, it has to be C++ code...

2014-03-02 13:38:40 -0600 asked a question Creating a wrapper for C# and converting Bitmap

I have some questions about using OpenCV C++ code in C#... I have created my C++ console application which is used for the image analysis, then created a C++/CLI class library which should work as a wrapper for the OpenCV code. The main issue I'm having is converting a Bitmap received from C# to Mat, I have no idea how to do it. Can anyone point me in the right direction when it comes to the conversion and wrapping? This is the tutorial I'm using for creating the wrapper http://drthitirat.wordpress.com/2013/06/06/use-opencv-c-codes-in-a-vc-project-solution-of-creating-a-managed-clr-wrapper/