Skip to content

Commit

Permalink
Added debayer node
Browse files Browse the repository at this point in the history
  • Loading branch information
hilary-luo committed Sep 28, 2023
1 parent b970449 commit e9d7fc8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
8 changes: 8 additions & 0 deletions clearpath_sensors/launch/flir_blackfly.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,18 @@ def generate_launch_description():
output='screen',
)

debayer_node = Node(
package='image_proc',
namespace=namespace,
name='debayer_node',
plugin='image_proc::DebayerNode',
output='screen',
)

ld = LaunchDescription()
ld.add_action(arg_parameters)
ld.add_action(arg_param_mapping_file)
ld.add_action(arg_namespace)
ld.add_action(blackfly_camera_node)
ld.add_action(debayer_node)
return ld
1 change: 1 addition & 0 deletions clearpath_sensors/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

<exec_depend>flir_camera_description</exec_depend>
<exec_depend>flir_camera_msgs</exec_depend>
<exec_depend>image_proc</exec_depend>
<exec_depend>microstrain_inertial_driver</exec_depend>
<exec_depend>nmea_navsat_driver</exec_depend>
<exec_depend>realsense2_camera</exec_depend>
Expand Down

0 comments on commit e9d7fc8

Please sign in to comment.