2015. 4. 21. 19:48
Computer Vision/OpenCV
개발환경
사용툴 : Visual Studio 2013 라이브러리 : openCV library 2.4.10 프로젝트 : Visual C++ console application 개발날짜 : 2015-04-21 |
참고 : Stack Overflow - How to resize an image to a specific size in OpenCV?
void FaceDetection::Haar_FaceDetection(const char* filename) { CvCapture* capture;
capture = cvCaptureFromFile(filename);
assert(capture != NULL);
IplImage* bgr_frame;// = cvQueryFrame(capture);
while ((bgr_frame = cvQueryFrame(capture)) != NULL) { IplImage* resize_img = cvCreateImage(cvSize(2048, 1024), bgr_frame->depth, bgr_frame->nChannels); cvResize(bgr_frame, resize_img, CV_INTER_LINEAR); } } |
'Computer Vision > OpenCV' 카테고리의 다른 글
[OpenCV] Mat -> IplImage*, IplImage* -> Mat 형변환 (4) | 2015.05.07 |
---|---|
[OpenCV] 관심영역(ROI) 저장하기 (0) | 2015.04.23 |
[OpenCV] 자주쓰는 기능들 모음 (2) | 2015.04.20 |
[OpenCV] Mat 데이터 픽셀에 접근하는 방법 (0) | 2015.04.17 |
[OpenCV] IplImage 데이터 구조에서 픽셀값에 접근하기 (0) | 2015.04.17 |