lzhangzz a494a6f6ff
[SDK] sync changes according to performance benchmarks (#297)
* sync SDK changes according to performance benchmarks

* fix end-of-file lint

* fix clang-format issue

* fix clang-format by adding 'clang-format off'

* remove useless casts

* remove 'data' argument of 'operator()'

* change 'Tensor2Img' to 'TensorToImg' according to spec

* correct tensor's name according spec

Co-authored-by: lvhan028 <lvhan_028@163.com>
2021-12-16 13:51:22 +08:00

29 lines
574 B
C++

// Copyright (c) OpenMMLab. All rights reserved.
#ifndef MMDEPLOY_MMOCR_H
#define MMDEPLOY_MMOCR_H
#include "codebase/common.h"
#include "core/device.h"
#include "core/module.h"
namespace mmdeploy::mmocr {
struct TextDetectorOutput {
std::vector<std::array<float, 8>> boxes;
std::vector<float> scores;
MMDEPLOY_ARCHIVE_MEMBERS(boxes, scores);
};
struct TextRecognizerOutput {
std::string text;
std::vector<float> score;
MMDEPLOY_ARCHIVE_MEMBERS(text, score);
};
DECLARE_CODEBASE(MMOCR, mmocr);
} // namespace mmdeploy::mmocr
#endif // MMDEPLOY_MMOCR_H