1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

Concat layer from TensorFlow with constant inputs

This commit is contained in:
Dmitry Kurtaev
2018-12-04 15:02:22 +03:00
parent aee865fec9
commit c9e0c77d73
5 changed files with 101 additions and 5 deletions
@@ -77,6 +77,15 @@ CV__DNN_EXPERIMENTAL_NS_BEGIN
static Ptr<Layer> create(const LayerParams &params);
};
/**
* Constant layer produces the same data blob at an every forward pass.
*/
class CV_EXPORTS ConstLayer : public Layer
{
public:
static Ptr<Layer> create(const LayerParams &params);
};
//! LSTM recurrent layer
class CV_EXPORTS LSTMLayer : public Layer
{