OpenCV IplImage->바이트 배열 CvCapture* m_Capture = cvCreateFileCapture(fileName); IplImage* frame = cvQueryFrame(m_Capture); int* buf = new int[frame->width*frame->height]; memcpy(buf, frame->imageData, frame->imageSize); Software Development/Application Develop 2014.10.20