Distance between pixels and axes in a image

조회 수: 3 (최근 30일)
Francesco Pignatelli
Francesco Pignatelli 2023년 1월 11일
댓글: Francesco Pignatelli 2023년 1월 11일
Hi all,
I have a small issue related to image processing. I have the following binarized image:
and I would like to compute the distance between the bottom row and the fist pixel=1 for each column of the image. In other words, I would like to compute the length of the following red lines:
Any clue?
Best

채택된 답변

DGM
DGM 2023년 1월 11일
편집: DGM 2023년 1월 11일
Consider the example:
% a binarized image
inpict = imread('monojagblob.png');
mask = imbinarize(inpict);
imshow(mask)
% pad the array to guarantee no object pixels are on the boundary
mask = padarray(mask,[1 1],0,'both');
% distance to west edge
[~,Wdist] = max(mask,[],2);
Wdist = Wdist-1; % correct for padding
Wdist(Wdist==0) = NaN; % zero distances are invalid (no object here)
plot(Wdist)
% distance to east edge
[~,Edist] = max(fliplr(mask),[],2);
Edist = Edist-1; % correct for padding
Edist(Edist==0) = NaN; % zero distances are invalid (no object here)
plot(Edist)
% distance to north edge
[~,Ndist] = max(mask,[],1);
Ndist = Ndist-1; % correct for padding
Ndist(Ndist==0) = NaN; % zero distances are invalid (no object here)
plot(Ndist)
% distance to south edge
[~,Sdist] = max(flipud(mask),[],1);
Sdist = Sdist-1; % correct for padding
Sdist(Sdist==0) = NaN; % zero distances are invalid (no object here)
plot(Sdist)
Note that these are the locations of the first nonzero pixel, not the number of zero pixels prior to it. If you want the latter, subtract 1.

추가 답변 (0개)

제품


릴리스

R2018b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by