DriveWorks SDK Reference
5.16.65 Release
For Test and Development only

DopplerMotionEstimator.h
Go to the documentation of this file.
1
2//
3// Notice
4// ALL NVIDIA DESIGN SPECIFICATIONS AND CODE ("MATERIALS") ARE PROVIDED "AS IS" NVIDIA MAKES
5// NO REPRESENTATIONS, WARRANTIES, EXPRESSED, IMPLIED, STATUTORY, OR OTHERWISE WITH RESPECT TO
6// THE MATERIALS, AND EXPRESSLY DISCLAIMS ANY IMPLIED WARRANTIES OF NONINFRINGEMENT,
7// MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.
8//
9// NVIDIA CORPORATION & AFFILIATES assumes no responsibility for the consequences of use of such
10// information or for any infringement of patents or other rights of third parties that may
11// result from its use. No license is granted by implication or otherwise under any patent
12// or patent rights of NVIDIA CORPORATION & AFFILIATES. No third party distribution is allowed unless
13// expressly authorized by NVIDIA. Details are subject to change without notice.
14// This code supersedes and replaces all information previously supplied.
15// NVIDIA CORPORATION & AFFILIATES products are not authorized for use as critical
16// components in life support devices or systems without express written approval of
17// NVIDIA CORPORATION & AFFILIATES.
18//
19// SPDX-FileCopyrightText: Copyright (c) 2018-2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
20// SPDX-License-Identifier: LicenseRef-NvidiaProprietary
21//
22// NVIDIA CORPORATION, its affiliates and licensors retain all intellectual
23// property and proprietary rights in and to this material, related
24// documentation and any modifications thereto. Any use, reproduction,
25// disclosure or distribution of this material and related documentation
26// without an express license agreement from NVIDIA CORPORATION or
27// its affiliates is strictly prohibited.
28//
30
48#ifndef DW_EGOMOTION_RADAR_DOPPLERMOTIONESTIMATOR_H__
49#define DW_EGOMOTION_RADAR_DOPPLERMOTIONESTIMATOR_H__
50
54#include <dw/rig/Vehicle.h>
55
57
58#ifdef __cplusplus
59extern "C" {
60#endif
61
63typedef struct dwRadarDopplerMotionObject* dwRadarDopplerMotionHandle_t;
64
79 const dwRadarDopplerMotionParams* params,
80 cudaStream_t stream,
82
93
108
122
139
155 dwVehicleIONonSafetyState const* nonSafeState,
156 dwVehicleIOActuationFeedback const* actuationFeedback,
158
174
185
196
197#ifdef __cplusplus
198}
199#endif
202#endif // DW_EGOMOTION_RADAR_DOPPLERMOTIONESTIMATOR_H__
NVIDIA DriveWorks API: Core Methods
Defines the radar motion.
Parameters that control the initialization of RadarDopplerMotion module.
dwStatus
Status definition.
Definition: ErrorDefs.h:44
NVIDIA DriveWorks API: Radar
NVIDIA DriveWorks API: VehicleIO VAL interface structures
NVIDIA DriveWorks API: Vehicle Parameters
struct dwRadarDopplerMotionObject * dwRadarDopplerMotionHandle_t
Handle to a radar-motion module object.
DW_API_PUBLIC dwStatus dwRadarDopplerMotion_processAsync(const dwRadarScan *radarScan, dwRadarDopplerMotionHandle_t obj)
Process the dwRadarScan and compute the radar motion.
DW_API_PUBLIC dwStatus dwRadarDopplerMotion_getMotion(dwRadarDopplerMotion *motion, dwRadarDopplerMotionHandle_t obj)
Gets the available radar motion estimation result.
DW_API_PUBLIC dwStatus dwRadarDopplerMotion_reset(dwRadarDopplerMotionHandle_t obj)
Resets the radar Doppler motion module.
DW_API_PUBLIC dwStatus dwRadarDopplerMotion_release(dwRadarDopplerMotionHandle_t obj)
Releases the radar Doppler motion module.
DW_API_PUBLIC dwStatus dwRadarDopplerMotion_initialize(dwRadarDopplerMotionHandle_t *obj, const dwRadarDopplerMotionParams *params, cudaStream_t stream, dwContextHandle_t ctx)
Creates and initializes a GPU-based radar motion estimation module.
DW_API_PUBLIC dwStatus dwRadarDopplerMotion_addVehicleIOState(dwVehicleIOSafetyState const *safeState, dwVehicleIONonSafetyState const *nonSafeState, dwVehicleIOActuationFeedback const *actuationFeedback, dwRadarDopplerMotionHandle_t obj)
Notifies the radar module of a changed vehicle state.
DW_API_PUBLIC dwStatus dwRadarDopplerMotion_getCUDAStream(cudaStream_t *stream, dwRadarDopplerMotionHandle_t obj)
Gets CUDA stream used by the radar Doppler motion.
DW_API_PUBLIC dwStatus dwRadarDopplerMotion_setCUDAStream(cudaStream_t stream, dwRadarDopplerMotionHandle_t obj)
Sets the CUDA stream for CUDA related operations.
DW_API_PUBLIC dwStatus dwRadarDopplerMotion_getDefaultParams(dwRadarDopplerMotionParams *params)
Get the default Radar Doppler motion parameters.
Non-safety critical RoV state.
Safety critical VIO state.
struct dwContextObject * dwContextHandle_t
Context handle.
Definition: Context.h:86
#define DW_API_PUBLIC
Definition: Exports.h:56
Defines the structure for a complete radar scan.
Definition: Radar.h:63