Display an EmguCV image in Windows Form Picture Box
09:20 04 May 2015
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.

c# emgucv