使用 uint8_t 数据的 int 类型矩阵在传递给函数时打印错误

Matrix of type int using uint8_t data prints wrong when passed to a function

好的,所以我得到了以下指针 sh 和矩阵阴影数组。

 uint8_t * sh;
 int shadows[k][330][210];

我这样填充阴影:

int rows = 165;
int cols - 105;
for(int i = 0; i < rows; i++){
        for(int j = 0; j < cols; j++){              
            shadows[reached][i][j] = sh[index];
            index++;
        }
}

然后我可以像这样打印阴影[0]:

int i;
int j;
for (i=0; i<rows; i++){
        for(j=0; j<cols; j++){
            printf("%d  ", shadows[0][i][j]);
        }
        printf("\n");
}

到目前为止一切正常。 shadows[0] 的打印看起来不错。 然后我将这个矩阵传递给这样的函数:

separateMatrixByColumn(1, cols-1, rows, cols, shadows[0], v[0], g[0]);

在该函数内部,我做的第一件事是打印矩阵阴影:

void separateMatrixByColumn (size_t wanted_cols1, size_t wanted_cols2, size_t rows, size_t columns, int m[rows][columns], int answer1[rows][wanted_cols1], int answer2[rows][wanted_cols2]){

    // this print looks bad. It adds several 0s to the matrix!
    int k;
    int l;
    for (k=0; k<rows; k++){
            for(l=0; l<columns; l++){
                printf("%d  ", m[k][l]);
            }
            printf("\n");
    }

   ...

}

我的函数内部的打印看起来很糟糕。它在我的矩阵中显示了几个 0。为什么会这样?

我最终使用了额外的 amtrix

  int aux[rows][cols];
    for (i=0; i<rows; i++){
            for(j=0; j<cols; j++){
                aux[i][j] = shadows[0][i][j];
            }
    }
    separateMatrixByColumn(1, cols-1, rows, cols, aux, v[0], g[0]);