Effacer les filtres
Effacer les filtres

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

1 vue (au cours des 30 derniers jours)
Omkar Bhanap
Omkar Bhanap le 21 Fév 2018
Commenté : Omkar Bhanap le 23 Fév 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.
  1 commentaire
Omkar Bhanap
Omkar Bhanap le 21 Fév 2018
I also tried 'cat', but it was giving me errors while using code generation.

Connectez-vous pour commenter.

Réponses (1)

KSSV
KSSV le 21 Fév 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