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

1 view (last 30 days)
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.

Answers (1)

KSSV
KSSV on 21 Feb 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!