需求
直接操作RGB图像的像素点,进行颜色的相关操作。
掌握这个,必须对MATLAB中矩阵的操作有所熟悉,特别是整行、整列的操作。
如:
J = [1 2 3; 4 5 6; 7 8 9]; ——这里定义了一个三行三列的矩阵。
J[:, 1] = 0; ——直接操作了J矩阵中每一行的第1列 此时J = [0 2 3; 0 5 6; 0 8 9]
其他如行操作用法类似,不再赘述。
下面我们对一副图像进行直接操作,把其中的红色部分改为蓝色。
代码如下:
% BY SCOTT % red2blue % change red to blue clear all; clc; rgb = imread('red2blue.png'); figure; imshow(rgb); R=rgb(:,:,1); %red G=rgb(:,:,2); %green B=rgb(:,:,3); %blue [x,y,z]=size(rgb); for i=1:x for j=1:y if( (R(i,j) >= 180) && (R(i,j) <=255) && (G(i,j) <50) && (B(i,j) <50) ) R(i,j) = 0; G(i,j) = 162; B(i,j) = 232; end end end % in this way % blue(:,:,1)=R(:,:); % blue(:,:,2)=G(:,:); % blue(:,:,3)=B(:,:); % another way for i=1:x for j=1:y blue(i,j,1) = R(i,j); blue(i,j,2) = G(i,j); blue(i,j,3) = B(i,j); end end figure; imshow(blue);
运行结果:
转换前:
转换后:
时间: 2025-01-11 17:44:33