Line 139 should be
double temp = output[(3*k+1)*row*col+ i * col +j - k*col]; instead of double temp = output[(3*k+1)*row*col+ i * col +j];
This commit is contained in:
parent
74a24e5089
commit
5b6b0fd4b1
@ -136,7 +136,7 @@ int main() {
|
|||||||
for (int k=0; k < J; k++) {
|
for (int k=0; k < J; k++) {
|
||||||
for (int i=0; i < 3*row; i++) {
|
for (int i=0; i < 3*row; i++) {
|
||||||
for(int j=0+ k*col; j < (k+1)*col; j++) {
|
for(int j=0+ k*col; j < (k+1)*col; j++) {
|
||||||
double temp = output[(3*k+1)*row*col+ i * col +j];
|
double temp = output[(3*k+1)*row*col+ i * col +j - k*col];
|
||||||
detail[i][j]= temp;
|
detail[i][j]= temp;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user