cpp branch

This commit is contained in:
ackimixs
2024-01-14 13:11:41 +01:00
parent 3285e91ae2
commit 6b60bd175d
30 changed files with 223 additions and 496 deletions

30
CMakeLists.txt Normal file
View File

@@ -0,0 +1,30 @@
cmake_minimum_required(VERSION 3.27)
project(detection_pot)
set(CMAKE_CXX_STANDARD 17)
find_package( OpenCV REQUIRED )
include_directories( ${OpenCV_INCLUDE_DIRS} )
set(COMMON_SOURCES
)
set(calibrationSources
${COMMON_SOURCES}
calibration.cpp
)
add_executable(calibration ${calibrationSources})
target_link_libraries( calibration ${OpenCV_LIBS} )
# Project 2 sources and executable
set(arucoDetectionSources
${COMMON_SOURCES}
arucoDetector.cpp
)
add_executable(arucoDetector ${arucoDetectionSources})
target_link_libraries( arucoDetector ${OpenCV_LIBS} )