mirror of https://github.com/alibaba/MNN.git
36 lines
848 B
C++
36 lines
848 B
C++
|
//
|
||
|
// CPUProposal.hpp
|
||
|
// MNN
|
||
|
//
|
||
|
// Created by MNN on 2018/07/17.
|
||
|
// Copyright © 2018, Alibaba Group Holding Limited
|
||
|
//
|
||
|
|
||
|
#ifndef CPUProposal_hpp
|
||
|
#define CPUProposal_hpp
|
||
|
|
||
|
#include <functional>
|
||
|
#include "AutoStorage.h"
|
||
|
#include "Execution.hpp"
|
||
|
#include "MNN_generated.h"
|
||
|
|
||
|
namespace MNN {
|
||
|
|
||
|
class CPUProposal : public Execution {
|
||
|
public:
|
||
|
CPUProposal(Backend *backend, const Proposal *proposal);
|
||
|
virtual ~CPUProposal() = 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:
|
||
|
const Proposal *mProposal;
|
||
|
AutoStorage<float> mAnchors;
|
||
|
Tensor mScore;
|
||
|
std::function<void()> mRun;
|
||
|
};
|
||
|
|
||
|
} // namespace MNN
|
||
|
|
||
|
#endif /* CPUProposal_hpp */
|