First time here? Check out the FAQ!

Ask Your Question
0

reading a video with opencv

asked Feb 12 '13

engine gravatar image

Hi! I have a video engine2.avi that I want to read and show with openCV. here 's the code that I used:

  #include <opencv2/core/core.hpp>
  #include <opencv2/highgui/highgui.hpp>
  #include <iostream>

  using namespace cv;

  int main(int argc, char** argv)
{
string filename = "D:\\BMDvideos\\engine2.avi";
VideoCapture capture(filename);
Mat frame;

if( !capture.isOpened() )
    throw "Error when reading steam_avi";

namedWindow( "w", 1);
for( ; ; )
{
    capture >> frame;
  //  if(!frame)
   //     break;
    imshow("w", frame);
    waitKey(20); // waits to display frame
}
waitKey(0); }

this code doesn't work if I the file has the codec YUV 4:2:2 (UYVY)(I record the video using Direct-Show), but works when I use a video that grabbed whit openCV !! has anybody an Idea how this could work ? thanks in advance

Preview: (hide)

1 answer

Sort by » oldest newest most voted
3

answered Feb 12 '13

This is known OpenCV issue. There are some problems with loading non-compressed video files using FFMPEG back-end.

Preview: (hide)

Comments

thanks Alexander for your answer but in this page they didn't solve it, I'm use OpenCV 242 and my video is 1920x1080 with 25fps

engine gravatar imageengine (Feb 12 '13)edit

Question Tools

Stats

Asked: Feb 12 '13

Seen: 1,457 times

Last updated: Feb 12 '13