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

Merge pull request #22529 from fengyuentau:scatter_scatternd

DNN: supports Scatter and ScatterND from ONNX
This commit is contained in:
Alexander Smorkalov
2022-10-17 14:57:46 +03:00
committed by GitHub
14 changed files with 728 additions and 10 deletions
@@ -1067,6 +1067,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