-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added the function for load ros calibration file by using cameraInfoM…
…anager
- Loading branch information
Di Zeng
committed
Jul 18, 2016
1 parent
5a73ad9
commit d7ba5d0
Showing
4 changed files
with
147 additions
and
145 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,6 +1,6 @@ | ||
image_width: 1280 | ||
image_height: 720 | ||
camera_name: zed/left | ||
camera_name: camera | ||
camera_matrix: | ||
rows: 3 | ||
cols: 3 | ||
|
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,6 +1,6 @@ | ||
image_width: 1280 | ||
image_height: 720 | ||
camera_name: zed/right | ||
camera_name: camera | ||
camera_matrix: | ||
rows: 3 | ||
cols: 3 | ||
|
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 @@ | ||
<launch> | ||
<arg name="size" default="8x6"/> | ||
<arg name="square" default="0.108"/> | ||
<arg name="no-service-check" default="true"/> | ||
|
||
<node pkg="camera_calibration" type="cameracalibrator.py" name="camera_calibration" output="screen" args="--size $(arg size) --square $(arg square) --no-service-check"> | ||
<remap from="right" to="/camera/right/image_raw"/> | ||
<remap from="left" to="/camera/left/image_raw"/> | ||
<param name="size" value="8x6"/> | ||
</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