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++?
maskvariable on the line that is raising an exception? – Chris O Jan 18 at 15:59maskvariable doesn't exist... – mevatron Jan 31 at 15:21