Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added user set control examples for blackfly/blackfly_s #179

Merged
merged 1 commit into from
May 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions spinnaker_camera_driver/config/blackfly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,20 @@

parameters:
#
# -------- user set control
#
- name: default_user_set
type: enum
# allowed values: UserSet0 UserSet1
node: UserSetControl/DefaultUserSet
- name: user_set_selector
type: enum
# allowed values: UserSet0 UserSet1
node: UserSetControl/UserSetSelector
- name: user_set_load
type: command
node: UserSetControl/UserSetLoad
#
# -------- image format control
#
- name: pixel_format
Expand Down
14 changes: 14 additions & 0 deletions spinnaker_camera_driver/config/blackfly_s.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,20 @@

parameters:
#
# -------- user set control
#
- name: default_user_set
type: enum
# allowed values: UserSet0 UserSet1
node: UserSetControl/DefaultUserSet
- name: user_set_selector
type: enum
# allowed values: UserSet0 UserSet1
node: UserSetControl/UserSetSelector
- name: user_set_load
type: command
node: UserSetControl/UserSetLoad
#
# -------- image format control
#
- name: pixel_format
Expand Down
3 changes: 3 additions & 0 deletions spinnaker_camera_driver/launch/driver_node.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@
'gain_auto': 'Continuous',
# 'pixel_format': 'BayerRG8',
'exposure_auto': 'Continuous',
# to use a user set, do this:
'user_set_selector': 'UserSet0',
'user_set_load': 'Yes',
# These are useful for GigE cameras
# 'device_link_throughput_limit': 380000000,
# 'gev_scps_packet_size': 9000,
Expand Down
Loading