即使名称相同,OpenCV也会显示多个不需要的窗口

时间:2017-09-01 09:20:05

标签: c++ opencv

所以当我尝试运行此代码时遇到了这个问题 -

// get the json config file 
$json = file_get_contents('config.json'); 

// decode the JSON 
$config = json_decode($json, true);

foreach ($config["targets"] as $key => $value) {
    if ($value->name == "target1") {
        echo $value->apiKey;
    }
}

在我的visual studio中运行此代码后,它确实显示了视频,但出现了2个窗口第一个是视频,第二个是空白的灰色窗口。 OpenCV compile result

此外,如果我要关闭视频,我会得到此信息 - Error Exception Thrown

所以有人知道如何解决这个问题吗?感谢。

0 个答案:

没有答案