Convert Grayscale Image to Color Image Using Matlab

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

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일

1 개 추천

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일

0 개 추천

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.

카테고리

도움말 센터File Exchange에서 Convert Image Type에 대해 자세히 알아보기

태그

질문:

2014년 9월 25일

편집:

2014년 9월 26일

Community Treasure Hunt

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

Start Hunting!

Translated by