Labfans是一个针对大学生、工程师和科研工作者的技术社区。 论坛首页 | 联系我们(Contact Us)
MATLAB爱好者论坛-LabFans.com
返回   MATLAB爱好者论坛-LabFans.com > 其它 > 资料存档
资料存档 资料存档
回复
 
主题工具 显示模式
旧 2019-12-14, 20:13   #1
poster
高级会员
 
注册日期: 2019-11-21
帖子: 3,006
声望力: 66
poster 正向着好的方向发展
帖子 如何将颜色名称转换为3元素RGB向量?

在许多MATLAB绘图函数中,您可以将颜色指定为字符串或直接列出红色,绿色和蓝色值的3元素向量。

例如,这两个语句是等效的:

plot(x, y, 'Color', 'r'); plot(x, y, 'Color', [1 0 0]); 可以通过字符串值指定8种颜色: 'r','g','b','c','m','y','k','w' 。是否有MATLAB内置函数将这些字符串转换为等效的RGB向量?



回答:

我在MathWorks File Exchange上找到了这种通用替代方法,它甚至可以处理除MATLAB中的默认8以外的颜色字符串:
如果您只关心默认的8种颜色字符串的转换,则可以使用以下函数,该函数是我自己编写的,用于在RGB三元组和简短的颜色名称(即单个字符)之间来回转换:

function outColor = convert_color(inColor) charValues = 'rgbcmywk'.'; %#' rgbValues = [eye(3); 1-eye(3); 1 1 1; 0 0 0]; assert(~isempty(inColor),'convert_color:badInputSize',... 'Input argument must not be empty.'); if ischar(inColor) %# Input is a character string [isColor,colorIndex] = ismember(inColor(:),charValues); assert(all(isColor),'convert_color:badInputContents',... 'String input can only contain the characters ''rgbcmywk''.'); outColor = rgbValues(colorIndex,:); elseif isnumeric(inColor) || islogical(inColor) %# Input is a numeric or %# logical array assert(size(inColor,2) == 3,'convert_color:badInputSize',... 'Numeric input must be an N-by-3 matrix'); inColor = double(inColor); %# Convert input to type double scaleIndex = max(inColor,[],2) > 1; %# Find rows with values > 1 inColor(scaleIndex,:) = inColor(scaleIndex,:)./255; %# Scale by 255 [isColor,colorIndex] = ismember(inColor,rgbValues,'rows'); assert(all(isColor),'convert_color:badInputContents',... 'RGB input must define one of the colors ''rgbcmywk''.'); outColor = charValues(colorIndex(:)); else %# Input is an invalid type error('convert_color:badInputType',... 'Input must be a character or numeric array.'); end 请注意,此功能允许您输入字符串 N×3数字或逻辑数组(RGB值从0到1或0到255),并返回相反的颜色表示。它还使用ISMEMBER函数进行转换。



更多&回答...
poster 当前离线   回复时引用此帖
回复


发帖规则
不可以发表新主题
不可以发表回复
不可以上传附件
不可以编辑自己的帖子

启用 BB 代码
论坛禁用 表情符号
论坛启用 [IMG] 代码
论坛启用 HTML 代码



所有时间均为北京时间。现在的时间是 23:27


Powered by vBulletin
版权所有 ©2000 - 2025,Jelsoft Enterprises Ltd.