Counting Neighboring Cells
4 views (last 30 days)
Show older comments
Hi, I've been recently having trouble in creating a functions that would count the number of neighboring 1's in an array. So say for example I had an array that consisted of
1 0 1 1 0 1 1 0
1 1 0 1 0 1 1 0
I would want it to return
2 4 3 2 4 3 3 2
2 3 4 2 4 3 3 2
How would I go about this?
Much appreciated
0 Comments
Accepted Answer
Bruno Luong
on 27 Feb 2011
A=[1 0 1 1 0 1 1 0;
1 1 0 1 0 1 1 0]
B = ones(3);
B(2,2) = 0;
conv2(A,B,'same')
0 Comments
More Answers (0)
See Also
Categories
Find more on Statistics and Machine Learning Toolbox 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!