Counting Neighboring Cells
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuesta aceptada
Bruno Luong
el 27 de Feb. de 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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Statistics and Machine Learning Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!