We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2c8f90 commit 66e7479Copy full SHA for 66e7479
read_images.c
@@ -65,6 +65,8 @@ int read_images()
65
copy_int(&rows, &head[8]);
66
copy_int(&cols, &head[12]);
67
68
+ printf("rows=%d cols=%d\n", rows, cols);
69
+
70
uint64_t image_size = rows * cols;
71
uint64_t values_size = sizeof(unsigned char) * images_num * rows * cols;
72
unsigned char *values = (unsigned char*)malloc(values_size);
0 commit comments