Depth base Image Rendering
Mostra commenti meno recenti
I extracted frames from yuv file but frames are black, and how can apply depth's yuv file on left camera yuv file?
4 Commenti
Image Analyst
il 24 Apr 2022
I have absolutely no idea what that means. Is yuv the color space? Where does the depth information come from? What does "apply depth's yuv file" mean? What is "depth" and how does it own a yuv file? Assuming depth did have a YUV file, what does it mean to "apply" it?
In general to see a floating point image you should use [], like
imshow(depthImage, []);
imshow(yImage, []);
imshow(yuv(:, :, 3), []);
Sahar Akhtar
il 26 Apr 2022
DGM
il 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),[])
Risposte (0)
Categorie
Scopri di più su Convert Image Type in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!