• xcode 编译opencv ios容易出现的错误


    (1)出现 "std::__1::basic_ostream<char, std::__1::char_traits<char> >::flush()"之类的错误

    Undefined symbols for architecture i386:
      "std::__1::basic_ostream<char, std::__1::char_traits<char> >::flush()", referenced from:
          cv::gpu::error(char const*, char const*, int, char const*) in opencv2(gpumat.o)
      "std::__1::basic_ostream<char, std::__1::char_traits<char> >::sentry::sentry(std::__1::basic_ostream<char, std::__1::char_traits<char> >&)", referenced from:
          std::__1::basic_ostream<char, std::__1::char_traits<char> >& std::__1::operator<< <std::__1::char_traits<char> >(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, char const*) in opencv2(gpumat.o)
      "std::__1::basic_ostream<char, std::__1::char_traits<char> >::sentry::~sentry()", referenced from:
          std::__1::basic_ostream<char, std::__1::char_traits<char> >& std::__1::operator<< <std::__1::char_traits<char> >(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, char const*) in opencv2(gpumat.o)
      "std::__1::basic_ostream<char, std::__1::char_traits<char> >::operator<<(int)", referenced from:
          cv::gpu::error(char const*, char const*, int, char const*) in opencv2(gpumat.o)
      "std::__1::cerr", referenced from:

    解决办法是加入c++库 ,想项目中加入libc++.dylib

    1. Select your project (the blue file) in your project navigator (Command 1 if it's hidden)
    2. Select your target
    3. Go to Build Phases
    4. Expand "Link Binary With Libraries"
    5. Click the "+"
    6. Type libc++.dylib in the search bar.
    7. Select the libc++.dylib file and press "Add"

    (2)出现下面错误

    "_CVPixelBufferGetBaseAddress", referenced from:
          -[MainViewController imageFromSampleBuffer:] in MainViewController.o
      "_CVPixelBufferUnlockBaseAddress", referenced from:
          -[MainViewController imageFromSampleBuffer:] in MainViewController.o
      "_CVPixelBufferLockBaseAddress", referenced from:
          -[MainViewController imageFromSampleBuffer:] in MainViewController.o
      "_CMSampleBufferGetImageBuffer", referenced from:
          -[MainViewController imageFromSampleBuffer:] in MainViewController.o
      "_CVPixelBufferGetHeight", referenced from:
          -[MainViewController imageFromSampleBuffer:] in MainViewController.o
      "_kCVPixelBufferPixelFormatTypeKey", referenced from:
          _kCVPixelBufferPixelFormatTypeKey$non_lazy_ptr in MainViewController.o
         (maybe you meant: _kCVPixelBufferPixelFormatTypeKey$non_lazy_ptr)
      "_CVPixelBufferGetWidth", referenced from:
          -[MainViewController imageFromSampleBuffer:] in MainViewController.o
      "_CVPixelBufferGetBytesPerRow", referenced from:
          -[MainViewController imageFromSampleBuffer:] in MainViewController.o
      "_CMTimeMake", referenced from:
          -[MainViewController setupCaptureSession] in MainViewController.o
      "_CVPixelBufferGetDataSize", referenced from:
          -[MainViewController imageFromSampleBuffer:] in MainViewController.o

    解决方法是添加 AVFoundation , CoreVideo 和 CoreMedia frameworks 

    (3)出现下面错误assert错误时,需要添加AssetsLibrary.framework

  • 相关阅读:
    Python-第三方库requests详解
    python读取excel文件
    python 代理
    python urllib 和 urllib2
    HTTPS请求 SSL证书验证
    python requests.exceptions.ConnectionError
    python django -7 Git与项目
    python django -6 常用的第三方包或工具
    python django -5 进阶
    python django -4 模板
  • 原文地址:https://www.cnblogs.com/xiongqiangcs/p/3499638.html
Copyright © 2020-2023  润新知