DeepStream 6.0 update

This commit is contained in:
unknown
2021-11-19 00:03:07 -03:00
parent 297e0e9119
commit cd017cc9bd
115 changed files with 277 additions and 9237 deletions

View File

@@ -0,0 +1,23 @@
/*
* Created by Marcos Luciano
* https://www.github.com/marcoslucianops
*/
#ifndef __ACTIVATION_LAYER_H__
#define __ACTIVATION_LAYER_H__
#include <string>
#include <cassert>
#include "NvInfer.h"
#include "activation_layer.h"
nvinfer1::ILayer* activationLayer(
int layerIdx,
std::string activation,
nvinfer1::ILayer* output,
nvinfer1::ITensor* input,
nvinfer1::INetworkDefinition* network);
#endif