Skip to content

Commit 08112f3

Browse files
committed
Faster-RCNN models support
1 parent 84535a6 commit 08112f3

File tree

12 files changed

+2418
-499
lines changed

12 files changed

+2418
-499
lines changed

modules/dnn/include/opencv2/dnn/all_layers.hpp

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ CV__DNN_EXPERIMENTAL_NS_BEGIN
7474
class CV_EXPORTS BlankLayer : public Layer
7575
{
7676
public:
77-
static Ptr<BlankLayer> create(const LayerParams &params);
77+
static Ptr<Layer> create(const LayerParams &params);
7878
};
7979

8080
//! LSTM recurrent layer
@@ -567,6 +567,12 @@ CV__DNN_EXPERIMENTAL_NS_BEGIN
567567
static Ptr<ResizeNearestNeighborLayer> create(const LayerParams& params);
568568
};
569569

570+
class CV_EXPORTS ProposalLayer : public Layer
571+
{
572+
public:
573+
static Ptr<ProposalLayer> create(const LayerParams& params);
574+
};
575+
570576
//! @}
571577
//! @}
572578
CV__DNN_EXPERIMENTAL_NS_END

modules/dnn/misc/caffe/opencv-caffe.pb.cc

Lines changed: 1298 additions & 358 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)