フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

hii sir i need code for coloring the gray scale from source image to color the gray scale image ?pleasee do help me sir am not getting any proper code for that.

1 回表示 (過去 30 日間)
venmal devi
venmal devi 2016 年 1 月 31 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
code for the image

回答 (2 件)

Walter Roberson
Walter Roberson 2016 年 1 月 31 日
There are multiple ways of doing what you are asking.

Image Analyst
Image Analyst 2016 年 1 月 31 日
Create a colormap, for example using one of the colormap functions like jet(), hsv(), winter(), hot(), lines(), etc. Then use ind2rgb()
cmap = hsv(256);
rgbImage = ind2rgb(grayImage, cmap);

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by