Depth base Image Rendering
Afficher commentaires plus anciens
I extracted frames from yuv file but frames are black, and how can apply depth's yuv file on left camera yuv file?
4 commentaires
Image Analyst
le 24 Avr 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
le 26 Avr 2022
DGM
le 26 Avr 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),[])
Réponses (0)
Catégories
En savoir plus sur Convert Image Type dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!