Assuming you have correctly imported Emgu libraries, upload the video using
Capture capture = new Capture("filename");
Then you can capture frames with
Image<Bgr, byte> img = capture.QueryFrame();
You can view the image using the ImageViewer class:
ImageViewer viewer = new ImageViewer(); viewer.Image = img; viewer.ShowDialog();
source share