Clear Filters
Clear Filters

Convert Rgb to grayscale and back to rgb

2 views (last 30 days)
OriAlpha
OriAlpha on 15 Feb 2019
Edited: KALYAN ACHARJYA on 15 Feb 2019
i have a image
i will read that image and do some of the operations on grayscale
then convert back to RBG
how can i do this

Answers (1)

KALYAN ACHARJYA
KALYAN ACHARJYA on 15 Feb 2019
Edited: KALYAN ACHARJYA on 15 Feb 2019
imageRGB is a given image.
gray_image=rgb2gray(imageRGB);
%do operation, say result1 is result image
RGB_Image=ind2rgb(result1,colormap);
Please note, there are some imformation loss during gray to RGB.
Read here ind2rgb, also read the answer of same question here

Categories

Find more on Convert Image Type in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!