ChkCreate_ADASGroundTruthObjectsSpeedViolation, chkStart_ADASGroundTruthObjectsSpeedViolation
Valid for: CANoe DE • CANoe4SW DE Changes This function was renamed from chkCreate_ADASSpeedToObjectsViolation/chkStart_ADASSpeedToObjectsViolation in version 16 SP3.Function Syntax
dword chkCreate_ADASGroundTruthObjectsSpeedViolation (dword underOver, float threshold); // form 1dword chkCreate_ADASGroundTruthObjectsSpeedViolation (dword underOver, float threshold, char* callback); // form 2dword chkCreate_ADASGroundTruthObjectsSpeedViolation (dword underOver, float threshold, int64 laneId, int64 movingObjectId); // form 3dword chkCreate_ADASGroundTruthObjectsSpeedViolation (dword underOver, float threshold, int64 laneId, int64 movingObjectId, char* callback); // form 4dword chkStart_ADASGroundTruthObjectsSpeedViolation (dword underOver, float threshold); // form 5dword chkStart_ADASGroundTruthObjectsSpeedViolation (dword underOver, float threshold, char* callback); // form 6dword chkStart_ADASGroundTruthObjectsSpeedViolation (dword underOver, float threshold, int64 laneId, int64 movingObjectId); // form 7dword chkStart_ADASGroundTruthObjectsSpeedViolation (dword underOver, float threshold, int64 laneId, int64 movingObjectId, char* callback); // form 8
Constructor
TestCheck::CreateADASGroundTruthObjectsSpeedViolation (dword underOver, float threshold);TestCheck::CreateADASGroundTruthObjectsSpeedViolation (dword underOver, float threshold, char* callback);TestCheck::CreateADASGroundTruthObjectsSpeedViolation (dword underOver, float threshold, int64 laneId, int64 movingObjectId);TestCheck::CreateADASGroundTruthObjectsSpeedViolation (dword underOver, float threshold, int64 laneId, int64 movingObjectId, char* callback);TestCheck::StartADASGroundTruthObjectsSpeedViolation (dword underOver, float threshold);TestCheck::StartADASGroundTruthObjectsSpeedViolation (dword underOver, float threshold, char* callback);TestCheck::StartADASGroundTruthObjectsSpeedViolation (dword underOver, float threshold, int64 laneId, int64 movingObjectId);TestCheck::StartADASGroundTruthObjectsSpeedViolation (dword underOver, float threshold, int64 laneId, int64 movingObjectId, char* callback);
Check Name
ADAS Ground Truth Objects Speed ObservationDescription
Observes the relative speed of the Moving Objects to the EgoVehicle. The check fires an event if the speed conditions passed as arguments are fulfilled.Parameters
- overUnder: Specifies if the distance violation is over or under the specified value.
- threshold: Specified value that determines the maximum or minimum speed. An object moving towards the EgoVehicle has a negative relative speed. An object moving away from the EgoVehicle has a positive relative speed. The speed is specified in m/s.
- laneId: Only Moving Objects on the lane with the given laneId will be checked. If no laneId is given or the laneId is -1, only the lane of the EgoVehicle will be considered.
- movingObjectId: GroundTruthId of the moving object. Only the distance to this Moving Object will be checked. If the value -1 is given, all Moving Objects will be checked.
- callback: This parameter is optional. Name of the callback which is called when the check fails. Signature:
void Callback( dword checkId )orvoid Callback( TestCheck check )
Return Values
- 0: Check could not be created and must not be referenced
- > 0: Check was created successfully and may be referenced using the returned (handle-) value.
Possible Errors
- EgoVehicle is undefined.
- CAPL callback does not exist.