Skip to content

Adding the missing field for echo pulse width to logical detections #590

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

Merged
merged 1 commit into from
Mar 13, 2023
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
18 changes: 18 additions & 0 deletions osi_logicaldetectiondata.proto
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,24 @@ message LogicalDetection
// Basic classification of the logical detection.
//
optional LogicalDetectionClassification classification = 11;

// Echo pulse width of the logical detection's echo.
// Several sensors output an echo pulse width instead of an intensity for each individual detection.
// The echo pulse is measured in m and measures the extent of the object parts or atmospheric particles that produce the echo.
// \note For more details see [1] Fig. 7 and 8.
// \note Fig. 7 shows an example where the two echos are reflected from the edges A-B and C-D.
// \note Fig. 8 shows how the echo pulse width is measured as the range between the rising edge and the falling edge that crosses the intensity threshold.
//
// Unit: m
//
// \rules
// is_greater_than_or_equal_to: 0
// \endrules
//
// \par Reference:
// [1] Rosenberger, P., Holder, M.F., Cianciaruso, N. et al. (2020). <em>Sequential lidar sensor system simulation: a modular approach for simulation-based safety validation of automated driving</em> Automot. Engine Technol. 5, Fig 7, Fig 8. Retrieved May 10, 2021, from https://doi.org/10.1007/s41104-020-00066-x
//
optional double echo_pulse_width = 12;
}

// Definition of basic logical detection classifications.
Expand Down