1 | initial version |
2 | No.2 Revision |
until it gets fixed, you'll have to add a manual conversion before the imshow() call:
img.convertTo(img, CV_8U, 255); // [0..255] range
imshow("win", img);
3 | No.3 Revision |
until it gets fixed, you'll have to add a manual conversion before the imshow() call:
img.convertTo(img, CV_8U, 255); // [0..1] -> [0..255] range
imshow("win", img);