Skip to content

Commit 66e7479

Browse files
author
lichuang
committed
add print
1 parent e2c8f90 commit 66e7479

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

read_images.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ int read_images()
6565
copy_int(&rows, &head[8]);
6666
copy_int(&cols, &head[12]);
6767

68+
printf("rows=%d cols=%d\n", rows, cols);
69+
6870
uint64_t image_size = rows * cols;
6971
uint64_t values_size = sizeof(unsigned char) * images_num * rows * cols;
7072
unsigned char *values = (unsigned char*)malloc(values_size);

0 commit comments

Comments
 (0)