Effacer les filtres
Effacer les filtres

how do i convert rgb image to grayscale and then back to rgb?

3 vues (au cours des 30 derniers jours)
Aakash Amar
Aakash Amar le 30 Mar 2017
please help me out if there is any method to do this

Réponses (2)

Image Analyst
Image Analyst le 30 Mar 2017
Try
grayImage = rgb2gray(rgbImage); % Convert to gray scale.
rgbImage = ind2rgb(grayImage, colorMap); % Will not be the same original RGB image though.

TEJASWINI CHINAWALE
TEJASWINI CHINAWALE le 21 Sep 2017
You can try using jet(m) command which returns the colormap with m colors. You can change the value of m depending on how the converted image should look like.However it is not possible to obtain the original coloured image once you convert it to grayscale or any other form.

Catégories

En savoir plus sur Red dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by