31#ifndef DWFRAMEWORK_DWNODES_SELFCALIBRATION_DWSELFCALIBRATIONCAMERANODE_DWSELFCALIBRATIONCAMERANODE_HPP_
32#define DWFRAMEWORK_DWNODES_SELFCALIBRATION_DWSELFCALIBRATIONCAMERANODE_DWSELFCALIBRATIONCAMERANODE_HPP_
34#include <dw/calibration/cameramodel/CameraModel.h>
35#include <dw/calibration/engine/common/SelfCalibrationCameraDiagnostics.h>
43#include <dwframework/dwnodes/common/channelpackets/EgomotionState.hpp>
44#include <dwframework/dwnodes/common/channelpackets/FeatureList.hpp>
45#include <dwframework/dwnodes/common/channelpackets/SelfCalibrationTypes.hpp>
46#include <dwframework/dwnodes/common/channelpackets/SensorCommonTypes.hpp>
47#include <dwframework/dwnodes/common/channelpackets/VehicleIOValStructures.hpp>
48#include <dwframework/dwnodes/common/SelfCalibrationTypes.hpp>
49#include <dwframework/dwnodes/selfcalibration/common/NodeCommonParams.hpp>
89 static constexpr char8_t LOG_TAG[]{
"dwSelfCalibrationCameraNode"};
120 describePass(StringView{
"SETUP"}, DW_PROCESSOR_TYPE_CPU),
121 describePass(StringView{
"PROCESS_NONCAMERA"}, DW_PROCESSOR_TYPE_CPU),
122 describePass(StringView{
"PROCESS_CAMERA_GPU_ASYNC"}, DW_PROCESSOR_TYPE_GPU),
123 describePass(StringView{
"PROCESS_CAMERA_CPU_SYNC"}, DW_PROCESSOR_TYPE_CPU),
124 describePass(StringView{
"TEARDOWN"}, DW_PROCESSOR_TYPE_CPU));
135 describeConstructorArgument<dwSelfCalibrationCameraNodeParams>(
145 "enableCalibration"_sv,
149 "cameraCalibrationMethod"_sv,
153 "cameraCalibrationSignals"_sv,
157 "rotationHistogramRangeDeg"_sv,
161 "channelFifoSize"_sv,
168 dw::core::FixedString<64>,
169 "calibrationSaveFileSuffix"_sv,
173 "loadStateOnStartup"_sv,
179 "cameraSensorStreamIndex"_sv,
183 "nvSciChannelWaitTimeUs"_sv,
186 describeConstructorArgument<dwContextHandle_t>(
188 dwContextHandle_t)));
#define DW_DESCRIBE_INDEX_PARAMETER(TYPE_NAME, args...)
#define DW_DESCRIBE_PARAMETER_WITH_DEFAULT(TYPE_NAME, args...)
#define DW_DESCRIBE_UNNAMED_PARAMETER_WITH_SEMANTIC(TYPE_NAME, SEMANTIC_TYPE_NAME, args...)
#define DW_DESCRIBE_UNNAMED_PARAMETER(TYPE_NAME, args...)
#define DW_DESCRIBE_PARAMETER(TYPE_NAME, args...)
#define DW_DESCRIBE_PORT(TYPE_NAME, NAME, args...)
The interface to access parameter values identified by name and/or (semantic) type.
This node computes the camera's extrinsic properties (rotation+translation) with respect to the confi...
static constexpr char8_t LOG_TAG[]
dwSelfCalibrationCameraNode(dwSelfCalibrationCameraNodeParams const ¶m, dwContextHandle_t const ctx)
static constexpr auto describeOutputPorts()
static constexpr auto describePasses()
void onChannelsConnected() override
static constexpr auto describeInputPorts()
static constexpr auto describeParameters()
static std::unique_ptr< dwSelfCalibrationCameraNode > create(ParameterProvider const &provider)
constexpr std::tuple describeConstructorArguments()
dwConstRigHandle_t rigHandle
Rig handle.
char8_t const * calibrationOutputFileName
Output path where calibration overlay will be written, used to determine the location where calibrati...
CameraCalibrationParameters cameraParams
Camera calibration parameters.
dw::core::FixedString< 64 > calibrationSaveFileSuffix
Output file suffix.
size_t sensorIndex
Sensor type index (e.g. camera [0-12]), provided as parameter.
uint32_t channelFifoSize
Size of the input channel FIFO queues (must be >0)
cudaStream_t cudaStream
CUDA stream used for GPU computations.
constexpr PassDescriptorT< 0 > describePass(dw::core::StringView &&name, dwProcessorType processorType)
bool enableCalibration
Flag to enable and disable calibration.
dwTime_t nvSciChannelWaitTimeUs
Wait time for nvSciChannel.
constexpr auto describePassCollection(const Args &&... args) -> std::tuple< Args... >
constexpr auto describePortCollection(Args &&... args) -> dw::core::Tuple< Args... >
uint64_t stateWriteTimerPeriodInCycles
How often to serialize in node pass cycles. 0 means turn off serialization.
bool loadStateOnStartup
Flag to enable loading of stored calibration state on startup.
uint64_t stateWriteTimerOffsetInCycles
Offset, in cycles, for the write counter. The intention is to allow to delay the first write (and sub...
uint32_t sensorRigIndex
Sensor rig index (e.g. sensor [0-127]), auto-populated by RR2 Loader.
Parameters for dwSelfCalibrationCameraNode.