代码拉取完成,页面将自动刷新
//
// Created by yo on 21-5-29.
//
#ifndef ASCEND_GAUSSIANBLUR_ASCENDGAUSSIANBLUR_H
#define ASCEND_GAUSSIANBLUR_ASCENDGAUSSIANBLUR_H
#include "all_ops.h"
#include "graph.h"
#include "types.h"
#include "tensor.h"
#include "attr_value.h"
#include "ascend_string.h"
#include "opencv2/opencv.hpp"
#include "ge_api_types.h"
#include "ge_ir_build.h"
#include "ModelProcess.h"
using namespace std;
using namespace cv;
using namespace ge;
using ge::Operator;
class AscendGaussianBlur {
public:
AscendGaussianBlur(int src_w, int src_h, int _channel, int kernel_size, double sigma);
~AscendGaussianBlur();
Mat run(Mat& img);
private:
int src_h;
int src_w;
int channel;
std::map<AscendString, AscendString> options;
Graph graph;
aclrtContext m_context;
aclrtStream m_stream;
shared_ptr<ModelProcess> m_modelProcess;
aclmdlDesc *m_modelDesc;
std::vector<void *> inputBuffers;
std::vector<size_t> inputSizes;
std::vector<void *> outputBuffers;
std::vector<size_t> outputSizes;
};
#endif //ASCEND_GAUSSIANBLUR_ASCENDGAUSSIANBLUR_H
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。