Convert a uint16 into values into RGB

34 visualizaciones (últimos 30 días)
Sarah DS
Sarah DS el 8 de Jun. de 2021
Respondida: Surabhi KS el 10 de Jun. de 2021
Hello Matlab community!
I have a question regarding the transformation of an uint16 values captured by a arduino photoeletric sensor to RGB values. The image below is the photodiode spectral responsivity. Clear are the photodiodes without any spectral filters.
The cod below is provided by the manufacturer itself in order to transform the uint16 into rgb values, however it is a bit confused to me still on why they would assume the entire sum of the is equal to clear, is it perphaps as seen in the image below, all the channels are included within the clear channel itself? The manufacturer explained very briefly something about being adapted to "low RGB resolution" so it can be seem by screens, however it did not developed anymore.
The end result is in RGB I am just trying to comprehend the exact theory behind it
uint16_t sum = clear;
float r, g, b;
r = red;
r /= sum;
g = green;
g /= sum;
b = blue;
b /= sum;
r *= 256; g *= 256; b *= 256;
  4 comentarios
Rik
Rik el 8 de Jun. de 2021
If your question is not directly related to Matlab, why did you post it here?
What kind of data goes into this function? What kind of output is expected? Have a read here. It will greatly improve your chances of getting an answer.
Sarah Sierra
Sarah Sierra el 8 de Jun. de 2021
You are right sir, if you don't mind, in that case is better to be deleted. Sorry for trouble

Iniciar sesión para comentar.

Respuesta aceptada

Surabhi KS
Surabhi KS el 10 de Jun. de 2021
If you have an image I that is uint 16 you could try this to convert it to RGB:
I = mat2gray(I);
IRGB = cat(3, I, I, I);
imshow(IRGB)

Más respuestas (0)

Categorías

Más información sobre Array and Matrix Mathematics en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by