How Can I merge R,G,B Components of an image into a single RGB image ?

2 visualizaciones (últimos 30 días)
Omkar Bhanap
Omkar Bhanap el 21 de Feb. de 2018
Comentada: Omkar Bhanap el 23 de Feb. de 2018
I am using 'V4L2 Video Capture' block for interfacing my Raspberrypi Camera with my laptop. I need a single multidimensional signal instead of three separate R, G, B components. Please suggest me any solution for this. It should be compatible with code generation. Thanks in advance.

Respuestas (1)

KSSV
KSSV el 21 de Feb. de 2018
R= rand(200) ;
G = rand(200) ;
B = rand(200) ;
I = cat(3,R,G,B) ;
imshow(I)

Community Treasure Hunt

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

Start Hunting!

Translated by