Tagged Questions
2
votes
1answer
477 views
Finding biggest area of adjacent numbers in a matrix
This is NOT a homework. I'm a beginner in programming, and also this is my first post here - please bear with me.
I was not able to find similar questions posted here.
In a beginner's book, I ...
0
votes
1answer
153 views
Getting the adjacent elements of a 2D matrix (depth one only)
I have an 800 by 600 image. I want to treat it like a matrix and get the adjacent elements
ex.
(0,0) (1,0) (2,0) (3,0)
(0,1) (1,1) (2,1) (3,1)
(0,2) (1,2) (2,2) (3,2)
(0,3) (1,3) (2,3) (3,3)
...