Convert Grayscale Image to Color Image Using Matlab

2 次查看(过去 30 天)
From grayscale Image, how can I convert it to its original color. But not all the color. How can I convert it to its green, red, orange color. Is it possible. Any example?
  1 个评论
Chad Greene
Chad Greene 2014-9-25
Each pixel in a grayscale image has a single value corresponding only to its brightness. That's all the information you have. RGB images have three values, corresponding to the brightness of red, green, and blue, and these three are combined to create the colors we all know and love. It's easy to convert RGB pixels to a single brightness value and call it grayscale, but after that pixel has been converted from three color values to a single value, it's an underdefined problem to try and convert it back. Unless you want to start making artistic decisions.

请先登录,再进行评论。

回答(2 个)

Image Analyst
Image Analyst 2014-9-25
It doesn't restore the original colors, but the attached demo colorizes a freehand-drawn region. If you want something different, attach your grayscale image, describe the thing you want to colorize, and tell us how we are supposed to figure out the colors for each pixel.

Meshooo
Meshooo 2014-9-26
编辑:Meshooo 2014-9-26
There is no method that can do it for you fully automatically, but maybe possible if you can assume the other missing parameters.
So for example, if you have an old photo of a face taken many years ago when not color photos were available, then you can convert it to a colored image if you guess the missing color component. So lets say you will do it using the HSV color space. So you need:
H = hue, that you should guess for the color of the hair, lips, skin, etc.
S = Saturation, you can guess how much white or black you should add.
I = Intensity, you already have it from you gray image.
So in this way you can change your image from gray to colored image based in your color guess.
Hope that helps.

类别

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