Files
deepstream_yolo/native/nvdsinfer_custom_impl_Yolo/layers/upsample_layer.h
Marcos Luciano cbd9675dc2 New features
- Added support for INT8 calibration
- Added support for non square models
- Updated mAP comparison between models
2021-06-18 00:30:10 -03:00

22 lines
393 B
C++

/*
* Created by Marcos Luciano
* https://www.github.com/marcoslucianops
*/
#ifndef __UPSAMPLE_LAYER_H__
#define __UPSAMPLE_LAYER_H__
#include <map>
#include <vector>
#include <cassert>
#include "NvInfer.h"
nvinfer1::ILayer* upsampleLayer(
int layerIdx,
std::map<std::string, std::string>& block,
nvinfer1::ITensor* input,
nvinfer1::INetworkDefinition* network);
#endif