17 lines
329 B
C++
17 lines
329 B
C++
/*
|
|
* Created by Marcos Luciano
|
|
* https://www.github.com/marcoslucianops
|
|
*/
|
|
|
|
#ifndef __CLS_LAYER_H__
|
|
#define __CLS_LAYER_H__
|
|
|
|
#include <map>
|
|
|
|
#include "NvInfer.h"
|
|
|
|
nvinfer1::ITensor* clsLayer(int layerIdx, std::map<std::string, std::string>& block, nvinfer1::ITensor* input,
|
|
nvinfer1::INetworkDefinition* network);
|
|
|
|
#endif
|