forked from NVlabs/Deep_Object_Pose
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Read params from ROS parameter server instead of file
- Loading branch information
Showing
4 changed files
with
30 additions
and
49 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<launch> | ||
<arg name="config" default="$(find dope)/config/config_pose.yaml" doc="Path to parameter config file"/> | ||
|
||
<node name="dope" pkg="dope" type="dope" output="screen" clear_params="true"> | ||
<rosparam file="$(arg config)"/> | ||
</node> | ||
</launch> |
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
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 |
---|---|---|
@@ -1,9 +1,7 @@ | ||
pyrr==0.9.2 | ||
torch==0.4.0 | ||
rospkg==1.1.4 | ||
numpy==1.14.2 | ||
scipy==1.1.0 | ||
opencv_python==3.4.1.15 | ||
Pillow==5.3.0 | ||
torchvision==0.2.1 | ||
PyYAML==3.13 |