Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我跑
imagesc(real(lena)) colormap(hsv)
其中 lena 是 512x512 像素的图片。
我想得到这里讨论的特殊的红绿蓝颜色图。一张经过它处理的图片:
如何通过命令colormap获得这样的颜色?
用于colormap bone为您的医学图像获取这种灰蓝色调。 这是取自 Mathworks 的颜色图示例:
colormap bone
有关更多示例和预定义的颜色图,请参见手册。
请注意,该论文描述了一种组合两个图像的方法,它不使用颜色图。
如果a是灰度正常 MRI 图像,并且b是灰度对比增强 MRI 图像,则本文建议将其cat(3,a,b,a)用作 RGB 图像,其中对比度增强显示为绿色叠加。该语句所做的是将正常图像用作红色和蓝色通道,将对比度增强图像用作绿色通道。
a
b
cat(3,a,b,a)