私は 1280x1024 のビデオ入力デバイスを持っています。そこから画像をキャプチャする小さな opencv プロジェクトを書きましたが、640x480 の画像しか得られません ?? なぜ私がそれを得るのか、誰もが知っています。ここに私のコードがあります:
#include <opencv2\highgui\highgui.hpp>
#include <opencv2\core\core.hpp>
#include <opencv2\opencv.hpp>
using namespace std;
int main(){
cv::VideoCapture cap(2);
cv::Mat frame;
int key = 0;
while(key != 27){
cap.read(frame);
cv::imshow("test",frame);
key = cv::waitKey(10);
}
return 0 ;}
あなたの助けを前もって感謝します