MATLAB中怎样改变背景的颜色

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MATLAB中怎样改变背景的颜色相关的知识,希望对你有一定的参考价值。

function imageMatrix = image1(input,output)
rgb_image = imread(input);
R = rgb_image( : , : , 1 );
G = rgb_image( : , : , 2 );
B = rgb_image( : , : , 3 );
for R = 1:rgb_image(1)
for G = 1:rgb_image(2)
for B = 1:rgb_image(3)
if R>250 & G>250 & B>250;
R = 0
G = 0
B = 255
end
end
end
end
imwrite(rgb_image,output)
想要把像素表示成RGB矩阵,判定为白色的就将他变为蓝色,应该怎么for循环?

参考技术A function imageMatrix = image1(input,output)
rgb_image = imread(input);
[a,b,c]=size(rgb_image);
for i= 1:a
for j= 1:b
if rgb(i,j,1)==255&&rgb(i,j,2)==255&& rgb(i,j,3)==255
rgb_image(i,j,1)=0
rgb_image(i,j,2)=0
rgb_image(i,j,3)=255
end
end
end
imshow(rgb_image)本回答被提问者采纳
参考技术B for R = 1:rgb_image(1)
for G = 1:rgb_image(2)
for B = 1:rgb_image(3)
if R>250 & G>250 & B>250;
R = 0
G = 0
B = 255
end
end
end
end

改为:
II=find(R>250 &G>250 &B>250);
R(II)=0;
G(II)=0;
B(II)=0;
试试

如何在 android 中更改 TextInputLayout 中的背景笔触颜色?

【中文标题】如何在 android 中更改 TextInputLayout 中的背景笔触颜色?【英文标题】:How to change the background stroke color in TextInputLayout in android? 【发布时间】:2019-07-18 17:34:52 【问题描述】:

我在 xml 设计中使用 InputTextLayout。我想改变描边颜色。我怎样才能做到这一点?

【问题讨论】:

你想改变textinput布局的边框颜色吗? 如果你的意思是底线颜色,它是你主题的强调色。看看这个:***.com/a/31723120/244611 【参考方案1】:

使用 app:boxStrokeColor 属性

<com.google.android.material.textfield.TextInputLayout
      app:boxStrokeColor="@color/...."
      ...>

您可以使用颜色或选择器。

【讨论】:

以上是关于MATLAB中怎样改变背景的颜色的主要内容,如果未能解决你的问题,请参考以下文章

wincc中,怎样用C语言来改变图形的背景颜色?

html中点击按钮怎样改变div背景颜色

怎样使用python改变背景颜色

怎样改变checkbox的默认蓝色

ppt中如何改变插入图片的背景颜色?

在html中 怎样改变表格边框线的颜色?