Using OpenCV 2.4.0 in a Visual studio 2010 project

后端 未结 2 702
小鲜肉
小鲜肉 2021-01-15 23:33

I have asked a similar question on How to link and use OpenCV headers?, but no luck so far. So I decided to ask a new, more specific question.

Can someone tell me wh

2条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-15 23:42

    See http://docs.opencv.org/doc/tutorials/introduction/windows_visual_studio_Opencv/windows_visual_studio_Opencv.html#windows-visual-studio-how-to

    Add these to your stdafx.h

    #include         // cv::Mat etc, always need this
    #include   // all the image processing functions
    #include   // Display and file I/O
    

    Assuming you have set OPENCV_DIR to the place you put opencv eg. OPENCV_DIR=c:\opencv2.4\opencv

    Then set the VC++ directories in project settings to Include add $(OPENCV_DIR)\include and to Library add $(OPENCV_DIR)\lib

    Then in the "linker Input" add opencv_core240.lib (opencv_core240D.lib for debug) opencv_imgproc240.lib and opencv_highgui240.lib etc

提交回复
热议问题