opencv 2.4.8 microsoft surface pro 2相机

时间:2014-02-24 11:04:01

标签: opencv

我使用visual studio express 2012构建了opencv 2.4.8 x86,并提供了媒体基础支持,然后编写了一个简单的程序来测试相机,所有事情都在微软表面专家2上完成。

问题1,窗口中显示的图像是颠倒的

问题2,设置图像宽度和高度不起作用

代码粘贴在这里,谢谢你的帮助!

#include <iostream>
#include <opencv2\opencv.hpp>

bool quitNow=false;

void mouseCallBackFunc(int event, int x, int y, int flags, void* userdata){
    if (event==CV_EVENT_LBUTTONDBLCLK) quitNow=true;
}

int main()
{
    int key;
    std::string winName="show cam";
    cv::namedWindow(winName,1);
    cv::setMouseCallback(winName,mouseCallBackFunc);
    cv::Mat img;
cv::VideoCapture vc(1);
if (vc.isOpened()){
    std::cout<<"cam open good\n";
}else{
    std::cout<<"cam open bad\n";
    vc.release();
    return 2;
}
if (!vc.set(CV_CAP_PROP_FRAME_HEIGHT,720)) return 3;
if (!vc.set(CV_CAP_PROP_FRAME_HEIGHT,1280)) return 4;

vc>>img;
std::cout<<std::endl<<"size is "<<img.size()<<std::endl;

do
{
    vc>>img;
    if(img.empty()) return 9;
    cv::imshow(winName,img);
    key=cv::waitKey(10) & 0xff;
} while (!quitNow);
return 0;
}

0 个答案:

没有答案