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

implementation of scatter and scatternd with conformance tests enabled

This commit is contained in:
fengyuentau
2022-09-18 22:13:55 +08:00
parent 04ebedb6f0
commit d24d8f2abe
14 changed files with 728 additions and 10 deletions
@@ -1065,6 +1065,18 @@ CV__DNN_INLINE_NS_BEGIN
static Ptr<CumSumLayer> create(const LayerParams& params);
};
class CV_EXPORTS ScatterLayer : public Layer
{
public:
static Ptr<ScatterLayer> create(const LayerParams& params);
};
class CV_EXPORTS ScatterNDLayer : public Layer
{
public:
static Ptr<ScatterNDLayer> create(const LayerParams& params);
};
//! @}
//! @}
CV__DNN_INLINE_NS_END