How to check if all pixels in a large neighborhood (such as a square or triangle) are all non-zero values?

조회 수: 3 (최근 30일)
I want to check if all pixels in a 9x9 box hold non-zero values. This square is centered around a xy coordinate that I have chosen. I wrote hideous code manually incrementing and decrementing the xy coordinates but this code is several dozen lines long and hard to manage! Is there a better way to do this, perhaps with the strel tool?

채택된 답변

Image Analyst
Image Analyst 2017년 7월 4일
Simply use nnz() and pass it the 9 values in the window:
m = magic(9) % Sample data
% Define center of 3x3 window.
row = 3;
col = 3;
% Extract the 9 pixels in the window.
the9Pixels = m(row-1:row+1, col-1:col+1);
if nnz(the9Pixels) == 9
msgbox('All 9 pixels have non-zero values')
else
msgbox('Some of the 9 pixels have zero values')
end
  댓글 수: 2
Naim
Naim 2017년 7월 4일
편집: Walter Roberson 2017년 7월 4일
is there something similar to this for circles?
the9Pixels = m(row-1:row+1, col-1:col+1);
is there a way I can play around with this to make it a circle?
Image Analyst
Image Analyst 2017년 7월 4일
편집: Image Analyst 2017년 7월 4일
Not sure what you're meaning. If you still don't know what to do after reading the FAQ on circles, then write back.
Or, if you want a bigger moving window, then use strel() with the 'disk' option.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Walter Roberson
Walter Roberson 2017년 7월 4일
Take logical() of the array, to reduce the question to 0 vs 1 (pixel non-zero).
Use conv2() to pass in the logical array together with an array in which array elements are set to 1 in locations that need to be non-zero. If the status of the center pixel is not relevant be sure not to set it to 1 in the mask.
Now compare the result of the conv2 to nnz() of the mask. If the two are the same then all of the pixels in the mask region were set.
This process is essentially the same thing as "image dilation".

Community Treasure Hunt

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

Start Hunting!

Translated by