Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
ball_tracking
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sebastian Gomez-Gonzalez
ball_tracking
Commits
467c3f27
Commit
467c3f27
authored
4 years ago
by
Sebastian Gomez-Gonzalez
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of gitlab.tuebingen.mpg.de:sgomez/ball_tracking into dev
parents
ccc68b32
00d23ac8
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMakeLists.txt
+4
-2
4 additions, 2 deletions
CMakeLists.txt
src/server.cpp
+1
-0
1 addition, 0 deletions
src/server.cpp
with
5 additions
and
2 deletions
CMakeLists.txt
+
4
−
2
View file @
467c3f27
...
...
@@ -4,8 +4,8 @@ project(ball_tracking)
add_definitions
(
-DBOOST_LOG_DYN_LINK
)
find_package
(
Boost 1.58 COMPONENTS log REQUIRED
)
find_package
(
OpenCV REQUIRED
)
find_package
(
CUDA
8
.0
)
find_package
(
OpenCV
3.4
REQUIRED
)
find_package
(
CUDA
10
.0
)
find_package
(
Armadillo REQUIRED
)
find_library
(
ZMQPP NAMES zmqpp
)
...
...
@@ -24,6 +24,7 @@ endif (CUDA_FOUND)
if
(
WITH_CUDA
)
include_directories
(
${
CUDA_INCLUDE_DIRS
}
${
OpenCV_INCLUDES
}
include
)
add_definitions
(
-DWITH_CUDA
)
...
...
@@ -37,6 +38,7 @@ if (WITH_CUDA)
set
(
GPU_BT_LIB
cu_ball_track
)
install
(
TARGETS cu_ball_track DESTINATION lib
)
endif
(
WITH_CUDA
)
include_directories
(
include
...
...
This diff is collapsed.
Click to expand it.
src/server.cpp
+
1
−
0
View file @
467c3f27
...
...
@@ -64,6 +64,7 @@ namespace ball_tracking {
void
start_server
(
const
json
&
conf
)
{
if
(
conf
.
count
(
"log"
))
set_log_config
(
conf
.
at
(
"log"
));
start_time
=
high_resolution_clock
::
now
();
BOOST_LOG_TRIVIAL
(
info
)
<<
"Tracking server started at time "
<<
start_time
.
time_since_epoch
().
count
();
//1) Start the networking sockets
const
json
&
srv_conf
=
conf
.
at
(
"servers"
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment