Hi,
Currently, I would like to construct a CNN network by tensorrt7.1 C++ API.
I want to call the “ProposalPlugin” function to help me finish my work as soon as possible, but the issue block my step.
I follow this link https://github.com/NVIDIA/TensorRT/tree/release/7.1/plugin/proposalPlugin
but I can not found the callable function in NvInferPlugin.h, and I can not use it as below method.
nvinfer1::IPluginV2* RPNROIPlugin = createProposalPlugin();
ITensor* inputTensors_RPNROI = {rpn2->getOutput(0), rpn3_sigmod->getOutput(0)};
nvinfer1::IPluginV2Layer* RPNROI = network->addPluginV2(inputTensors_RPNROI,2,*RPNROIPlugin);
assert(RPNROI != nullptr);
std::string layerName = “custom”;
RPNROI->setName(layerName.c_str());
Thanks a lot for you reply.