How to loop through a binary image by column to detect first 5 non-zero pixels in a row?
Show older comments
I have a set of binary images from which I need to scan their pixel values by column. If there's exactly "x" number of non-zero pixels in a row, the algorithm needs to recognize this in order to draw a line or completely convert all pixels to "1" in the rows where this "x" non-zero pixels were identified. This is in order to close a region of the image and then calculate the area enclosed by it.
I started looping through the image and then saved the pixel values in a variable. Then I added a counter so as to count the total number of non-zero pixels from the column it's analyzing. However I'm having trouble with this loop for the part where it needs to count 5 non-zero pixels in a row. If it's followed by a zero pixel, then it's where the closing should happen, but if it's followed by yet another non-zero pixel, it means it isn't the region of interest. This is what I have so far, but it's doing nothing to the image:
[rows,columns] = size(I3);
cont = 0;
for column = 1:columns
for row = 1:rows
pixel = I3(row,column);
if (pixel == 1)
cont = cont+1;
end
if (pixel == 0)
cont = 0;
end
if (cont == 5)
if pixel == 1
cont = 0;
end
if pixel == 0
I3(row,columns) = 1;
break
end
end
end
end
figure
imshow(I3)
Thanks in advance. My matlab skills are just basic and so I have trouble with these kinds of loops.
Any help is greatly appreciated.
3 Comments
darova
on 19 Sep 2021
Attach some pictures with explanations
Your problem statement seems contradictory. If the following are true:
- the image is binary
- you are finding runs of nonzero pixels
- you are converting certain runs to 1
then nothing is being done by the algorithm. All nonzero pixels in a binary image are already 1. You'll need to clarify what you mean. Are the images not binary? Do you mean to find runs of zero pixels? Do you mean to convert runs of nonzero pixels to zero? Are you operating on a mix of binary and numeric images?
It's also a bit unclear what the orientation is supposed to be. You mention working "columnwise" and finding runs "in a row". This wording is potentially contradictory. Are the runs column subvectors or row subvectors?
Either way, I doubt this needs loops. Consider the example using the following assumptions:
- binary image
- find nonzero pixel runs
- set target runs to zero
- runs are column subvectors
% generate a binary test image
rng(1234);
A = rand(20,20) > 0.5;
n = 5; % number of pixels to match
% padding the array deals with runs that terminate
% on the edges of the image
A = padarray(A,[1 0],0,'both');
% find ones runs of length = n
dA = diff(A(:));
st = find(dA == 1);
en = find(dA == -1);
st = st((en-st) == n);
% generate output, setting specified runs to zero
B = A;
indexlist = cell2mat(arrayfun(@(x,y)[x:y],st+1,st+n,'uniform',false));
B(indexlist) = 0;
% remove padding
A = A(2:end-1,:);
B = B(2:end-1,:);
% display combined image to indicate changes
% yellow regions are pixels which have been removed
imshow(im2double(cat(3,A,A,B)))
There are probably simpler ways to approach whatever needs to be done, but without having the problem statement clarified, I'm not going to assume too much just yet.
Hugo Armando Morales Solís
on 20 Sep 2021
Edited: Hugo Armando Morales Solís
on 21 Sep 2021
Accepted Answer
More Answers (0)
Categories
Find more on Image Segmentation 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!

