How would i convert a grayscale image to a false color image?
20 次查看(过去 30 天)
显示 更早的评论
I would like to convert images that are grayscale to color. I need to find out a way to save images that look like what happens when you type image(grayscaleimage) into the code.
0 个评论
回答(1 个)
Image Analyst
2012-8-29
For the first question on pseudocoloring, use colormap() or ind2rgb().
For the second question on saving a grayscale image, either really grayscale or one converted to rgb via ind2rgb(), use imwrite().
3 个评论
Image Analyst
2012-8-30
So give it a colormap, like
pseudoColoredImage = ind2rgb(grayImage, jet(256));
You can pseudocolor a video by doing it one frame at a time and writing it back out as a color video. Use the VideoWriter class.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Convert Image Type 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!