inital commit

This commit is contained in:
Carl Philipp Klemm 2025-07-23 18:07:23 +02:00
commit fe1f6c1a76
3 changed files with 854 additions and 0 deletions

14
CMakeLists.txt Normal file
View file

@ -0,0 +1,14 @@
cmake_minimum_required(VERSION 2.4)
project(scannassembler)
include_directories("/usr/include/opencv4")
add_executable(scannassembler main.cpp )
target_link_libraries( scannassembler -lopencv_core -lopencv_imgcodecs -lopencv_highgui -lopencv_aruco -lopencv_bgsegm -lopencv_calib3d -lopencv_ccalib -lopencv_datasets -lopencv_dnn -lopencv_dpm -lopencv_features2d -lopencv_flann -lopencv_freetype -lopencv_fuzzy -lopencv_hdf -lopencv_imgcodecs -lopencv_imgproc -lopencv_video -lopencv_videoio -lopencv_stitching -lopencv_xfeatures2d -lomp)
set_target_properties( scannassembler PROPERTIES COMPILE_FLAGS -m64 LINK_FLAGS -m64)
add_definitions(" -fopenmp -s -std=c++11 -Wall")
set(EXECUTABLE_OUTPUT_PATH ./build)
install(TARGETS scannassembler RUNTIME DESTINATION bin)