Skip to content

Commit 9d893e4

Browse files
committed
Initial commit
0 parents  commit 9d893e4

File tree

3 files changed

+235
-0
lines changed

3 files changed

+235
-0
lines changed

CMakeLists.txt

+181
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,181 @@
1+
cmake_minimum_required(VERSION 2.8.3)
2+
project(ros_emotion)
3+
4+
## Find catkin macros and libraries
5+
## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz)
6+
## is used, also find other catkin packages
7+
find_package(catkin REQUIRED)
8+
9+
## System dependencies are found with CMake's conventions
10+
# find_package(Boost REQUIRED COMPONENTS system)
11+
12+
13+
## Uncomment this if the package has a setup.py. This macro ensures
14+
## modules and global scripts declared therein get installed
15+
## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html
16+
# catkin_python_setup()
17+
18+
################################################
19+
## Declare ROS messages, services and actions ##
20+
################################################
21+
22+
## To declare and build messages, services or actions from within this
23+
## package, follow these steps:
24+
## * Let MSG_DEP_SET be the set of packages whose message types you use in
25+
## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...).
26+
## * In the file package.xml:
27+
## * add a build_depend tag for "message_generation"
28+
## * add a build_depend and a run_depend tag for each package in MSG_DEP_SET
29+
## * If MSG_DEP_SET isn't empty the following dependency has been pulled in
30+
## but can be declared for certainty nonetheless:
31+
## * add a run_depend tag for "message_runtime"
32+
## * In this file (CMakeLists.txt):
33+
## * add "message_generation" and every package in MSG_DEP_SET to
34+
## find_package(catkin REQUIRED COMPONENTS ...)
35+
## * add "message_runtime" and every package in MSG_DEP_SET to
36+
## catkin_package(CATKIN_DEPENDS ...)
37+
## * uncomment the add_*_files sections below as needed
38+
## and list every .msg/.srv/.action file to be processed
39+
## * uncomment the generate_messages entry below
40+
## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...)
41+
42+
## Generate messages in the 'msg' folder
43+
# add_message_files(
44+
# FILES
45+
# Message1.msg
46+
# Message2.msg
47+
# )
48+
49+
## Generate services in the 'srv' folder
50+
# add_service_files(
51+
# FILES
52+
# Service1.srv
53+
# Service2.srv
54+
# )
55+
56+
## Generate actions in the 'action' folder
57+
# add_action_files(
58+
# FILES
59+
# Action1.action
60+
# Action2.action
61+
# )
62+
63+
## Generate added messages and services with any dependencies listed here
64+
# generate_messages(
65+
# DEPENDENCIES
66+
# std_msgs # Or other packages containing msgs
67+
# )
68+
69+
################################################
70+
## Declare ROS dynamic reconfigure parameters ##
71+
################################################
72+
73+
## To declare and build dynamic reconfigure parameters within this
74+
## package, follow these steps:
75+
## * In the file package.xml:
76+
## * add a build_depend and a run_depend tag for "dynamic_reconfigure"
77+
## * In this file (CMakeLists.txt):
78+
## * add "dynamic_reconfigure" to
79+
## find_package(catkin REQUIRED COMPONENTS ...)
80+
## * uncomment the "generate_dynamic_reconfigure_options" section below
81+
## and list every .cfg file to be processed
82+
83+
## Generate dynamic reconfigure parameters in the 'cfg' folder
84+
# generate_dynamic_reconfigure_options(
85+
# cfg/DynReconf1.cfg
86+
# cfg/DynReconf2.cfg
87+
# )
88+
89+
###################################
90+
## catkin specific configuration ##
91+
###################################
92+
## The catkin_package macro generates cmake config files for your package
93+
## Declare things to be passed to dependent projects
94+
## INCLUDE_DIRS: uncomment this if you package contains header files
95+
## LIBRARIES: libraries you create in this project that dependent projects also need
96+
## CATKIN_DEPENDS: catkin_packages dependent projects also need
97+
## DEPENDS: system dependencies of this project that dependent projects also need
98+
catkin_package(
99+
# INCLUDE_DIRS include
100+
# LIBRARIES ros_emotion
101+
# CATKIN_DEPENDS other_catkin_pkg
102+
# DEPENDS system_lib
103+
)
104+
105+
###########
106+
## Build ##
107+
###########
108+
109+
## Specify additional locations of header files
110+
## Your package locations should be listed before other locations
111+
# include_directories(include)
112+
113+
## Declare a C++ library
114+
# add_library(ros_emotion
115+
# src/${PROJECT_NAME}/ros_emotion.cpp
116+
# )
117+
118+
## Add cmake target dependencies of the library
119+
## as an example, code may need to be generated before libraries
120+
## either from message generation or dynamic reconfigure
121+
# add_dependencies(ros_emotion ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
122+
123+
## Declare a C++ executable
124+
# add_executable(ros_emotion_node src/ros_emotion_node.cpp)
125+
126+
## Add cmake target dependencies of the executable
127+
## same as for the library above
128+
# add_dependencies(ros_emotion_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
129+
130+
## Specify libraries to link a library or executable target against
131+
# target_link_libraries(ros_emotion_node
132+
# ${catkin_LIBRARIES}
133+
# )
134+
135+
#############
136+
## Install ##
137+
#############
138+
139+
# all install targets should use catkin DESTINATION variables
140+
# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html
141+
142+
## Mark executable scripts (Python etc.) for installation
143+
## in contrast to setup.py, you can choose the destination
144+
install(PROGRAMS
145+
scripts/emotion_recognizer.py
146+
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
147+
)
148+
149+
## Mark executables and/or libraries for installation
150+
# install(TARGETS ros_emotion ros_emotion_node
151+
# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
152+
# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
153+
# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
154+
# )
155+
156+
## Mark cpp header files for installation
157+
# install(DIRECTORY include/${PROJECT_NAME}/
158+
# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
159+
# FILES_MATCHING PATTERN "*.h"
160+
# PATTERN ".svn" EXCLUDE
161+
# )
162+
163+
## Mark other files for installation (e.g. launch and bag files, etc.)
164+
# install(FILES
165+
# # myfile1
166+
# # myfile2
167+
# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
168+
# )
169+
170+
#############
171+
## Testing ##
172+
#############
173+
174+
## Add gtest based cpp test target and link libraries
175+
# catkin_add_gtest(${PROJECT_NAME}-test test/test_ros_emotion.cpp)
176+
# if(TARGET ${PROJECT_NAME}-test)
177+
# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME})
178+
# endif()
179+
180+
## Add folders to be run by python nosetests
181+
# catkin_add_nosetests(test)

