개발/Application Develop

OpenCV IplImage->바이트 배열

huiyu 2014. 10. 20. 18:57
CvCapture* m_Capture = cvCreateFileCapture(fileName);

IplImage* frame = cvQueryFrame(m_Capture);



int* buf = new int[frame->width*frame->height];

memcpy(buf, frame->imageData, frame->imageSize);
728x90
반응형