I tried using the following line code:
image.at<char>(row, column);
image.at<uchar>(row, column);
image.at<unsigned char>(row, column);
image.at<double>(row, column);
what's wrong?
after that I need to convert this value to float. Is casting enough?
user3441653
source
share