Skip to content

Commit

Permalink
added output data through txt file
Browse files Browse the repository at this point in the history
  • Loading branch information
WytsedeWitte committed Dec 17, 2020
1 parent ea518a0 commit 10de82b
Show file tree
Hide file tree
Showing 22 changed files with 181 additions and 2,327 deletions.
8 changes: 6 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ project(main)

set(CMAKE_CXX_STANDARD 17)
find_package( OpenCV REQUIRED )
find_package(Python3)
set(SOURCE_FILES main.cpp detection.cpp)
add_library(parsers SHARED ${SOURCE_FILES})
add_executable(${PROJECT_NAME} ${SOURCE_FILES})
include_directories(${OpenCV_INCLUDE_DIRS})
target_link_libraries( ${PROJECT_NAME} ${OpenCV_LIBS} )
include_directories(${OpenCV_INCLUDE_DIRS} ${PYTHON3_INCLUDE_DIRS})
target_link_libraries( ${PROJECT_NAME} ${OpenCV_LIBS} ${PYTHON_LIBRARIES})


36 changes: 8 additions & 28 deletions cmake-build-debug/CMakeCache.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,6 @@
# EXTERNAL cache entries
########################

//No help, variable specified on the command line.
BUILD_EXAMPLES:UNINITIALIZED=OFF

//No help, variable specified on the command line.
BUILD_TESTS:UNINITIALIZED=OFF

//Path to a program.
CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line

Expand Down Expand Up @@ -172,7 +166,7 @@ CMAKE_READELF:FILEPATH=/usr/bin/readelf

//Flags used by the linker during the creation of shared libraries
// during all build types.
CMAKE_SHARED_LINKER_FLAGS:STRING=-latomic
CMAKE_SHARED_LINKER_FLAGS:STRING=

//Flags used by the linker during the creation of shared libraries
// during DEBUG builds.
Expand Down Expand Up @@ -226,27 +220,6 @@ CMAKE_STRIP:FILEPATH=/usr/bin/strip
// Studio IDE projects all commands are done without /nologo.
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE

//Value Computed by CMake
Detection_BINARY_DIR:STATIC=/home/wytse/project/windturbine/cmake-build-debug

//Value Computed by CMake
Detection_SOURCE_DIR:STATIC=/home/wytse/project/windturbine

//No help, variable specified on the command line.
ENABLE_NEON:UNINITIALIZED=ON

//No help, variable specified on the command line.
ENABLE_VFPV3:UNINITIALIZED=ON

//No help, variable specified on the command line.
INSTALL_PYTHON_EXAMPLES:UNINITIALIZED=OFF

//No help, variable specified on the command line.
OPENCV_ENABLE_NONFREE:UNINITIALIZED=ON

//No help, variable specified on the command line.
OPENCV_EXTRA_MODULES_PATH:UNINITIALIZED=/home/wytse/opencv_contrib/modules

//The directory containing a CMake configuration file for OpenCV.
OpenCV_DIR:PATH=/usr/local/lib/cmake/opencv4

Expand Down Expand Up @@ -420,8 +393,15 @@ CMAKE_UNAME:INTERNAL=/bin/uname
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
//Details about finding OpenCV
FIND_PACKAGE_MESSAGE_DETAILS_OpenCV:INTERNAL=[/usr/local][v4.5.0()]
//Details about finding Python3
FIND_PACKAGE_MESSAGE_DETAILS_Python3:INTERNAL=[/usr/bin/python3.7][cfound components: Interpreter ][v3.7.9()]
//ADVANCED property for variable: ProcessorCount_cmd_nproc
ProcessorCount_cmd_nproc-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ProcessorCount_cmd_sysctl
ProcessorCount_cmd_sysctl-ADVANCED:INTERNAL=1
//Path to a program.
_Python3_EXECUTABLE:INTERNAL=/usr/bin/python3.7
//Python3 Properties
_Python3_INTERPRETER_PROPERTIES:INTERNAL=Python;3;7;9;64;m;cpython-37m-x86_64-linux-gnu;/usr/lib/python3.7;/usr/lib/python3.7;/usr/lib/python3/dist-packages;/usr/lib/python3/dist-packages
_Python3_INTERPRETER_SIGNATURE:INTERNAL=7279bfbb85090620bdec699254b0eb1b

8 changes: 4 additions & 4 deletions cmake-build-debug/CMakeFiles/3.17.3/CMakeSystem.cmake
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
set(CMAKE_HOST_SYSTEM "Linux-5.4.0-52-generic")
set(CMAKE_HOST_SYSTEM "Linux-5.4.0-53-generic")
set(CMAKE_HOST_SYSTEM_NAME "Linux")
set(CMAKE_HOST_SYSTEM_VERSION "5.4.0-52-generic")
set(CMAKE_HOST_SYSTEM_VERSION "5.4.0-53-generic")
set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")



set(CMAKE_SYSTEM "Linux-5.4.0-52-generic")
set(CMAKE_SYSTEM "Linux-5.4.0-53-generic")
set(CMAKE_SYSTEM_NAME "Linux")
set(CMAKE_SYSTEM_VERSION "5.4.0-52-generic")
set(CMAKE_SYSTEM_VERSION "5.4.0-53-generic")
set(CMAKE_SYSTEM_PROCESSOR "x86_64")

set(CMAKE_CROSSCOMPILING "FALSE")
Expand Down
611 changes: 73 additions & 538 deletions cmake-build-debug/CMakeFiles/CMakeOutput.log

Large diffs are not rendered by default.

Loading

0 comments on commit 10de82b

Please sign in to comment.