#ifndef __OPENCV_DNN_LAYERS_SOFTMAX_LAYER_HPP__ #define __OPENCV_DNN_LAYERS_SOFTMAX_LAYER_HPP__ #include "../precomp.hpp" namespace cv { namespace dnn { class SoftMaxLayer : public Layer { int axis_, axis; Blob maxAggregator; public: SoftMaxLayer(LayerParams ¶ms); void allocate(const std::vector &inputs, std::vector &outputs); void forward(std::vector &inputs, std::vector &outputs); }; } } #endif