Simulink Picture transmitting serial

Hello,
I transmit by a serial link an picture The display of the black and white picture works.
To display color would require me to send in this form. ..... RGB RGB RGB (Red Green Blue)
The "Picture From File" transmits data in this form: RRR ... GGG... BBB ...
How to go from RGB RGB RGB ... RRR ... GGG ... BBB?
Thank you

Answers (1)

3 Comments

The size of the image is 128x160 =20480 pixels :-)
RRR.....>20k
VVV.... >20k
BBB.... >20k
The size of the image is 128 x 160 x 3.
I do not know what your RRR or VVV or BBB signifies ?
Your model shows the three layers being mixed down to a single layer: it is rgb2gray() but with different weightings than usual. Your model does not try to transmit color.
R = pixel RED
V(vert in french) = G pixel Green
B =pixel blue
My scheme works to display in gray. I would like to display in color.

Sign in to comment.

Asked:

on 8 Aug 2015

Edited:

on 11 Aug 2015

Community Treasure Hunt

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

Start Hunting!