Display an EmguCV image in Windows Form Picture Box
Image ImageFrame = capture.QueryFrame(); //line 1
CamImageBox.Image = ImageFrame.ToBitmap();
I have used above code for Display an EmguCV image in Windows Form Picture Box,
But I have got an error:
cannot implicitly convert type 'system.drawing.bitmap' to 'emgu.cv.image'
This case also in Stackoverflow questions, but no one give proper answer for this.