2014-01-19 19:44:30 +01:00
|
|
|
cmake_minimum_required(VERSION 2.8)
|
|
|
|
project( opencv-exercises )
|
|
|
|
find_package( OpenCV REQUIRED )
|
|
|
|
|
|
|
|
add_executable( SVMTest SVMTest.cpp )
|
|
|
|
target_link_libraries( SVMTest ${OpenCV_LIBS} )
|
2014-01-20 12:10:31 +01:00
|
|
|
|
|
|
|
add_executable( DisplayImage DisplayImage.cpp )
|
|
|
|
target_link_libraries( DisplayImage ${OpenCV_LIBS} )
|
2014-01-20 12:12:16 +01:00
|
|
|
|
|
|
|
add_executable( SharpenImage SharpenImage.cpp )
|
|
|
|
target_link_libraries( SharpenImage ${OpenCV_LIBS} )
|
2017-01-28 02:57:31 +01:00
|
|
|
|
|
|
|
add_executable( KalmanMouse KalmanMouse.cpp )
|
|
|
|
target_link_libraries( KalmanMouse ${OpenCV_LIBS} )
|