all video frames are black

I am trying this code , it work with me for som videos , but for the other one I get all frames: black
Any idea about how I can solve this ?
I try to convert it to avi but I get the same, and I couldn't attach it here because it is too large
vidObj = VideoReader('002.mp4');
s = struct('cdata',zeros(vidObj.Height,vidObj.Width,3,'uint8'),'colormap',[]);
>> vidObj.CurrentTime = 0.6;
>> k = 1;
while vidObj.CurrentTime <= 0.9
s(k).cdata = readFrame(vidObj);
k = k+1;
end
whos s

3 件のコメント

Walter Roberson
Walter Roberson 2022 年 2 月 2 日
It is not certain that the mp4 you are reading in is RGB; it could be grayscale or pseudocolor.
Roaa Alnafea
Roaa Alnafea 2022 年 2 月 2 日
Thank you , it is RGB , I try to run the code in MATLAB online with the same file and it works !
Benjamin Thompson
Benjamin Thompson 2022 年 2 月 2 日
Can you post a couple of the frames that you get from VideoReader, as a MAT file? Why do you need the 'colormap' stuff and please post the code that you use to display the frames in the structure s.

サインインしてコメントする。

回答 (0 件)

製品

リリース

R2021b

タグ

質問済み:

2022 年 2 月 2 日

コメント済み:

2022 年 2 月 2 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by