Skip to content

Commit c929fb7

Browse files
committed
Initial commit for human pose package
1 parent 765f83a commit c929fb7

File tree

1,355 files changed

+272133
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,355 files changed

+272133
-0
lines changed

human_pose_detection/CMakeLists.txt

+203
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,203 @@
1+
cmake_minimum_required(VERSION 2.8.3)
2+
project(human_pose_detection)
3+
4+
## Compile as C++11, supported in ROS Kinetic and newer
5+
# add_compile_options(-std=c++11)
6+
7+
## Find catkin macros and libraries
8+
## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz)
9+
## is used, also find other catkin packages
10+
find_package(catkin REQUIRED COMPONENTS
11+
cv_bridge
12+
image_transport
13+
opencv3
14+
pcl_conversions
15+
pcl_ros
16+
roscpp
17+
sensor_msgs
18+
)
19+
20+
## System dependencies are found with CMake's conventions
21+
# find_package(Boost REQUIRED COMPONENTS system)
22+
23+
24+
## Uncomment this if the package has a setup.py. This macro ensures
25+
## modules and global scripts declared therein get installed
26+
## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html
27+
# catkin_python_setup()
28+
29+
################################################
30+
## Declare ROS messages, services and actions ##
31+
################################################
32+
33+
## To declare and build messages, services or actions from within this
34+
## package, follow these steps:
35+
## * Let MSG_DEP_SET be the set of packages whose message types you use in
36+
## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...).
37+
## * In the file package.xml:
38+
## * add a build_depend tag for "message_generation"
39+
## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET
40+
## * If MSG_DEP_SET isn't empty the following dependency has been pulled in
41+
## but can be declared for certainty nonetheless:
42+
## * add a exec_depend tag for "message_runtime"
43+
## * In this file (CMakeLists.txt):
44+
## * add "message_generation" and every package in MSG_DEP_SET to
45+
## find_package(catkin REQUIRED COMPONENTS ...)
46+
## * add "message_runtime" and every package in MSG_DEP_SET to
47+
## catkin_package(CATKIN_DEPENDS ...)
48+
## * uncomment the add_*_files sections below as needed
49+
## and list every .msg/.srv/.action file to be processed
50+
## * uncomment the generate_messages entry below
51+
## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...)
52+
53+
## Generate messages in the 'msg' folder
54+
# add_message_files(
55+
# FILES
56+
# Message1.msg
57+
# Message2.msg
58+
# )
59+
60+
## Generate services in the 'srv' folder
61+
# add_service_files(
62+
# FILES
63+
# Service1.srv
64+
# Service2.srv
65+
# )
66+
67+
## Generate actions in the 'action' folder
68+
# add_action_files(
69+
# FILES
70+
# Action1.action
71+
# Action2.action
72+
# )
73+
74+
## Generate added messages and services with any dependencies listed here
75+
# generate_messages(
76+
# DEPENDENCIES
77+
# sensor_msgs
78+
# )
79+
80+
################################################
81+
## Declare ROS dynamic reconfigure parameters ##
82+
################################################
83+
84+
## To declare and build dynamic reconfigure parameters within this
85+
## package, follow these steps:
86+
## * In the file package.xml:
87+
## * add a build_depend and a exec_depend tag for "dynamic_reconfigure"
88+
## * In this file (CMakeLists.txt):
89+
## * add "dynamic_reconfigure" to
90+
## find_package(catkin REQUIRED COMPONENTS ...)
91+
## * uncomment the "generate_dynamic_reconfigure_options" section below
92+
## and list every .cfg file to be processed
93+
94+
## Generate dynamic reconfigure parameters in the 'cfg' folder
95+
# generate_dynamic_reconfigure_options(
96+
# cfg/DynReconf1.cfg
97+
# cfg/DynReconf2.cfg
98+
# )
99+
100+
###################################
101+
## catkin specific configuration ##
102+
###################################
103+
## The catkin_package macro generates cmake config files for your package
104+
## Declare things to be passed to dependent projects
105+
## INCLUDE_DIRS: uncomment this if your package contains header files
106+
## LIBRARIES: libraries you create in this project that dependent projects also need
107+
## CATKIN_DEPENDS: catkin_packages dependent projects also need
108+
## DEPENDS: system dependencies of this project that dependent projects also need
109+
catkin_package(
110+
# INCLUDE_DIRS include
111+
# LIBRARIES human_pose_detection
112+
# CATKIN_DEPENDS cv_bridge image_transport opencv3 pcl_conversions pcl_ros roscpp sensor_msgs
113+
# DEPENDS system_lib
114+
)
115+
116+
###########
117+
## Build ##
118+
###########
119+
120+
## Specify additional locations of header files
121+
## Your package locations should be listed before other locations
122+
include_directories(
123+
# include
124+
${catkin_INCLUDE_DIRS}
125+
)
126+
127+
## Declare a C++ library
128+
# add_library(${PROJECT_NAME}
129+
# src/${PROJECT_NAME}/human_pose_detection.cpp
130+
# )
131+
132+
## Add cmake target dependencies of the library
133+
## as an example, code may need to be generated before libraries
134+
## either from message generation or dynamic reconfigure
135+
# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
136+
137+
## Declare a C++ executable
138+
## With catkin_make all packages are built within a single CMake context
139+
## The recommended prefix ensures that target names across packages don't collide
140+
# add_executable(${PROJECT_NAME}_node src/human_pose_detection_node.cpp)
141+
142+
## Rename C++ executable without prefix
143+
## The above recommended prefix causes long target names, the following renames the
144+
## target back to the shorter version for ease of user use
145+
## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node"
146+
# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "")
147+
148+
## Add cmake target dependencies of the executable
149+
## same as for the library above
150+
# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
151+
152+
## Specify libraries to link a library or executable target against
153+
# target_link_libraries(${PROJECT_NAME}_node
154+
# ${catkin_LIBRARIES}
155+
# )
156+
157+
#############
158+
## Install ##
159+
#############
160+
161+
# all install targets should use catkin DESTINATION variables
162+
# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html
163+
164+
## Mark executable scripts (Python etc.) for installation
165+
## in contrast to setup.py, you can choose the destination
166+
# install(PROGRAMS
167+
# scripts/my_python_script
168+
# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
169+
# )
170+
171+
## Mark executables and/or libraries for installation
172+
# install(TARGETS ${PROJECT_NAME} ${PROJECT_NAME}_node
173+
# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
174+
# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
175+
# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
176+
# )
177+
178+
## Mark cpp header files for installation
179+
# install(DIRECTORY include/${PROJECT_NAME}/
180+
# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
181+
# FILES_MATCHING PATTERN "*.h"
182+
# PATTERN ".svn" EXCLUDE
183+
# )
184+
185+
## Mark other files for installation (e.g. launch and bag files, etc.)
186+
# install(FILES
187+
# # myfile1
188+
# # myfile2
189+
# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
190+
# )
191+
192+
#############
193+
## Testing ##
194+
#############
195+
196+
## Add gtest based cpp test target and link libraries
197+
# catkin_add_gtest(${PROJECT_NAME}-test test/test_human_pose_detection.cpp)
198+
# if(TARGET ${PROJECT_NAME}-test)
199+
# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME})
200+
# endif()
201+
202+
## Add folders to be run by python nosetests
203+
# catkin_add_nosetests(test)
+140
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
######################### Binary Files #########################
2+
# Compiled Object files
3+
*.slo
4+
*.lo
5+
*.o
6+
*.cuo
7+
8+
# Compiled Dynamic libraries
9+
*.so*
10+
*.dylib
11+
12+
# Compiled Static libraries
13+
*.lai
14+
*.la
15+
*.a
16+
17+
# Compiled protocol buffers
18+
*.pb.h
19+
*.pb.cc
20+
*_pb2.py
21+
22+
# Compiled python
23+
*.pyc
24+
25+
# Compiled MATLAB
26+
*.mex*
27+
28+
# IPython notebook checkpoints
29+
.ipynb_checkpoints
30+
31+
# LevelDB files
32+
*.sst
33+
*.ldb
34+
LOCK
35+
LOG*
36+
CURRENT
37+
MANIFEST-*
38+
39+
######################### IDEs Files #########################
40+
# Editor temporaries
41+
*.swp
42+
*~
43+
44+
# Sublime Text settings
45+
*.sublime-workspace
46+
*.sublime-project
47+
48+
# Eclipse Project settings
49+
*.*project
50+
.settings
51+
52+
# QtCreator files
53+
*.user
54+
55+
# PyCharm files
56+
.idea
57+
58+
# OSX dir files
59+
.DS_Store
60+
._.DS_Store
61+
62+
# Vim files
63+
cscope.*
64+
tags
65+
.clang_complete
66+
.vim
67+
68+
######################### Windows (Visual Studio) Files #########################
69+
*.db
70+
*.deps
71+
*.obj
72+
*.opendb
73+
*.pdb
74+
75+
######################### Windows (Visual Studio) Folders and Compressed files #########################
76+
*.vs/
77+
*x64/
78+
# Allowing this file (removed *.user for Qt)
79+
!*.vcxproj.user
80+
81+
######################### Caffe Files / Folders #########################
82+
# User's build configuration
83+
Makefile
84+
Makefile.config
85+
86+
# Data and models are either
87+
# 1. reference, and not casually committed
88+
# 2. custom, and live on their own unless they're deliberated contributed
89+
distribute/
90+
*.caffemodel
91+
*.caffemodel.h5
92+
*.solverstate
93+
*.solverstate.h5
94+
*.binaryproto
95+
*leveldb
96+
*lmdb
97+
98+
# Camera parameters
99+
*.xml
100+
101+
######################### 3rd-party Folders and Zip Files #########################
102+
3rdparty/caffe/.git
103+
3rdparty/caffe/.github
104+
3rdparty/asio/
105+
3rdparty/eigen/
106+
3rdparty/windows/caffe/
107+
3rdparty/windows/caffe_cpu/
108+
3rdparty/windows/caffe_opencl/
109+
3rdparty/windows/caffe3rdparty/
110+
3rdparty/windows/opencv/
111+
3rdparty/windows/freeglut/
112+
3rdparty/windows/spinnaker/
113+
3rdparty/*zip
114+
3rdparty/windows/*zip
115+
116+
######################### Compilation (build, distribute & bins) Files / Folders #########################
117+
*.bin
118+
*.testbin
119+
build
120+
build*
121+
.build*
122+
*cmake_build
123+
distribute/*
124+
python/caffe/proto/
125+
126+
######################### Generated Documentation #########################
127+
_site
128+
docs/_site
129+
docs/dev
130+
docs/gathered
131+
doxygen
132+
html/
133+
134+
######################### Video Files #########################
135+
# Testing videos
136+
*.mp4
137+
*.mov
138+
139+
######################### Validation Scripts & Testing #########################
140+
output*/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[submodule "3rdparty/caffe"]
2+
path = 3rdparty/caffe
3+
url = https://github.com/CMU-Perceptual-Computing-Lab/caffe.git
4+
[submodule "3rdparty/pybind11"]
5+
path = 3rdparty/pybind11
6+
url = https://github.com/pybind/pybind11.git

0 commit comments

Comments
 (0)