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

Update chameleon config params #218

Merged
Merged
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
36 changes: 23 additions & 13 deletions spinnaker_camera_driver/config/chameleon.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,34 @@ parameters:
#
# --------- image format control
#
- name: offset_x
type: int
node: ImageFormatControl/OffsetX
- name: offset_y
type: int
node: ImageFormatControl/OffsetY
- name: pixel_format
type: enum
# Check available values with SpinView. Not all are supported by ROS!
# Some formats are e.g. "Mono8", "BayerRG8", "BGR8", "BayerRG16"
# default is "BayerRG8"
node: ImageFormatControl/PixelFormat
- name: image_width
type: int
node: ImageFormatControl/Width
- name: image_height
type: int
node: ImageFormatControl/Height
- name: pixel_format
- name: offset_x
type: int
node: ImageFormatControl/OffsetX
- name: offset_y
type: int
node: ImageFormatControl/OffsetY
- name: reverse_x
type: bool
node: ImageFormatControl/ReverseX
- name: reverse_y
type: bool
node: ImageFormatControl/ReverseY
- name: video_mode
type: enum
# Check available values with SpinView. Not all are supported by ROS!
# Some formats are e.g. "Mono8", "BayerRG8", "BGR8", "BayerRG16"
# default is "BayerRG8"
node: ImageFormatControl/PixelFormat
# allowed video modes: Mode0, Mode4, Mode5, Mode7
node: ImageFormatControl/VideoMode
#
# -------- analog control
#
Expand Down Expand Up @@ -82,11 +92,11 @@ parameters:
- name: frame_rate
type: float
node: AcquisitionControl/AcquisitionFrameRate
- name: trigger_selector # NOT TESTED
- name: trigger_selector
type: enum
# valid values are e.g. "FrameStart", "ExposureActive"
node: AcquisitionControl/TriggerSelector
- name: trigger_source # NOT TESTED
- name: trigger_source
type: enum
# valid values are "Software", "Line<0,2,3>"
node: AcquisitionControl/TriggerSource
Expand Down
Loading