-1

我想找8个邻居。在算法中它被写成

int Nx[] = {-1, 1, 0, 0, -1, -1, 1,  1}; //8-neighbors
int Ny[] = {0, 0, -1, 1,  1, -1, 1, -1};

3*3 矩阵是如何解释的?

4

1 回答 1

1

这些是相对的 x 和 y 坐标。如果将其转换为坐标对,它会变得更清楚:

 x  y     neighbour
----------------------
-1  0     left
 1  0     right
 0 -1     bottom
 0  1     top
-1  1     left-top
-1 -1     left-bottom
 1  1     right-top
 1 -1     right-bottom
于 2014-12-25T14:32:44.957 回答