forked from kirillin/tello_driver
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Addition of gamepad_teleop_node.py and joy node
- Loading branch information
1 parent
3b9399d
commit c615fd1
Showing
12 changed files
with
230 additions
and
284 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 @@ | ||
image_width: 960 | ||
image_height: 720 | ||
camera_name: camera_front | ||
camera_matrix: | ||
rows: 3 | ||
cols: 3 | ||
data: [929.562627, 0.000000, 487.474037, 0.000000, 928.604856, 363.165223, 0.000000, 0.000000, 1.000000] | ||
distortion_model: plumb_bob | ||
distortion_coefficients: | ||
rows: 1 | ||
cols: 5 | ||
data: [-0.016272, 0.093492, 0.000093, 0.002999, 0.000000] | ||
rectification_matrix: | ||
rows: 3 | ||
cols: 3 | ||
data: [1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000] | ||
projection_matrix: | ||
rows: 3 | ||
cols: 4 | ||
data: [937.878723, 0.000000, 489.753885, 0.000000, 0.000000, 939.156738, 363.172139, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000] |
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
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,21 +1,26 @@ | ||
<?xml version="1.0"?> | ||
<launch> | ||
<arg name="tello_ip" default="192.168.10.1" /> | ||
<arg name="tello_cmd_server_port" default="8889" /> | ||
<arg name="local_cmd_client_port" default="8890" /> | ||
<arg name="local_vid_server_port" default="6038" /> | ||
<arg name="namespace" default="tello" /> | ||
<arg name="tello_ip" default="192.168.10.1" /> | ||
<arg name="tello_cmd_server_port" default="8889" /> | ||
<arg name="local_cmd_client_port" default="8890" /> | ||
<arg name="local_vid_server_port" default="6038" /> | ||
<arg name="camera_calibration" default="$(find tello_driver)/cfg/960x720.yaml" /> | ||
<arg name="namespace" default="tello" /> | ||
|
||
<group ns="$(arg namespace)"> | ||
<node pkg="tello_driver" name="tello_driver_node" type="tello_driver_node.py" output="screen"> | ||
<param name="local_cmd_client_port" value="$(arg local_cmd_client_port)" /> | ||
<param name="local_vid_server_port" value="$(arg local_vid_server_port)" /> | ||
<param name="tello_ip" value="$(arg tello_ip)" /> | ||
<param name="tello_cmd_server_port" value="$(arg tello_cmd_server_port)" /> | ||
<param name="connect_timeout_sec" value="10.0" /> | ||
<param name="stream_h264_video" value="true" /> | ||
</node> | ||
<group ns="$(arg namespace)"> | ||
|
||
<node pkg="tello_driver" name="tello_driver_node" type="tello_driver_node.py" output="screen"> | ||
<param name="local_cmd_client_port" value="$(arg local_cmd_client_port)" /> | ||
<param name="local_vid_server_port" value="$(arg local_vid_server_port)" /> | ||
<param name="tello_ip" value="$(arg tello_ip)" /> | ||
<param name="tello_cmd_server_port" value="$(arg tello_cmd_server_port)" /> | ||
<param name="connect_timeout_sec" value="10.0" /> | ||
<param name="stream_h264_video" value="true" /> | ||
<param name="camera_calibration" value="$(arg camera_calibration)" /> | ||
</node> | ||
|
||
<node pkg="image_transport" name="image_compressed" type="republish" args="raw in:=image_raw compressed out:=image_raw" /> | ||
|
||
</group> | ||
|
||
<node pkg="image_transport" name="image_compressed" type="republish" args="raw in:=image_raw compressed out:=image_raw" /> | ||
</group> | ||
</launch> |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.