我正在使用一些我需要使用的遗留代码,以及在Python中做一些工作。我能够从Python中读取文件但不能在C ++中读取。这是C ++代码
int main(int argc, char** argv) {
CvCapture *capture = NULL;
capture = cvCaptureFromFile("path/to/foo.mov");
if (!capture) {
std::cerr << "Cannot open " << "path/to/foo.mov" << std::endl;
return 1;
}
return 0;
}