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

Faster-RCNN models support

This commit is contained in:
Dmitry Kurtaev
2017-12-13 19:06:30 +03:00
parent 84535a60f2
commit 08112f3821
12 changed files with 2420 additions and 501 deletions
@@ -74,7 +74,7 @@ CV__DNN_EXPERIMENTAL_NS_BEGIN
class CV_EXPORTS BlankLayer : public Layer
{
public:
static Ptr<BlankLayer> create(const LayerParams &params);
static Ptr<Layer> create(const LayerParams &params);
};
//! LSTM recurrent layer
@@ -567,6 +567,12 @@ CV__DNN_EXPERIMENTAL_NS_BEGIN
static Ptr<ResizeNearestNeighborLayer> create(const LayerParams& params);
};
class CV_EXPORTS ProposalLayer : public Layer
{
public:
static Ptr<ProposalLayer> create(const LayerParams& params);
};
//! @}
//! @}
CV__DNN_EXPERIMENTAL_NS_END