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
66a712dd
Commit
66a712dd
authored
Nov 07, 2016
by
Patrik Huber
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added CMake option BUILD_CERES_EXAMPLE
parent
6931b61d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
8 deletions
+14
-8
CMakeLists.txt
CMakeLists.txt
+2
-0
examples/CMakeLists.txt
examples/CMakeLists.txt
+11
-8
initial_cache.cmake.template
initial_cache.cmake.template
+1
-0
No files found.
CMakeLists.txt
View file @
66a712dd
...
...
@@ -54,6 +54,8 @@ endif()
message
(
STATUS
"Options:"
)
option
(
BUILD_EXAMPLES
"Build the example applications."
ON
)
message
(
STATUS
"BUILD_EXAMPLES:
${
BUILD_EXAMPLES
}
"
)
option
(
BUILD_CERES_EXAMPLE
"Build the fit-model-ceres example (requires Ceres)."
OFF
)
message
(
STATUS
"BUILD_CERES_EXAMPLE:
${
BUILD_CERES_EXAMPLE
}
"
)
option
(
BUILD_UTILS
"Build utility applications."
OFF
)
message
(
STATUS
"BUILD_UTILS:
${
BUILD_UTILS
}
"
)
option
(
BUILD_DOCUMENTATION
"Build the library documentation."
OFF
)
...
...
examples/CMakeLists.txt
View file @
66a712dd
...
...
@@ -33,18 +33,21 @@ if(MSVC)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
/bigobj"
)
endif
()
# Find Ceres, for the fit-model-ceres app:
find_package
(
Ceres REQUIRED
)
message
(
STATUS
"Ceres locations: Headers:
${
CERES_INCLUDE_DIRS
}
Library:
${
CERES_LIBRARIES
}
"
)
include_directories
(
${
CERES_INCLUDE_DIRS
}
)
# Model fitting (affine cam & shape to landmarks) example:
add_executable
(
fit-model fit-model.cpp
)
target_link_libraries
(
fit-model
${
OpenCV_LIBS
}
${
Boost_LIBRARIES
}
)
# Single and multi-image non-linear model fitting with Ceres example:
add_executable
(
fit-model-ceres fit-model-ceres.cpp
)
target_link_libraries
(
fit-model-ceres
${
CERES_LIBRARIES
}
${
OpenCV_LIBS
}
${
Boost_LIBRARIES
}
)
if
(
BUILD_CERES_EXAMPLE
)
# Find Ceres, for the fit-model-ceres app:
find_package
(
Ceres REQUIRED
)
message
(
STATUS
"Ceres locations: Headers:
${
CERES_INCLUDE_DIRS
}
Library:
${
CERES_LIBRARIES
}
"
)
include_directories
(
${
CERES_INCLUDE_DIRS
}
)
# Single and multi-image non-linear model fitting with Ceres example:
add_executable
(
fit-model-ceres fit-model-ceres.cpp
)
target_link_libraries
(
fit-model-ceres
${
CERES_LIBRARIES
}
${
OpenCV_LIBS
}
${
Boost_LIBRARIES
}
)
install
(
TARGETS fit-model-ceres DESTINATION bin
)
endif
()
# Generate random samples from the model:
add_executable
(
generate-obj generate-obj.cpp
)
...
...
initial_cache.cmake.template
View file @
66a712dd
...
...
@@ -23,5 +23,6 @@
# Configuration options
# ==============================
set(BUILD_EXAMPLES ON CACHE BOOL "Build the example applications." FORCE)
set(BUILD_CERES_EXAMPLE OFF CACHE BOOL "Build the fit-model-ceres example (requires Ceres)." FORCE)
set(BUILD_UTILS OFF CACHE BOOL "Build utility applications." FORCE)
set(BUILD_DOCUMENTATION OFF CACHE BOOL "Build the library documentation." FORCE)
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