Finding adjacent pixels of a certain color around a blue pixel in an image
조회 수: 7 (최근 30일)
이전 댓글 표시
I am trying to write a function named countBlueWithAdjacentColor which receives the name of an image as input and returns the number of blue pixels that have an adjacent pixel (any direction) that is of the color specified by an 1-by-3 array named color which contains the red, green, and blue values that define the color in RGB (0-255) form.
Required function name and parameters: countBlueWithAdjacentColor(iName, color).
Sample function call: countBlueWithAdjacentColor('Image03.tif', [0,255,0])
Returned by function: [8]
.
답변 (1개)
Athul Prakash
2020년 2월 25일
Hi Michael,
Here's one way to do it:-
- Create 2 masks, one identifying all blue pixels and another identifying all pixels adjacent to your given color.
- If we '&' both the masks, we get a mask of the required pixels.
- Sum over this mask to get your count.
% I assume you have 'blue' defined as a RGB value.
blueColor = [0,0,255];
% 'myColor' is the RGB triplet of the color that should be adjacent to blue.
myColor = [10,20,30];
% Create 2D masks over the image, 1 mask for blue pixels and another for pixels of 'myColor'.
blueMask = mask(img, blueColor);
myColorMask = mask(img, myColor);
% We need a mask for every pixel that could be adjacent to myColor.
k1 = ones(3,3);
% If myColorMask is convolved with a kernel of 3x3 1's, every value adjacent to 'myColor' would have non-zero values.
adjMask = (conv2(myColorMask, k1) > 0);
% The '&' operation gives a mask of the reqd. pixels. Sum over that to get the count.
result = sum(adjMask & blueMask, 'all');
function out = mask(img, colorVal)
colorVal = reshape(colorVal, [1 1 3]);
out = (img==colorVal);
out = (out(:,:,1) & out(:,:,2) & out(:,:,3));
end
Hope it Helps!
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 MATLAB Compiler에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!