Effacer les filtres
Effacer les filtres

Convert 3 greyscale images representing RGB to RGB image

9 vues (au cours des 30 derniers jours)
Claretconnor
Claretconnor le 5 Fév 2022
Commenté : Claretconnor le 6 Fév 2022
I have used the imread() function to read in three greyscale images , each image represents the same image but one where the illumination was red light then green light and finally blue. I would like to convert these 3 greyscale images that represent the 3 RGB channels into an RGB image but Im unsure how to do so and cannot find any documentation on this exact case. Any help would be much appreciated.

Réponse acceptée

Rik
Rik le 5 Fév 2022
Using the standard conventions:
RGB=cat(3,red(:,:,1),green(:,:,1),blue(:,:,1));
The indexing is in there in case your input images are stored as RGB.
  5 commentaires
Rik
Rik le 6 Fév 2022
Then that monochrome camera stores the images as RGB. Not uncommon, but technically not correct.
Claretconnor
Claretconnor le 6 Fév 2022
oh right I just assumed that they would be stored as grayscale images, my apologies.

Connectez-vous pour commenter.

Plus de réponses (0)

Produits


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by