mmdeploy/csrc/preprocess/cpu/resize_impl.cpp
lzhangzz 73cf3b5feb
[Fix] Optimize preprocess & fix pontential use-after-free (#229)
* hold async data and wait only at the end of the pipeline

* fix use-after-free bugs

* fix wording

* bypass trivial cases for Pad to avoid ppl.cv's bug

* fix pad

* fix lint

* cleanup

* fix DefaultFormatBundle

* fix all cpu preprocess impl

* suppress log

* fix dynamic library build & add comments for SyncOnScopeExit
2022-03-28 17:29:22 +08:00

45 lines
1.2 KiB
C++

// Copyright (c) OpenMMLab. All rights reserved.
#include "core/registry.h"
#include "core/tensor.h"
#include "core/utils/device_utils.h"
#include "opencv_utils.h"
#include "preprocess/transform/resize.h"
using namespace std;
namespace mmdeploy {
namespace cpu {
class ResizeImpl final : public ::mmdeploy::ResizeImpl {
public:
ResizeImpl(const Value& args) : ::mmdeploy::ResizeImpl(args) {}
~ResizeImpl() = default;
protected:
Result<Tensor> ResizeImage(const Tensor& img, int dst_h, int dst_w) override {
OUTCOME_TRY(auto src_tensor, MakeAvailableOnDevice(img, device_, stream_));
SyncOnScopeExit(stream_, src_tensor.buffer() != img.buffer(), src_tensor);
auto src_mat = Tensor2CVMat(src_tensor);
auto dst_mat = Resize(src_mat, dst_h, dst_w, arg_.interpolation);
return CVMat2Tensor(dst_mat);
}
};
class ResizeImplCreator : public Creator<mmdeploy::ResizeImpl> {
public:
const char* GetName() const override { return "cpu"; }
int GetVersion() const override { return 1; }
ReturnType Create(const Value& args) override { return std::make_unique<ResizeImpl>(args); }
};
} // namespace cpu
} // namespace mmdeploy
using mmdeploy::ResizeImpl;
using mmdeploy::cpu::ResizeImplCreator;
REGISTER_MODULE(ResizeImpl, ResizeImplCreator);