Finding adjacent pixels of a certain color around a blue pixel in an image
7 views (last 30 days)
Show older comments
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]
.
Answers (1)
Athul Prakash
on 25 Feb 2020
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 Comments
See Also
Categories
Find more on MATLAB Compiler in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!