Convert Rgb to grayscale and back to rgb

3 次查看(过去 30 天)
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

回答(1 个)

KALYAN ACHARJYA
KALYAN ACHARJYA 2019-2-15
编辑:KALYAN ACHARJYA 2019-2-15
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

类别

Help CenterFile Exchange 中查找有关 Convert Image Type 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by