-
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.
- Loading branch information
Showing
6 changed files
with
168 additions
and
39 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,2 @@ | ||
squashfs-root/ | ||
husarion-depthai* |
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 @@ | ||
services: | ||
luxonis: | ||
image: husarion/depthai:humble-2.8.1-20240127 | ||
volumes: | ||
- /dev/bus/usb:/dev/bus/usb | ||
- ./squashfs-root/usr/share/husarion-depthai/config/oak-1-low-bandwidth.yaml:/params.yaml | ||
device_cgroup_rules: | ||
- 'c 189:* rmw' | ||
command: > | ||
ros2 launch depthai_ros_driver camera.launch.py | ||
params_file:=/params.yaml |
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,96 @@ | ||
--- | ||
/oak: | ||
ros__parameters: | ||
# qos_overrides: | ||
# /oak/rgb/image_raw: | ||
# publisher: | ||
# reliability: best_effort | ||
# /oak/rgb/image_raw/compressed: | ||
# publisher: | ||
# reliability: best_effort | ||
camera: | ||
i_calibration_dump: false | ||
i_enable_imu: false | ||
i_enable_ir: false | ||
i_external_calibration_path: '' | ||
i_floodlight_brightness: 0 | ||
i_ip: '' | ||
i_laser_dot_brightness: 800 | ||
i_mx_id: '' | ||
i_nn_type: none | ||
i_pipeline_dump: false | ||
i_pipeline_type: RGB | ||
i_publish_tf_from_calibration: false | ||
i_restart_on_diagnostics_error: false | ||
i_usb_port_id: '' | ||
i_usb_speed: SUPER_PLUS | ||
diagnostic_updater: | ||
period: 1.0 | ||
imu: | ||
i_acc_cov: 0.0 | ||
i_acc_freq: 400 | ||
i_batch_report_threshold: 5 | ||
i_enable_rotation: false | ||
i_get_base_device_timestamp: false | ||
i_gyro_cov: 0.0 | ||
i_gyro_freq: 400 | ||
i_mag_cov: 0.0 | ||
i_max_batch_reports: 10 | ||
i_message_type: IMU | ||
i_rot_cov: -1.0 | ||
i_sync_method: LINEAR_INTERPOLATE_ACCEL | ||
i_update_ros_base_time_on_ros_msg: false | ||
rgb: | ||
i_add_exposure_offset: false | ||
i_board_socket_id: 0 | ||
i_calibration_file: '' | ||
i_disable_node: false | ||
i_enable_feature_tracker: false | ||
i_enable_lazy_publisher: false #true | ||
i_enable_nn: false | ||
i_enable_preview: false | ||
i_exposure_offset: 0 | ||
i_fps: 20.0 | ||
i_fsync_continuous: false | ||
i_fsync_trigger: false | ||
i_get_base_device_timestamp: false | ||
i_height: 432 #720 | ||
i_interleaved: false | ||
i_isp_den: 5 #3 #3 valid if i_output_isp: true | ||
i_isp_num: 2 #2 valid if i_output_isp: true | ||
i_keep_preview_aspect_ratio: true | ||
i_low_bandwidth: true #false | ||
i_low_bandwidth_quality: 20 | ||
i_max_q_size: 30 | ||
# i_width: 1280 #valid if i_output_isp: false | ||
# i_height: 720 #valid if i_output_isp: false | ||
# i_interleaved: false | ||
# scaling 1920x1080 1:3 to 640x360 | ||
# https://docs-beta.luxonis.com/develop/ros/depthai-ros-driver#Available%20sensors%20and%20their%20resolutions%3A | ||
# IMX378, 1080P is 1920x1080, i_isp_den=3 and i_isp_num=2 will give 1280x720 (/16=) | ||
i_output_isp: true | ||
i_preview_height: 300 | ||
i_preview_size: 300 | ||
i_preview_width: 300 | ||
i_publish_topic: true | ||
i_resolution: 1080P | ||
i_reverse_stereo_socket_order: false | ||
i_sensor_img_orientation: AUTO | ||
i_set_isp3a_fps: false | ||
i_set_isp_scale: true | ||
i_simulate_from_topic: false | ||
i_simulated_topic_name: '' | ||
i_update_ros_base_time_on_ros_msg: false | ||
i_width: 768 #1280 | ||
r_exposure: 20000 | ||
r_focus: 1 | ||
r_iso: 800 | ||
r_set_man_exposure: false | ||
r_set_man_focus: false | ||
r_set_man_whitebalance: false | ||
r_whitebalance: 3300 | ||
ffmpeg_image_transport: | ||
encoding: libx264 | ||
preset: ultrafast | ||
tune: zerolatency | ||
use_sim_time: false |
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