在doc中它说
如果在指定的时间过去之前没有按任何键,则返回被按键的代码或-1。
但是当我的 Ubuntu 14.04 设备上没有按任何键时,它返回255而不是-1。那是为什么?
代码示例:
#include <opencv/cv.hpp>
#include <iostream>
using namespace cv;
int main(void) {
Mat image = Mat::zeros(100, 100, CV_8UC3);
char window_name[] = "waitKey() example";
imshow(window_name, image);
const int DELAY = 50;
int c = waitKey(DELAY);
std::cout << c << std::endl;
}