2019-04-17 10:49:11 +08:00
|
|
|
//
|
|
|
|
// CPUROIPooling.hpp
|
|
|
|
// MNN
|
|
|
|
//
|
|
|
|
// Created by MNN on 2018/07/19.
|
|
|
|
// Copyright © 2018, Alibaba Group Holding Limited
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef CPUROIPooling_hpp
|
|
|
|
#define CPUROIPooling_hpp
|
|
|
|
|
2019-12-27 22:16:57 +08:00
|
|
|
#include "core/Execution.hpp"
|
2019-04-17 10:49:11 +08:00
|
|
|
|
|
|
|
namespace MNN {
|
|
|
|
|
|
|
|
class CPUROIPooling : public Execution {
|
|
|
|
public:
|
|
|
|
CPUROIPooling(Backend *backend, int pooledWidth, int pooledHeight, float spatialScale);
|
|
|
|
virtual ~CPUROIPooling() = default;
|
|
|
|
virtual ErrorCode onResize(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override;
|
|
|
|
virtual ErrorCode onExecute(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
int mPooledWidth;
|
|
|
|
int mPooledHeight;
|
|
|
|
float mSpatialScale;
|
|
|
|
|
|
|
|
Tensor mROI;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace MNN
|
|
|
|
|
|
|
|
#endif /* CPUROIPooling_hpp */
|