1

我正在处理一些我需要使用的遗留代码,以及在 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; 
}
4

0 回答 0