1 | initial version |
You should double for CV_64F type and float for CV_32F type.
printf("%f\n", A.at<double>(i, j));
2 | No.2 Revision |
You should use double type for CV_64F type and float one for CV_32F type.
printf("%f\n", A.at<double>(i, j));