I'm working on C# application that should be able to open a video file that might be compressed as MJPEG, and display individual frames. At the moment I'm using EmguCV, I'm able to create a capture, load the uncompressed avi file and display desired frames. However when I try to open compressed video, such as MJPEG I get an exception Unable to create capture from ....
I have been looking at http://opencv.willowgarage.com/wiki/VideoCodecs, however I dont want to reencode the video before it is processed by the application, so the question is: is there a way to tell EmguCV which codec to use?
I'm able to play the MJPEG video file in VLC and MPC, therefore I guess that the codecs are there. I'm working on Windows 7 x64.
The code looks like this:
Create capture and load avi:
// Create capture object
Emgu.CV.Capture capture;
//Image holder
Image<Bgr, byte> img;
//Load avi
capture = new Emgu.CV.Capture("C:\ultra_e.AVI");
Change frames with help of a slider:
public void slider1_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e)
{
if (capture != null)
{
double f = capture.GetCaptureProperty(CAP_PROP.CV_CAP_PROP_FRAME_COUNT);
double move = f / slider1.Maximum * slider1.Value;
capture.SetCaptureProperty(CAP_PROP.CV_CAP_PROP_POS_FRAMES, move);
updateFrame();
}
Update the picture on the screen:
public void updateFrame()
{
img = capture.QueryFrame();
if (img != null)
{
image1.Source = loadBitmap(img.ToBitmap());
double f = capture.GetCaptureProperty(CAP_PROP.CV_CAP_PROP_POS_FRAMES);
textBox1.Text = ("[Current frame:] " + f);
}
}
Function to convert Bitmap to BitmapSource (found on the internet):
public static BitmapSource loadBitmap(System.Drawing.Bitmap source)
{
IntPtr ip = source.GetHbitmap();
BitmapSource bs;
try
{
bs = System.Windows.Interop.Imaging.CreateBitmapSourceFromHBitmap(ip,
IntPtr.Zero, Int32Rect.Empty,
System.Windows.Media.Imaging.BitmapSizeOptions.FromEmptyOptions());
}
finally
{
DeleteObject(ip);
}
return bs;
}
}
That would be it, I know that it is pretty inefficient. I might want to use something else then PictureBox / Image (WPF) and probably deal with objecd disposal, but at the momet codecs are my biggest concern.
I'm not locked on EmguCV or OpenCV, maybe I should try to use DirectShow instead?