How to read pixel values of a video?

Posted by vikramtheone on Stack Overflow See other posts from Stack Overflow or by vikramtheone
Published on 2010-04-27T20:11:16Z Indexed on 2010/04/27 20:13 UTC
Read the original article Hit count: 304

Hi Guys,

   I recently wrote C programs for image processing of BMP images, I had to read the pixel values and process them, it was very simple I followed the BMP header contents and I could get most of the information of the BMP image.

Now the challenge is to process videos (Frame by Frame), how can I do it? How will I be able to read the headers of continuous streams of image frames in a video clip? Or else, is it like, for example, the mpeg format will also have universal header, upon reading which I can get the information about the entire video and after the header, all the data are only pixels.

I hope I could convey.

Has anyone got experience with processing videos?

Any books or links to tutorials will be very helpful.

Vikram

© Stack Overflow or respective owner

Related posts about image-processing

Related posts about video-processing