Ask Your Question

subha's profile - activity

2020-09-21 04:44:42 -0600 received badge  Popular Question (source)
2017-05-17 09:00:26 -0600 asked a question CV_CAP_PROP_FPS return -nan

Hello all,

I am trying to get FPS (Framrate per sec) by using VideoCapture and CV_CAP_PROP_FPS. But for many videos, I am getting FPS as -nan.

OPENCV VERSION: 2.4.10 FFMPEG VERSION: 2.7.6

Can You Guys Please help me to sort out these issues??

Thanks in advance...........

2017-01-20 05:48:31 -0600 commented question Read and save YUV images

Hi..it is ".yuv" extension image file

2017-01-19 02:51:48 -0600 commented answer Read YUV image from filedump

Thanks...I used the above solution idea in my cpp code. It worked....

2017-01-19 02:46:34 -0600 asked a question Read and save YUV images

Hello guys,

Is there any ways to read raw yuv images using imread(It should not be converted to BGR format)?

If so, what are the steps needs to be followed?

Thanks in advance.....

2017-01-05 09:33:56 -0600 asked a question Read YUV image from filedump

Hello Guys, I am having yuv pixel contents(YUV420) as file dump. For example,

byte[1], byte[2]........byte[(width * height * 3)/2] in file.

I am having few questions:

1) How to read YUV pixels using file pointer and store in Mat object.

2) How to convert YUV Mat object to RGB Mat object.

I am using CPP code.

Thanks in Advance ...