ocr_cls.cpp 3.4 KB
Newer Older
W
WenmuZhou 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
// Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#include <include/ocr_cls.h>

namespace PaddleOCR {

cv::Mat Classifier::Run(cv::Mat &img) {
  cv::Mat src_img;
  img.copyTo(src_img);
  cv::Mat resize_img;

  std::vector<int> cls_image_shape = {3, 48, 192};
  int index = 0;
  float wh_ratio = float(img.cols) / float(img.rows);

R
root 已提交
28
  this->resize_op_.Run(img, resize_img, this->use_tensorrt_, cls_image_shape);
W
WenmuZhou 已提交
29 30 31 32 33 34 35 36 37

  this->normalize_op_.Run(&resize_img, this->mean_, this->scale_,
                          this->is_scale_);

  std::vector<float> input(1 * 3 * resize_img.rows * resize_img.cols, 0.0f);

  this->permute_op_.Run(&resize_img, input.data());

  // Inference.
L
LDOUBLEV 已提交
38 39 40 41 42
  auto input_names = this->predictor_->GetInputNames();
  auto input_t = this->predictor_->GetInputHandle(input_names[0]);
  input_t->Reshape({1, 3, resize_img.rows, resize_img.cols});
  input_t->CopyFromCpu(input.data());
  this->predictor_->Run();
W
WenmuZhou 已提交
43 44 45 46

  std::vector<float> softmax_out;
  std::vector<int64_t> label_out;
  auto output_names = this->predictor_->GetOutputNames();
L
LDOUBLEV 已提交
47
  auto softmax_out_t = this->predictor_->GetOutputHandle(output_names[0]);
W
WenmuZhou 已提交
48 49 50 51 52 53 54 55
  auto softmax_shape_out = softmax_out_t->shape();

  int softmax_out_num =
      std::accumulate(softmax_shape_out.begin(), softmax_shape_out.end(), 1,
                      std::multiplies<int>());

  softmax_out.resize(softmax_out_num);

L
LDOUBLEV 已提交
56
  softmax_out_t->CopyToCpu(softmax_out.data());
W
WenmuZhou 已提交
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73

  float score = 0;
  int label = 0;
  for (int i = 0; i < softmax_out_num; i++) {
    if (softmax_out[i] > score) {
      score = softmax_out[i];
      label = i;
    }
  }
  if (label % 2 == 1 && score > this->cls_thresh) {
    cv::rotate(src_img, src_img, 1);
  }
  return src_img;
}

void Classifier::LoadModel(const std::string &model_dir) {
  AnalysisConfig config;
文幕地方's avatar
文幕地方 已提交
74 75
  config.SetModel(model_dir + "/inference.pdmodel",
                  model_dir + "/inference.pdiparams");
W
WenmuZhou 已提交
76 77 78

  if (this->use_gpu_) {
    config.EnableUseGpu(this->gpu_mem_, this->gpu_id_);
L
LDOUBLEV 已提交
79
    if (this->use_tensorrt_) {
M
MissPenguin 已提交
80 81 82 83 84 85 86
      auto precision = paddle_infer::Config::Precision::kFloat32;
      if (this->precision_ == "fp16") {
        precision = paddle_infer::Config::Precision::kHalf;
      }
     if (this->precision_ == "int8") {
        precision = paddle_infer::Config::Precision::kInt8;
      } 
L
LDOUBLEV 已提交
87 88
      config.EnableTensorRtEngine(
          1 << 20, 10, 3,
M
MissPenguin 已提交
89
          precision,
L
LDOUBLEV 已提交
90 91
          false, false);
    }
W
WenmuZhou 已提交
92 93 94 95 96
  } else {
    config.DisableGpu();
    if (this->use_mkldnn_) {
      config.EnableMKLDNN();
    }
L
littletomatodonkey 已提交
97
    config.SetCpuMathLibraryNumThreads(this->cpu_math_library_num_threads_);
W
WenmuZhou 已提交
98 99 100
  }

  // false for zero copy tensor
L
LDOUBLEV 已提交
101
  config.SwitchUseFeedFetchOps(false);
W
WenmuZhou 已提交
102 103 104 105 106 107 108 109
  // true for multiple input
  config.SwitchSpecifyInputNames(true);

  config.SwitchIrOptim(true);

  config.EnableMemoryOptim();
  config.DisableGlogInfo();

L
LDOUBLEV 已提交
110
  this->predictor_ = CreatePredictor(config);
W
WenmuZhou 已提交
111 112
}
} // namespace PaddleOCR