• <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
    dwFeatureDetectorNode.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) 2019-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 DWFRAMEWORK_DWNODES_IMAGEPROCESSING_DWFEATUREDETECTORNODE_DWFEATUREDETECTORNODE_HPP_
    32#define DWFRAMEWORK_DWNODES_IMAGEPROCESSING_DWFEATUREDETECTORNODE_DWFEATUREDETECTORNODE_HPP_
    33
    34#include <dw/imageprocessing/featuredetector/FeatureDetector_processpipeline.h>
    35#include <dw/imageprocessing/features/FeatureList.h>
    36#include <dwcgf/node/Node.hpp>
    40#include <dwcgf/port/Port.hpp>
    42#include <dwframework/dwnodes/common/channelpackets/FeatureList.hpp>
    43#include <dwframework/dwnodes/common/channelpackets/Pyramid.hpp>
    44#include <dwframework/dwnodes/common/channelpackets/SensorCommonTypes.hpp>
    45
    46namespace dw
    47{
    48namespace framework
    49{
    50
    52{
    53 //mask to ignore
    54 uint8_t* d_mask;
    56 uint32_t maskWidth;
    57 uint32_t maskHeight;
    58 cudaStream_t cudaStream;
    59};
    60
    62{
    63 bool initForCamera;
    64 dwCameraModelHandle_t intrinsic;
    65 dwTransformation3f extrinsic;
    66 cupvaStream_t cupvastream;
    67 dwFeature2DDetectorConfig dwDetectorParams;
    69};
    70
    72{
    73public:
    74 // coverity[autosar_cpp14_a7_1_5_violation] RFD Accepted: TID-2201
    75 static constexpr auto describeInputPorts()
    76 {
    77 // TODO(csketch): RFD -- user defined literal being interpreted as c style cast.
    78 // coverity[autosar_cpp14_a5_2_2_violation] RFD Pending: TID-1983
    80 DW_DESCRIBE_PORT(dwPyramidImage, "PYRAMID"_sv, PortBinding::REQUIRED),
    81 DW_DESCRIBE_PORT(dwFeatureHistoryArray, "PREDICTED_FEATURE"_sv, PortBinding::REQUIRED),
    82 DW_DESCRIBE_PORT(dwFeatureNccScores, "NCC_SCORES"_sv, PortBinding::REQUIRED));
    83 };
    84 // coverity[autosar_cpp14_a7_1_5_violation] RFD Accepted: TID-2201
    85 static constexpr auto describeOutputPorts()
    86 {
    87 // TODO(csketch): RFD -- user defined literal being interpreted as c style cast.
    88 // coverity[autosar_cpp14_a5_2_2_violation] RFD Pending: TID-1983
    90 DW_DESCRIBE_PORT(dwFeatureArray, "FEATURE_ARRAY_GPU"_sv, PortBinding::REQUIRED));
    91 };
    92
    94};
    95
    97{
    98
    99public:
    100 // TODO(csketch): FP -- This is used when the logger is called and not just at assignment.
    101 // coverity[autosar_cpp14_a0_1_1_violation] FP: nvbugs/2980283
    102 // coverity[autosar_cpp14_m0_1_4_violation] FP: nvbugs/2980283
    103 static constexpr char8_t LOG_TAG[]{"dwFeatureDetectorNode"};
    104
    105 // coverity[autosar_cpp14_a7_1_5_violation] RFD Accepted: TID-2201
    106 static constexpr auto describePasses()
    107 {
    109 describePass(StringView{"SETUP"}, DW_PROCESSOR_TYPE_CPU),
    110 describePass(StringView{"DETECT_NEW_FEATURE"}, DW_PROCESSOR_TYPE_GPU),
    111 describePass(StringView{"TEARDOWN"}, DW_PROCESSOR_TYPE_CPU));
    112 };
    113
    114 static std::unique_ptr<dwFeatureDetectorNode> create(ParameterProvider& provider);
    115
    116 // coverity[autosar_cpp14_a7_1_5_violation] RFD Accepted: TID-2201
    117 static constexpr auto describeParameters()
    118 {
    119 // TODO(csketch): RFD -- user defined literal being interpreted as c style cast.
    120 // coverity[autosar_cpp14_a5_2_2_violation] RFD Pending: TID-1983
    122 describeConstructorArgument<dwFeatureDetectorNodeParams>(
    124 bool,
    125 "initForCamera"_sv,
    126 &dwFeatureDetectorNodeParams::initForCamera),
    128 dwCameraModelHandle_t,
    129 "cameraIndex"_sv,
    132 dwTransformation3f,
    134 "cameraIndex"_sv,
    137 dwFeature2DDetectorType,
    138 "featureDetectorType"_sv,
    139 &dwFeatureDetectorNodeParams::dwDetectorParams, &dwFeature2DDetectorConfig::type),
    141 uint32_t,
    143 "cameraIndex"_sv,
    144 &dwFeatureDetectorNodeParams::dwDetectorParams, &dwFeature2DDetectorConfig::imageWidth),
    146 uint32_t,
    148 "cameraIndex"_sv,
    149 &dwFeatureDetectorNodeParams::dwDetectorParams, &dwFeature2DDetectorConfig::imageHeight),
    151 uint32_t,
    152 "maxFeatureCount"_sv,
    153 &dwFeatureDetectorNodeParams::dwDetectorParams, &dwFeature2DDetectorConfig::maxFeatureCount)),
    154 describeConstructorArgument<dwFeatureDetectorNodeRuntimeParams>(
    156 cudaStream_t,
    157 "streamIndex"_sv,
    159 describeConstructorArgument<dwContextHandle_t>(
    161 dwContextHandle_t)));
    162 }
    163
    165 const dwFeatureDetectorNodeRuntimeParams& runtimeParams,
    166 const dwContextHandle_t ctx);
    167
    169 void onChannelsConnected() override;
    170};
    171} // namespace framework
    172} // namespace dw
    173
    174#endif // DWFRAMEWORK_DWNODES_IMAGEPROCESSING_DWFEATUREDETECTORNODE_DWFEATUREDETECTORNODE_HPP_
    #define DW_DESCRIBE_INDEX_PARAMETER_WITH_SEMANTIC(TYPE_NAME, SEMANTIC_TYPE_NAME, args...)
    #define DW_DESCRIBE_INDEX_PARAMETER(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...)
    ExceptionSafeProcessNode(std::unique_ptr< Node > impl)
    The interface to access parameter values identified by name and/or (semantic) type.
    static std::unique_ptr< dwFeatureDetectorNode > create(ParameterProvider &provider)
    dwFeatureDetectorNode(const dwFeatureDetectorNodeParams &params, const dwFeatureDetectorNodeRuntimeParams &runtimeParams, const dwContextHandle_t ctx)
    dwStatus setRuntimeParams(const dwFeatureDetectorNodeRuntimeParams &runtimeParams)
    cupvaStream_t cupvastream
    Data Type of pyramid.
    constexpr std::tuple describeConstructorArguments()
    dwTransformation3f extrinsic
    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... >
    uint32_t rrSehErrorCode
    Wait time for nvSciChannel.
    dwFeatureDetectorNodeParams { bool initForCamera dwFeatureDetectorNodeParams
    dwFeature2DDetectorConfig dwDetectorParams
    dwCameraModelHandle_t intrinsic
    dwFeatureDetectorNodeRuntimeParams { uint8_t *d_mask dwFeatureDetectorNodeRuntimeParams
    Definition: Buffer.hpp:41
    人人超碰97caoporen国产