对于彩色地图,如何强调一些较暗功能的亮度?

最佳答案

您可以使用BRIGHTEN函数来亮显整个颜色贴图,从而亮显更暗的功能:

brighten(0.5);  %# Brightens the current colormap

%# OR...

newMap = brighten(oldMap,0.5);  %# Brighten the colormap in variable oldMap
colormap(newMap);               %# Update the current colormap to newMap

如果您只想使较暗的特征变亮(即,只是颜色贴图的一部分),则必须首先决定如何将哪些特征分类为“较暗”特征;)

10-08 04:22