Clear Filters
Clear Filters

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

3 views (last 30 days)
please help me out if there is any method to do this

Answers (2)

Image Analyst
Image Analyst on 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 on 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.

Community Treasure Hunt

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

Start Hunting!