Git Product home page Git Product logo

Comments (4)

csukuangfj avatar csukuangfj commented on June 27, 2024

@billamiable
You need to install OpenCV first.
If your OpenCV is installed inside the directory "C:/OpenCV", then the original CMakeLists.txt
works fine. Otherwise you need to change the following content in the CMakeLists.txt

INCLUDE_DIRECTORIES(
./include
C:/OpenCV/include
C:/OpenCV/include/opencv
C:/OpenCV/include/opencv2
)

LINK_DIRECTORIES(
C:/OpenCV/lib/x86/Debug
C:/OpenCV/lib/x86/Release
)

Change C:/OpenCV to your OpenCV installation directory.

The first one specifies the OpenCV headers and the second one is the OpenCV libraries.

If you are using Linux, then please replace the whole content of
the CMakeLists.txt with the following code (I assume that you have installed OpenCV corrrectly)

cmake_minimum_required(VERSION 2.6)
set(PROJ_NAME CPM)
project (${PROJ_NAME})

find_package(OpenCV REQUIRED)
include_directories(${OpenCV_INCLUDE_DIRS})

add_definitions(-DWITH_SSE)

include_directories(./include)

add_executable(${PROJ_NAME} main.cpp CPM.cpp)
target_link_libraries(${PROJ_NAME} ${OpenCV_LIBS})

from cpm.

billamiable avatar billamiable commented on June 27, 2024

@csukuangfj
Thanks for your reply !!!
The original CMakeLists.txt is for Windows, I am using linux and your approach works fine !!!
Many thanks!

from cpm.

csukuangfj avatar csukuangfj commented on June 27, 2024

This issue can be closed now.

from cpm.

YinlinHu avatar YinlinHu commented on June 27, 2024

Thanks @csukuangfj

from cpm.

Related Issues (3)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.