opencv namedWindow()不会创建具有正确名称的窗口

时间:2015-01-19 09:14:51

标签: opencv visual-c++

我使用namedWindow(windowName,size)使用OpenCV创建一个namedWindow。但是,创建的窗口名称与函数调用中指定的名称不匹配。 这导致imshow()每次调用时都会创建一个新窗口。

编辑:

    VideoCapture cap(0); // open the video camera no. 0  
    if (!cap.isOpened()) // if not success, exit program  
    {
        cout << "Cannot open the video cam" << endl;
        return -1;
    }
    double dWidth = cap.get(CV_CAP_PROP_FRAME_WIDTH); //get the width of frames of the video  
    double dHeight = cap.get(CV_CAP_PROP_FRAME_HEIGHT); //get the height of frames of the video  
    cout << "Frame size : " << dWidth << " x " << dHeight << endl;

    Ref<Reader> reader(new MultiFormatReader);

    std::string windowname = "ABC";
    namedWindow(windowname, CV_WINDOW_AUTOSIZE); //create a window called "MyVideo"

如果我包含iostream标题文件,则创建的窗口名称包含子字符串&#39; ABC&#39;以及其他一些垃圾人物。如果我不包含上述头文件,则窗口名称仅包含垃圾字符

0 个答案:

没有答案