config.cpp 1.9 KB
Newer Older
littletomatodonkey's avatar
littletomatodonkey 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// 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/config.h>

namespace PaddleOCR {

L
LDOUBLEV 已提交
19 20
std::vector<std::string> OCRConfig::split(const std::string &str,
                                          const std::string &delim) {
littletomatodonkey's avatar
littletomatodonkey 已提交
21 22 23
  std::vector<std::string> res;
  if ("" == str)
    return res;
L
LDOUBLEV 已提交
24
  char strs[str.length() + 1];
littletomatodonkey's avatar
littletomatodonkey 已提交
25 26
  std::strcpy(strs, str.c_str());

L
LDOUBLEV 已提交
27
  char d[delim.length() + 1];
littletomatodonkey's avatar
littletomatodonkey 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40
  std::strcpy(d, delim.c_str());

  char *p = std::strtok(strs, d);
  while (p) {
    std::string s = p;
    res.push_back(s);
    p = std::strtok(NULL, d);
  }

  return res;
}

std::map<std::string, std::string>
L
LDOUBLEV 已提交
41
OCRConfig::LoadConfig(const std::string &config_path) {
littletomatodonkey's avatar
littletomatodonkey 已提交
42 43 44 45 46
  auto config = Utility::ReadDict(config_path);

  std::map<std::string, std::string> dict;
  for (int i = 0; i < config.size(); i++) {
    // pass for empty line or comment
47
    if (config[i].size() <= 1 || config[i][0] == '#') {
littletomatodonkey's avatar
littletomatodonkey 已提交
48 49 50 51 52 53 54 55
      continue;
    }
    std::vector<std::string> res = split(config[i], " ");
    dict[res[0]] = res[1];
  }
  return dict;
}

L
LDOUBLEV 已提交
56
void OCRConfig::PrintConfigInfo() {
littletomatodonkey's avatar
littletomatodonkey 已提交
57 58 59 60 61 62 63
  std::cout << "=======Paddle OCR inference config======" << std::endl;
  for (auto iter = config_map_.begin(); iter != config_map_.end(); iter++) {
    std::cout << iter->first << " : " << iter->second << std::endl;
  }
  std::cout << "=======End of Paddle OCR inference config======" << std::endl;
}

L
LDOUBLEV 已提交
64
} // namespace PaddleOCR