Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
eos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Richard Torenvliet
eos
Commits
49259eeb
Commit
49259eeb
authored
Dec 10, 2016
by
Patrik Huber
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated documentation and OpenCV status messages
parent
9a58e3e8
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
7 deletions
+2
-7
CMakeLists.txt
CMakeLists.txt
+2
-1
examples/CMakeLists.txt
examples/CMakeLists.txt
+0
-2
python/CMakeLists.txt
python/CMakeLists.txt
+0
-2
utils/CMakeLists.txt
utils/CMakeLists.txt
+0
-2
No files found.
CMakeLists.txt
View file @
49259eeb
...
@@ -59,12 +59,13 @@ find_package(Eigen3 REQUIRED)
...
@@ -59,12 +59,13 @@ find_package(Eigen3 REQUIRED)
message
(
STATUS
"Eigen3 found:
${
EIGEN3_FOUND
}
, version:
${
EIGEN3_VERSION
}
"
)
message
(
STATUS
"Eigen3 found:
${
EIGEN3_FOUND
}
, version:
${
EIGEN3_VERSION
}
"
)
message
(
STATUS
"Eigen3 include dir found at
${
EIGEN3_INCLUDE_DIR
}
"
)
message
(
STATUS
"Eigen3 include dir found at
${
EIGEN3_INCLUDE_DIR
}
"
)
# Set the include directories of the 3rd-party submodules that we use:
set
(
CEREAL_INCLUDE_DIR
"
${
CMAKE_SOURCE_DIR
}
/3rdparty/cereal-1.1.1/include"
)
set
(
CEREAL_INCLUDE_DIR
"
${
CMAKE_SOURCE_DIR
}
/3rdparty/cereal-1.1.1/include"
)
set
(
glm_INCLUDE_DIR
"
${
CMAKE_SOURCE_DIR
}
/3rdparty/glm"
)
set
(
glm_INCLUDE_DIR
"
${
CMAKE_SOURCE_DIR
}
/3rdparty/glm"
)
set
(
nanoflann_INCLUDE_DIR
"
${
CMAKE_SOURCE_DIR
}
/3rdparty/nanoflann/include"
)
set
(
nanoflann_INCLUDE_DIR
"
${
CMAKE_SOURCE_DIR
}
/3rdparty/nanoflann/include"
)
set
(
eigen3_nnls_INCLUDE_DIR
"
${
CMAKE_SOURCE_DIR
}
/3rdparty/eigen3-nnls/src"
)
set
(
eigen3_nnls_INCLUDE_DIR
"
${
CMAKE_SOURCE_DIR
}
/3rdparty/eigen3-nnls/src"
)
# Header files:
# Header files
of the eos library
:
set
(
HEADERS
set
(
HEADERS
include/eos/core/Landmark.hpp
include/eos/core/Landmark.hpp
include/eos/core/LandmarkMapper.hpp
include/eos/core/LandmarkMapper.hpp
...
...
examples/CMakeLists.txt
View file @
49259eeb
...
@@ -12,8 +12,6 @@ elseif("${OpenCV_VERSION_MAJOR}$" EQUAL 3)
...
@@ -12,8 +12,6 @@ elseif("${OpenCV_VERSION_MAJOR}$" EQUAL 3)
message
(
STATUS
"OpenCV 3.x detected - including imgcodecs for compatibility"
)
message
(
STATUS
"OpenCV 3.x detected - including imgcodecs for compatibility"
)
find_package
(
OpenCV 3.0.0 REQUIRED core imgproc imgcodecs
)
find_package
(
OpenCV 3.0.0 REQUIRED core imgproc imgcodecs
)
endif
()
endif
()
message
(
STATUS
"OpenCV include dir found at
${
OpenCV_INCLUDE_DIRS
}
"
)
message
(
STATUS
"OpenCV lib dir found at
${
OpenCV_LIB_DIR
}
"
)
# This allows us to compile in RelWithDebInfo. It'll use the Release-version of OpenCV:
# This allows us to compile in RelWithDebInfo. It'll use the Release-version of OpenCV:
set_target_properties
(
${
OpenCV_LIBS
}
PROPERTIES MAP_IMPORTED_CONFIG_RELWITHDEBINFO RELEASE
)
set_target_properties
(
${
OpenCV_LIBS
}
PROPERTIES MAP_IMPORTED_CONFIG_RELWITHDEBINFO RELEASE
)
...
...
python/CMakeLists.txt
View file @
49259eeb
...
@@ -13,8 +13,6 @@ elseif("${OpenCV_VERSION_MAJOR}$" EQUAL 3)
...
@@ -13,8 +13,6 @@ elseif("${OpenCV_VERSION_MAJOR}$" EQUAL 3)
message
(
STATUS
"OpenCV 3.x detected - including imgcodecs for compatibility"
)
message
(
STATUS
"OpenCV 3.x detected - including imgcodecs for compatibility"
)
find_package
(
OpenCV 3.0.0 REQUIRED core imgproc imgcodecs
)
find_package
(
OpenCV 3.0.0 REQUIRED core imgproc imgcodecs
)
endif
()
endif
()
message
(
STATUS
"OpenCV include dir found at
${
OpenCV_INCLUDE_DIRS
}
"
)
message
(
STATUS
"OpenCV lib dir found at
${
OpenCV_LIB_DIR
}
"
)
# This allows us to compile in RelWithDebInfo. It'll use the Release-version of OpenCV:
# This allows us to compile in RelWithDebInfo. It'll use the Release-version of OpenCV:
set_target_properties
(
${
OpenCV_LIBS
}
PROPERTIES MAP_IMPORTED_CONFIG_RELWITHDEBINFO RELEASE
)
set_target_properties
(
${
OpenCV_LIBS
}
PROPERTIES MAP_IMPORTED_CONFIG_RELWITHDEBINFO RELEASE
)
...
...
utils/CMakeLists.txt
View file @
49259eeb
...
@@ -12,8 +12,6 @@ elseif("${OpenCV_VERSION_MAJOR}$" EQUAL 3)
...
@@ -12,8 +12,6 @@ elseif("${OpenCV_VERSION_MAJOR}$" EQUAL 3)
message
(
STATUS
"OpenCV 3.x detected - including imgcodecs for compatibility"
)
message
(
STATUS
"OpenCV 3.x detected - including imgcodecs for compatibility"
)
find_package
(
OpenCV 3.0.0 REQUIRED core imgproc imgcodecs
)
find_package
(
OpenCV 3.0.0 REQUIRED core imgproc imgcodecs
)
endif
()
endif
()
message
(
STATUS
"OpenCV include dir found at
${
OpenCV_INCLUDE_DIRS
}
"
)
message
(
STATUS
"OpenCV lib dir found at
${
OpenCV_LIB_DIR
}
"
)
# This allows us to compile in RelWithDebInfo. It'll use the Release-version of OpenCV:
# This allows us to compile in RelWithDebInfo. It'll use the Release-version of OpenCV:
set_target_properties
(
${
OpenCV_LIBS
}
PROPERTIES MAP_IMPORTED_CONFIG_RELWITHDEBINFO RELEASE
)
set_target_properties
(
${
OpenCV_LIBS
}
PROPERTIES MAP_IMPORTED_CONFIG_RELWITHDEBINFO RELEASE
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment