opencv 카메라의 실시간 이미지 수집 및 표시 실현

931 단어 OpenCV
환경 설정: vs2010+opencv2.3.1(주:opencv2.4.9 읽기 카메라에 문제가 생겼습니다--원인을 아직 찾지 못했습니다. 가르쳐 주십시오)
code
// Camera.cpp :              。
//
#include "stdafx.h"  
#include 
#include   
#include  
#include 
   
int main( int argc, char** argv )  
{  
  //  IplImage    
  IplImage* pFrame = NULL;  
  
 //       
  CvCapture* pCapture = cvCreateCameraCapture(-1);  
  if(pCapture ==NULL)
  {
		printf("Get Capture false!
"); } // cvNamedWindow("video", 1); // while(1) { pFrame=cvQueryFrame( pCapture ); if(!pFrame) { printf("The frame is null!
"); break; } cvShowImage("video",pFrame); char c=cvWaitKey(10); if(c==27)break; } cvReleaseCapture(&pCapture); cvDestroyWindow("video"); }

좋은 웹페이지 즐겨찾기