• <xmp id="om0om">
  • <table id="om0om"><noscript id="om0om"></noscript></table>
  • Compute Graph Framework SDK Reference  5.22
    All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
    dwCameraChannelNode.hpp
    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-2024 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
    31#ifndef DW_FRAMEWORK_CAMERA_NODE_HPP_
    32#define DW_FRAMEWORK_CAMERA_NODE_HPP_
    33
    34#include <dwcgf/node/Node.hpp>
    37#include <dwcgf/port/Port.hpp>
    39#include <dwcgf/pass/Pass.hpp>
    41
    42#include <dwframework/dwnodes/common/SensorCommonTypes.hpp>
    43/* Need to include the appropriate ChannelPacketTypes.hpp since port initialization requires
    44 the parameter_trait overrides. Otherwise, it will be considered as a packet of generic type. */
    45// #include <dwframework/dwnodes/common/ChannelPacketTypes.hpp>
    47#include <dwframework/dwnodes/common/channelpackets/SelfCalibrationTypes.hpp>
    48#include <dwframework/dwnodes/common/channelpackets/Rig.hpp>
    49
    50#include <dw/sensors/common/Sensors.h>
    51#include <dw/sensors/common/SensorExtras.h>
    52#include <dw/sensors/common/SensorStats.h>
    53#include <dw/sensors/camera/Camera.h>
    54
    55#include <nvmedia_6x/nvmedia_ldc.h>
    56
    57namespace dw
    58{
    59namespace framework
    60{
    61
    62class dwCameraChannelNodeImpl;
    63
    64template <>
    65struct EnumDescription<dwSensorTsAndIDSource>
    66{
    68 {
    69 return describeEnumeratorCollection<dwSensorTsAndIDSource>(
    70 DW_DESCRIBE_C_ENUMERATOR(DW_SENSOR_TS_AND_ID_SOURCE_UNSPECIFIED),
    71 DW_DESCRIBE_C_ENUMERATOR(DW_SENSOR_TS_AND_ID_SOURCE_SENSOR),
    72 DW_DESCRIBE_C_ENUMERATOR(DW_SENSOR_TS_AND_ID_SOURCE_SVS),
    73 DW_DESCRIBE_C_ENUMERATOR(DW_SENSOR_TS_AND_ID_SOURCE_SENSORSERVICE));
    74 }
    75};
    76
    78{
    79 char8_t const* sensorName;
    80 cudaStream_t cudaStream;
    82 dwConstRigHandle_t rig;
    83 dwSALHandle_t sal;
    84 dw::core::FixedString<32> frameSkipMask;
    85 dwImageProperties imageProperties;
    86 NvMediaLdc* nvmLdc;
    88 dwSensorTsAndIDSource dataSource;
    89};
    90
    92{
    93public:
    94 // coverity[autosar_cpp14_a0_1_1_violation] FP: nvbugs/2980283
    95 // coverity[autosar_cpp14_m0_1_4_violation] FP: nvbugs/2980283
    96 static constexpr char LOG_TAG[] = "dwCameraChannelNode";
    97
    98 // coverity[autosar_cpp14_a7_1_5_violation] RFD Accepted: TID-1984
    99 static constexpr auto describeInputPorts()
    100 {
    101 // coverity[autosar_cpp14_a5_2_2_violation] RFD Pending: TID-1983
    103 DW_DESCRIBE_PORT(dwCalibratedExtrinsics, "SENSOR_EXTRINSICS"_sv),
    104 DW_DESCRIBE_PORT(dwTime_t, "VIRTUAL_SYNC_TIME"_sv),
    105 DW_DESCRIBE_PORT(dwImageHandle_t, "IMAGE_NATIVE_PROCESSED"_sv));
    106 };
    107 // coverity[autosar_cpp14_a7_1_5_violation] RFD Accepted: TID-1984
    108 static constexpr auto describeOutputPorts()
    109 {
    110 // coverity[autosar_cpp14_a5_2_2_violation] RFD Pending: TID-1983
    112 DW_DESCRIBE_PORT(dwSensorNodeProperties, "SENSOR_PROPERTIES"_sv),
    113 DW_DESCRIBE_PORT(dwCalibratedExtrinsics, "SENSOR_EXTRINSICS"_sv),
    114 DW_DESCRIBE_PORT(dwFThetaCameraConfig, "INTRINSICS"_sv),
    115 DW_DESCRIBE_PORT(dwImageHandle_t, "IMAGE_NATIVE_PROCESSED"_sv),
    116 DW_DESCRIBE_PORT(dwTime_t, "IMAGE_TIMESTAMP"_sv),
    117 DW_DESCRIBE_PORT(dwTime_t, "NEXT_IMAGE_TIMESTAMP"_sv),
    118 DW_DESCRIBE_PORT(dwSensorStats, "SENSOR_STATS"_sv),
    119 DW_DESCRIBE_PORT(dwSensorTsAndID, "IMAGE_TIMESTAMP_AND_ID"_sv));
    120 };
    121
    122 // coverity[autosar_cpp14_a7_1_5_violation] RFD Accepted: TID-1984
    123 static constexpr auto describePasses()
    124 {
    125 // coverity[autosar_cpp14_a5_2_2_violation] RFD Pending: TID-1983
    127 describePass(StringView{"SETUP"}, DW_PROCESSOR_TYPE_CPU),
    128 describePass(StringView{"PROCESSED_OUTPUT"}, DW_PROCESSOR_TYPE_GPU),
    129 describePass(StringView{"TEARDOWN"}, DW_PROCESSOR_TYPE_CPU));
    130 };
    131
    132 dwSensorType getSensorType() const
    133 {
    134 return DW_SENSOR_CAMERA;
    135 }
    136
    140 void onChannelsConnected() override
    141 {
    142 IChannelsConnectedListener* channelConnectListnerNode{nullptr};
    143 channelConnectListnerNode = dynamic_cast<IChannelsConnectedListener*>(m_impl.get());
    144 if (channelConnectListnerNode)
    145 {
    146 // coverity[cert_exp39_c_violation] FP: nvbugs/3746116
    147 return channelConnectListnerNode->onChannelsConnected();
    148 }
    149 return;
    150 }
    151
    152 static std::unique_ptr<dwCameraChannelNode> create(ParameterProvider& provider);
    153
    154 // coverity[autosar_cpp14_a7_1_5_violation] RFD Accepted: TID-1984
    155 static constexpr auto describeParameters()
    156 {
    157 // coverity[autosar_cpp14_a5_2_2_violation] RFD Pending: TID-1983
    159 describeConstructorArgument<dwCameraChannelNodeParams>(
    161 const char*,
    163 "cameraIndex"_sv,
    166 dwImageProperties,
    168 "cameraIndex"_sv,
    170#if defined(VIBRANTE)
    172 NvMediaLdc*,
    175#endif
    177 cudaStream_t,
    178 "streamIndex"_sv,
    181 bool,
    182 "useEEPROMIntrinsics"_sv,
    185 dwConstRigHandle_t,
    188 dwSALHandle_t,
    191 bool,
    192 "errorHandlingEnabled"_sv,
    193 false,
    196 dwSensorTsAndIDSource,
    197 "dataSource"_sv,
    198 DW_SENSOR_TS_AND_ID_SOURCE_SENSOR,
    200 describeConstructorArgument<dwContextHandle_t>(
    202 dwContextHandle_t)));
    203 }
    204
    206 const dwContextHandle_t ctx);
    207};
    208} // namespace framework
    209} // namespace dw
    210#endif // DW_FRAMEWORK_CAMERA_NODE_HPP_
    #define DW_DESCRIBE_C_ENUMERATOR(NAME)
    Syntactic sugar calling describeEnumerator().
    #define DW_DESCRIBE_INDEX_PARAMETER_WITH_SEMANTIC(TYPE_NAME, SEMANTIC_TYPE_NAME, args...)
    #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...)
    virtual void onChannelsConnected()=0
    Callback received after channels are connected.
    The interface to access parameter values identified by name and/or (semantic) type.
    static constexpr auto describeInputPorts()
    dwCameraChannelNode(dwCameraChannelNodeParams const &params, const dwContextHandle_t ctx)
    static std::unique_ptr< dwCameraChannelNode > create(ParameterProvider &provider)
    static constexpr auto describeOutputPorts()
    static constexpr auto describeParameters()
    constexpr std::tuple describeConstructorArguments()
    constexpr PassDescriptorT< 0 > describePass(dw::core::StringView &&name, dwProcessorType processorType)
    constexpr auto describePassCollection(const Args &&... args) -> std::tuple< Args... >
    constexpr auto describePortCollection(Args &&... args) -> dw::core::Tuple< Args... >
    std::array< std::pair< dw::core::StringView, EnumT >, NumberOfEnumerators > EnumDescriptionReturnType
    Definition: Buffer.hpp:41
    static constexpr EnumDescriptionReturnType< dwSensorTsAndIDSource, 4 > get()
    人人超碰97caoporen国产