-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fusion now publishes the results in a topic. Additionally, each node …
…has its own parameters.yaml file.
- Loading branch information
1 parent
4e5973b
commit fefe9ee
Showing
14 changed files
with
144 additions
and
10 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 |
---|---|---|
@@ -1 +1,3 @@ | ||
**/~* | ||
*.swp | ||
|
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,8 @@ | ||
image_topic: "/camera/rgb/image_raw" | ||
image_out_topic: "/chroma_proc/image" | ||
image_out_dif_topic: "/chroma_proc/image_dif" | ||
playback_topics: false | ||
display: false | ||
chroma_width: 1280 | ||
chroma_height: 1024 | ||
|
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,11 @@ | ||
depth_topic: "/camera/depth/image_raw" | ||
depth_out_image_topic: "/depth_proc/image" | ||
depth_out_dif_topic: "/depth_proc/image_dif" | ||
playback_topics: false | ||
display: false | ||
min_depth: 0 | ||
max_depth: 6000 | ||
hor_field: 58 | ||
ver_field: 45 | ||
depth_width: 640 | ||
depth_height: 480 |
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,11 @@ | ||
results_topic: "results" | ||
image_topic: "/chroma_proc/image" | ||
image_dif_topic: "/chroma_proc/image_dif" | ||
depth_topic: "/depth_proc/image" | ||
depth_dif_topic: "/depth_proc/image_dif" | ||
playback_topics: false | ||
write_csv: false | ||
display: false | ||
min_depth: 0 | ||
max_depth: 6000 | ||
camera_frame: "camera_link" |
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,3 @@ | ||
int32 id | ||
Rectangle rect | ||
Position pos |
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,2 @@ | ||
Header header | ||
Box[] boxes |
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,6 @@ | ||
float32 x | ||
float32 y | ||
float32 z | ||
float32 top | ||
float32 height | ||
float32 distance |
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,4 @@ | ||
float32 x | ||
float32 y | ||
float32 width | ||
float32 height |
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 |
---|---|---|
|
@@ -61,4 +61,3 @@ | |
|
||
|
||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?> | ||
<launch> | ||
|
||
<arg name="project_path" default="$(find ros_visual)" /> | ||
|
||
<node pkg="chroma" type="chroma" name="chroma" output="screen" respawn="true"> | ||
<rosparam file="$(find chroma)/config/parameters.yaml" command="load" /> | ||
<param name="project_path" value="$(find ros_visual)" /> | ||
</node> | ||
|
||
<node pkg="depth" type="depth" name="depth" output="screen" > | ||
<rosparam file="$(find depth)/config/parameters.yaml" command="load" /> | ||
<param name="project_path" value="$(find ros_visual)" /> | ||
</node> | ||
|
||
<node pkg="fusion" type="fusion" name="fusion" output="screen"> | ||
<rosparam file="$(find fusion)/config/parameters.yaml" command="load" /> | ||
<param name="project_path" value="$(find ros_visual)" /> | ||
</node> | ||
|
||
</launch> | ||
|