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?
0 个评论
采纳的回答
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 个评论
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
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".
1 个评论
Walter Roberson
2017-7-5
By the way you can use strel() to create appropriate disk-shaped structuring elements.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Convert Image Type 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!