I'm unfortunately struggling with this. I have a project that is mixed with Emgu and OpenCvSharp. Sounds odd but there are reasons.
At any rate, what I have is an EMGU.CV.Image that I'd like to use to populate an OpenCvSharp IplImage
I'm assuming this is possible, however I cannot wrap my head around it.
Relevant snippet of code (C#):
FrameCapture = Cv.CreateFileCapture(@"C:\test\vid1.mp4");
var frm = cap.QueryFrame();
var frameBmp = frm.Bitmap;
IplImage curFrame = ??? <<====== I'd like to create curFrame based on frameBmp