-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1418 from wkentaro/enhance-data-collection-server
Enhance data_collection_server regarding of response, params, and sample
- Loading branch information
Showing
6 changed files
with
454 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/usr/bin/env python | ||
|
||
import sys | ||
|
||
from dynamic_reconfigure.parameter_generator_catkin import ParameterGenerator | ||
from dynamic_reconfigure.parameter_generator_catkin import str_t | ||
|
||
|
||
gen = ParameterGenerator() | ||
gen.add( | ||
name='save_dir', | ||
paramtype=str_t, | ||
level=0, | ||
description='Directory the collected data is saved to', | ||
default='~/.ros', | ||
) | ||
|
||
|
||
PACKAGE = 'jsk_data' | ||
sys.exit(gen.generate(PACKAGE, PACKAGE, 'DataCollectionServer')) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,9 +7,12 @@ | |
<maintainer email="[email protected]">Ryohei Ueda</maintainer> | ||
<license>BSD</license> | ||
<buildtool_depend>catkin</buildtool_depend> | ||
<build_depend>dynamic_reconfigure</build_depend> | ||
<build_depend>message_generation</build_depend> | ||
<run_depend>depth_image_proc</run_depend> | ||
<run_depend>image_transport</run_depend> | ||
<run_depend>jsk_topic_tools</run_depend> | ||
<run_depend>message_runtime</run_depend> | ||
<run_depend>paramiko</run_depend> | ||
<run_depend>python-click</run_depend> | ||
<test_depend>python-freezegun-pip</test_depend> | ||
|
Oops, something went wrong.