用另一种颜色Matlab替换图像中的某个颜色范围

时间:2015-02-11 04:43:58

标签: matlab image-processing matlab-figure

如何替换具有特定RGB范围的像素而不仅仅是特定值,如question所示,例如R范围为140-150,G范围为50-55和B范围为61的像素-70,另一个单值如(150,57,80)。如果有人可以请指教。

2 个答案:

答案 0 :(得分:4)

这也是我在您之前发布的其他问题中提供的答案的修改。您只需更改logical蒙版计算,以便我们搜索一系列红色,绿色和蓝色值。

因此:

red = A(:,:,1); green = A(:,:,2); blue = A(:,:,3);

%// Change here
mred = red >= 140 & red <= 150; 
mgreen = green >= 50 & green <= 55; 
mblue = blue >= 61 & blue <= 70;

%// Back to before
final_mask = mred & mgreen & mblue;
red(final_mask) = 150; green(final_mask) = 57; blue(final_mask) = 80;
out = cat(3, red, green, blue);

答案 1 :(得分:2)

事实证明,在找到合适的匹配像素位置时,您需要进行少量修改。这是实施 -

%// Initialize vectors for the lower and upper limits for finding suitable 
%// pixels to be replaced
lower_lim = [140,50,61]
upper_lim = [150,55,70]

%// Initialize vector for new pixels tuplet
newval = [150,57,80]

%// Reshape the input array to a 2D array, so that each column would
%// represent one pixel color information. 
B = reshape(permute(A,[3 1 2]),3,[])

%// Find out which columns fall within those ranges with `bsxfun(@ge` and `bsxfun(@le`
matches  = all(bsxfun(@ge,B,lower_lim(:)) & bsxfun(@le,B,upper_lim(:)),1)

%// Replace all those columns with the replicated versions of oldval
B(:,matches) = repmat(newval(:),1,sum(matches))

%// Reshape the 2D array back to the same size as input array
out = reshape(permute(B,[3 2 1]),size(A))