I need to write wrapper to my C++ code to use it inside c# application. Basicly I need to preocess Emgu image from C# in c++ side and return it back. I try to do it this way in un-managed c++ side:

public ref class ImageProcessor
{
public:
    void process(Image<Bgr, Byte>^ InImage)
    {
            cv::Mat image(InImage->Width,
                          InImage->Height,
                          CV_8UC3,
                          InImage->Ptr.ToPointer());

            cv::imwrite("mask.png", mask); //this line throws exception 

    }
 };

When I call thiss function from c#, the exception is throw: System.AccessViolationException was unhandled Message=Attempted to read or write protected memory. This is often an indication that other memory is corrupt.

Question is how to correctly pass Emgu::CV::Image^ from managed code to unmanaged c++?

link|improve this question
Uh-oh, managed C++ and C#... Would you have an opportunity to switch to standard native C++ and standard Java, by any chance? I could help you then, much easier :) – Samuel Audet Jan 18 at 13:30
What is the mask variable on the line that is raising an exception? – Chris O Jan 18 at 15:59
I don't think this code snippet as complete as the mask variable doesn't exist... – mevatron Jan 31 at 15:21
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.