Add PP-YOLOE support
This commit is contained in:
21
nvdsinfer_custom_impl_Yolo/layers/pooling_layer.h
Normal file
21
nvdsinfer_custom_impl_Yolo/layers/pooling_layer.h
Normal file
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* Created by Marcos Luciano
|
||||
* https://www.github.com/marcoslucianops
|
||||
*/
|
||||
|
||||
#ifndef __POOLING_LAYER_H__
|
||||
#define __POOLING_LAYER_H__
|
||||
|
||||
#include <map>
|
||||
#include <cassert>
|
||||
#include <iostream>
|
||||
|
||||
#include "NvInfer.h"
|
||||
|
||||
nvinfer1::ITensor* poolingLayer(
|
||||
int layerIdx,
|
||||
std::map<std::string, std::string>& block,
|
||||
nvinfer1::ITensor* input,
|
||||
nvinfer1::INetworkDefinition* network);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user