Skip to content
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
11 changes: 11 additions & 0 deletions protobuf_definitions/control.proto
Original file line number Diff line number Diff line change
Expand Up @@ -229,10 +229,21 @@ message FormatRemovableStorageDeviceCtrl {
}

// Message sent when the user wants to set turbidity filter settings.
// Uses CLAHE to enhance the contrast of the video, which can make it easier to see details in turbid water.
// Only supported on X3 Ultra.
message SetTurbidityFilterCtrl {
FilterMessage turbidity_filter = 1; // Message with the turbidity filter settings to set.
}

// Message sent when the user wants to set color correction settings.
// Applies depth- and scene-driven underwater color correction, restoring the
// red/blue balance lost with depth. The intensity field scales the correction
// (0.0 = off/identity, 1.0 = full).
// Only supported on X3 Ultra.
message SetColorCorrectionCtrl {
FilterMessage color_correction_filter = 1; // Message with the color correction settings to set.
}

// Issue a command to set the digital pan, tilt, and zoom of the main camera.
//
// Only supported on X3 Ultra.
Expand Down
7 changes: 7 additions & 0 deletions protobuf_definitions/telemetry.proto
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,13 @@ message TurbidityFilterTel {
FilterMessage turbidity_filter = 1; // Turbidity filter settings.
}

// Color correction settings telemetry message.
//
// Message is published when the filter settings are changed.
message ColorCorrectionTel {
FilterMessage color_correction_filter = 1; // Color correction settings.
}

// Digital pan, tilt, and zoom telemetry from the main camera.
//
// Reports the actual pan, tilt, and zoom state of the camera.
Expand Down
Loading