Depth base Image Rendering
4 views (last 30 days)
Show older comments
I extracted frames from yuv file but frames are black, and how can apply depth's yuv file on left camera yuv file?
4 Comments
DGM
on 26 Apr 2022
It's not clear to me what read() method you're using. That doesn't doesn't look like it makes sense for the videoreader method by the same name. Since I don't know what read() is and you never said what the class or range of the data is, I really have nothing to go on.
If all you want to see is luma, you should be able to just use Y without converting to RGB. Since nobody knows what the class or range of the image data is, maybe you can at least get something to show up if you use an implicit displayrange parameter when calling imshow().
imshow(Y(:,:,frame),[])
Answers (0)
See Also
Categories
Find more on Convert Image Type in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!