package.xml

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<?xml version="1.0"?>
2+
<package>
3+
<name>ros_emotion</name>
4+
<version>0.1.0</version>
5+
<description>The ros_emotion package</description>
6+
7+
<!-- One maintainer tag required, multiple allowed, one person per tag -->
8+
<!-- Example: -->
9+
<!-- <maintainer email="[email protected]">Jane Doe</maintainer> -->
10+
<maintainer email="[email protected]">wenwei</maintainer>
11+
12+
13+
<!-- One license tag required, multiple allowed, one license per tag -->
14+
<!-- Commonly used license strings: -->
15+
<!-- BSD, MIT, Boost Software License, GPLv2, GPLv3, LGPLv2.1, LGPLv3 -->
16+
<license>TODO</license>
17+
18+
19+
<!-- Url tags are optional, but mutiple are allowed, one per tag -->
20+
<!-- Optional attribute type can be: website, bugtracker, or repository -->
21+
<!-- Example: -->
22+
<!-- <url type="website">http://wiki.ros.org/ros_emotion</url> -->
23+
24+
25+
<!-- Author tags are optional, mutiple are allowed, one per tag -->
26+
<!-- Authors do not have to be maintianers, but could be -->
27+
<!-- Example: -->
28+
<!-- <author email="[email protected]">Jane Doe</author> -->
29+
30+
31+
<!-- The *_depend tags are used to specify dependencies -->
32+
<!-- Dependencies can be catkin packages or system dependencies -->
33+
<!-- Examples: -->
34+
<!-- Use build_depend for packages you need at compile time: -->
35+
<!-- <build_depend>message_generation</build_depend> -->
36+
<!-- Use buildtool_depend for build tool packages: -->
37+
<!-- <buildtool_depend>catkin</buildtool_depend> -->
38+
<!-- Use run_depend for packages you need at runtime: -->
39+
<!-- <run_depend>message_runtime</run_depend> -->
40+
<!-- Use test_depend for packages you need only for testing: -->
41+
<!-- <test_depend>gtest</test_depend> -->
42+
<buildtool_depend>catkin</buildtool_depend>
43+
44+
45+
<!-- The export tag contains other, unspecified, tags -->
46+
<export>
47+
<!-- Other tools can request additional information be placed here -->
48+
49+
</export>
50+
</package>

scripts/emotion_recognizer.py

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import rospy
2+
3+
if __name__ == '__main__':
4+
rospy.init_node('emotion')

0 commit comments

Comments
 (0)