NVIDIA DriveOS Linux NSR SDK API Reference

7.0.3.0 Release
StereoParams.h
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: Copyright (c) 2018-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
3  * SPDX-License-Identifier: LicenseRef-NvidiaProprietary
4  *
5  * NVIDIA CORPORATION, its affiliates and licensors retain all intellectual
6  * property and proprietary rights in and to this material, related
7  * documentation and any modifications thereto. Any use, reproduction,
8  * disclosure or distribution of this material and related documentation
9  * without an express license agreement from NVIDIA CORPORATION or
10  * its affiliates is strictly prohibited.
11  */
12 
22 #ifndef DW_CALIBRATION_ENGINE_STEREO_STEREOPARAMS_H_
23 #define DW_CALIBRATION_ENGINE_STEREO_STEREOPARAMS_H_
24 
25 #include <dw/calibration/engine/common/CalibrationTypes.h>
26 #include <dw/calibration/cameramodel/CameraModel.h>
27 
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31 
37 {
38  struct
39  {
41  uint32_t maxMatchesCount;
42  } epipolar;
43 
52 
54  void* userData;
55 
60 
61 #ifdef __cplusplus
62 } // extern C
63 #endif
64 
66 #endif // DW_CALIBRATION_STEREO_STEREOPARAMS_H_
dwCameraModelHandle_t
struct dwCameraModelObject * dwCameraModelHandle_t
A pointer to the handle representing a calibrated camera model.
Definition: CameraModel.h:50
dwCalibrationStereoParams
struct dwCalibrationStereoParams dwCalibrationStereoParams
Calibration parameters for calibrating a stereo sensor.
dwCalibrationStatusChanged
void(* dwCalibrationStatusChanged)(dwCalibrationRoutineHandle_t routine, dwCalibrationStatus status, void *userData)
Defines a callback function that is called when calibration routine has changed its internal status.
Definition: CalibrationTypes.h:72
dwCalibrationStereoParams::onChanged
dwCalibrationStatusChanged onChanged
An optional pointer to a function that will be called when the calibration status of a routine has ch...
Definition: StereoParams.h:58
dwCalibrationStereoParams::epipolar
struct dwCalibrationStereoParams::@31 epipolar
dwCalibrationStereoParams::calibratedRightCamera
dwCameraModelHandle_t calibratedRightCamera
Definition: StereoParams.h:51
dwCalibrationStereoParams::calibratedLeftCamera
dwCameraModelHandle_t calibratedLeftCamera
A handle for each calibrated camera to use in the stereo calibration routine.
Definition: StereoParams.h:50
dwCalibrationStereoParams::maxMatchesCount
uint32_t maxMatchesCount
The maximum number of matches of the camera pair.
Definition: StereoParams.h:41
dwCalibrationStereoParams::userData
void * userData
A pointer to user data that will be passed along when a sensor calibration data has been changed.
Definition: StereoParams.h:54
dwCalibrationStereoParams
Calibration parameters for calibrating a stereo sensor.
Definition: StereoParams.h:36