doc中说



但是在我的 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;
}

最佳答案

最近,对cv::waitKey()进行了一些代码修改,并且有关此问题的fix尚未合并。

关于c++ - OpenCV的waitKey()应该返回-1,但没有,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41439052/

10-11 23:04