安装后的opencv字符看起来很尴尬

时间:2015-06-19 06:47:22

标签: opencv

美好的一天 我在Windows 8.1 x64上安装了VS2013 我试图安装opencv,我在决赛中遇到了很多问题 错误 LNK1112:模块机器类型'X86'与目标机器类型'x64'冲突 我可以解决所有问题 但现在我使用代码从USB网络摄像头捕获流 图像框架名称看起来错误,每个框架都有窗口 应该只有一个窗口显示帧流而不是每个帧的窗口 为什么会这样 这是结果的图像,我也会发布代码 enter image description here

#include "stdafx.h"
#include<opencv\cv.h>
#include<opencv\highgui.h>
using namespace cv;

int main(int argc, _TCHAR* argv[])
{
    Mat image;
    VideoCapture cap;
    cap.open(0);
    namedWindow("N", 1);
    while (1)
    {
        cap>>image;
        imshow("N", image);
        waitKey(33);
    }

    return 0;
}

提前谢谢。

1 个答案:

答案 0 :(得分:0)

问题解决了这个链接,他们有类似的

opencv :: Multiple unwanted window with Garbage name

感谢大家:)现在我有一个框架和完美的分辨率