zoukankan      html  css  js  c++  java
  • OpenCV on Mac OSX: A step-by-step guide

    I’m using OpenCV for my 4th year design project and setting it up was a huge pain. I had to look through a whole bunch of different sites to figure out what to do. There are various ways to install it – through package managers such as Homebrew or Macports, or through the tarball + cmake. Now that I’ve got it set up, I decided to write this little post to explain to others how to go about setting it up.

    Note: This method does not set up the Python bindings for OpenCV (still working on that). It only sets up the C++ framework. Also, I tested this on OSX Lion, but it should apply to Snow Leopard or Leopard. Also you will need XCode installed for any of this to work (but you knew that, right?)

    On that note, let’s get started.

    Download a Package Manager

    It’s between Macports, Fink or Homebrew. I used Macports, so I’d recommend that. Download the .dmg file, then install it. You can check to see if it installed successfully by opening your terminal and typing port.

    Download the OpenCV Tarball

    You can get that from here. Look for the Linux or Mac version. Unzip it after you download it into a folder.

    Get cmake

    In your terminal, type in the following:
    sudo port install cmake
    This will go fetch cmake and its dependencies and install them onto your system. You can check to see that cmake is installed by typing cmake in a new terminal window.

    Build OpenCV

    We are going to build OpenCV using cmake. In terminal, navigate to the folder where OpenCV was extracted to. Type in the following:

    # make a separate directory for building
    mkdir build
    cd build
    cmake -G "Unix Makefiles" ..

    Now, we can make OpenCV. Type the following in:

    make -j8
    sudo make install

    This should now build OpenCV into your /usr/local/ directory.

    Make A Sample OpenCV Project

    So we now have OpenCV built but we still have to link to the framework in our project.

    1. Start a new XCode Command Line Tool project.
    2. We have to link the .dylib files provided by OpenCV into our project. To do this, right click on the project, and click “Add files to..”
    3. When Finder pops up, hit “/” to bring up the navigation panel.
    4. Type in /usr/local/lib
    5. Add in all the .dylib files that you need. To prevent linker errors, I recommend you initially add ALL the files ending in “…2.3.1.dylib”. There should be a dozen or so. If you know what you need, you can obviously pick and choose.
    6. Now, you should have a bunch of .dylib files in your project. Feel free to move them to a separate group within your project.
    7. Click on the project file and go to “Build Settings”.
    8. Search for “Header Search Paths”
    9. Change the path to  /usr/local/include. This is where the header files for OpenCV were built.
    10. Open main.cpp
    11. Copy the following code snippet. This snippet should load a .jpg image andsave it as a .png image.
    // Example showing how to read and write images
    #include <opencv2/opencv.hpp>
    #include <opencv2/highgui/highgui.hpp>
    #include <opencv/cvaux.hpp>
    
    int main(int argc, char** argv)
    {
      IplImage * pInpImg = 0;
    
      // Load an image from file - change this based on your image name
      pInpImg = cvLoadImage("my_image.jpg", CV_LOAD_IMAGE_UNCHANGED);
      if(!pInpImg)
      {
        fprintf(stderr, "failed to load input image
    ");
        return -1;
      }
    
      // Write the image to a file with a different name,
      // using a different image format -- .png instead of .jpg
      if( !cvSaveImage("my_image_copy.png", pInpImg) )
      {
        fprintf(stderr, "failed to write image file
    ");
      }
    
      // Remember to free image memory after using it!
      cvReleaseImage(&pInpImg);
    
      return 0;
    }
    

    And there you go. That should be working for you. If it’s not, leave a comment below with the error you get and I’ll try looking into it for you. Hopefully, this helps save you some time.

    On that note, here is a good OpenCV Tutorial.

    Please read before commenting: Hey guys – thanks a lot for all the comments on this thread. Unfortunately, it’s been a long time since I looked into OpenCV so I don’t remember the details anymore. If you have questions, skim through the comments because many people have posted their solutions. Feel free to comment if you don’t find an answer. On the other hand, if you made some small change that made this work – please add it to the comments so others can find it useful. Thanks!

  • 相关阅读:
    程序员修炼之道:从小工到专家有感2
    3月13日
    第一次结对作业(2)
    3月12日
    3月11日
    第一次结对作业
    3月10日
    11月6日
    10月28日
    10月7日
  • 原文地址:https://www.cnblogs.com/lakeone/p/3977948.html
Copyright © 2011-2022 走看看