"git@developer.sourcefind.cn:wangsen/paddle_dbnet.git" did not exist on "e036c8051b08629d677671fc2f60626105cb2217"
config.cpp 2.02 KB
Newer Older
littletomatodonkey's avatar
littletomatodonkey committed
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 {

LDOUBLEV's avatar
LDOUBLEV committed
19
20
std::vector<std::string> OCRConfig::split(const std::string &str,
                                          const std::string &delim) {
littletomatodonkey's avatar
littletomatodonkey committed
21
22
23
  std::vector<std::string> res;
  if ("" == str)
    return res;
LDOUBLEV's avatar
LDOUBLEV committed
24
25

  int strlen = str.length() + 1;
LDOUBLEV's avatar
fix cpp  
LDOUBLEV committed
26
  char *strs = new char[strlen];
littletomatodonkey's avatar
littletomatodonkey committed
27
28
  std::strcpy(strs, str.c_str());

LDOUBLEV's avatar
LDOUBLEV committed
29
30
  int delimlen = delim.length() + 1;
  char *d = new char[delimlen];
littletomatodonkey's avatar
littletomatodonkey committed
31
32
33
34
35
36
37
38
39
  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);
  }

LDOUBLEV's avatar
fix cpp  
LDOUBLEV committed
40
41
42
  delete[] strs;
  delete[] d;

littletomatodonkey's avatar
littletomatodonkey committed
43
44
45
46
  return res;
}

std::map<std::string, std::string>
LDOUBLEV's avatar
LDOUBLEV committed
47
OCRConfig::LoadConfig(const std::string &config_path) {
littletomatodonkey's avatar
littletomatodonkey committed
48
49
50
51
52
  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
53
    if (config[i].size() <= 1 || config[i][0] == '#') {
littletomatodonkey's avatar
littletomatodonkey committed
54
55
56
57
58
59
60
61
      continue;
    }
    std::vector<std::string> res = split(config[i], " ");
    dict[res[0]] = res[1];
  }
  return dict;
}

LDOUBLEV's avatar
LDOUBLEV committed
62
void OCRConfig::PrintConfigInfo() {
littletomatodonkey's avatar
littletomatodonkey committed
63
64
65
66
67
68
69
  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;
}

LDOUBLEV's avatar
LDOUBLEV committed
70
} // namespace PaddleOCR