1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 15:53:03 +04:00

Merge remote-tracking branch 'upstream/3.4' into merge-3.4

This commit is contained in:
Alexander Alekhin
2020-05-22 19:06:42 +00:00
79 changed files with 1054 additions and 46 deletions
@@ -556,6 +556,30 @@ CV__DNN_INLINE_NS_BEGIN
static Ptr<Layer> create(const LayerParams& params);
};
class CV_EXPORTS DataAugmentationLayer : public Layer
{
public:
static Ptr<DataAugmentationLayer> create(const LayerParams& params);
};
class CV_EXPORTS CorrelationLayer : public Layer
{
public:
static Ptr<CorrelationLayer> create(const LayerParams& params);
};
class CV_EXPORTS AccumLayer : public Layer
{
public:
static Ptr<AccumLayer> create(const LayerParams& params);
};
class CV_EXPORTS FlowWarpLayer : public Layer
{
public:
static Ptr<FlowWarpLayer> create(const LayerParams& params);
};
class CV_EXPORTS PriorBoxLayer : public Layer
{
public: