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

Merge pull request #20483 from thezane:support-cumsum-layer-for-onnx

* Support cumsum layer for onnx

* Add unit tests

* Address review comments
This commit is contained in:
thezane
2021-08-17 13:09:25 -04:00
committed by GitHub
parent a50dec88d5
commit 210bfaf8d6
5 changed files with 171 additions and 1 deletions
@@ -723,6 +723,15 @@ CV__DNN_INLINE_NS_BEGIN
static Ptr<Layer> create(const LayerParams& params);
};
class CV_EXPORTS CumSumLayer : public Layer
{
public:
int exclusive;
int reverse;
static Ptr<CumSumLayer> create(const LayerParams& params);
};
//! @}
//! @}
CV__DNN_INLINE_NS_END