"test/vscode:/vscode.git/clone" did not exist on "46d8fb1c98d691aaa2bda7632543b45ae141928d"
config.h 2.98 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
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.

#pragma once

#include <iomanip>
#include <iostream>
#include <map>
#include <ostream>
#include <string>
#include <vector>

#include "include/utility.h"

namespace PaddleOCR {

LDOUBLEV's avatar
LDOUBLEV committed
28
class OCRConfig {
littletomatodonkey's avatar
littletomatodonkey committed
29
public:
LDOUBLEV's avatar
LDOUBLEV committed
30
  explicit OCRConfig(const std::string &config_file) {
littletomatodonkey's avatar
littletomatodonkey committed
31
32
33
34
35
36
37
38
39
40
41
    config_map_ = LoadConfig(config_file);

    this->use_gpu = bool(stoi(config_map_["use_gpu"]));

    this->gpu_id = stoi(config_map_["gpu_id"]);

    this->gpu_mem = stoi(config_map_["gpu_mem"]);

    this->cpu_math_library_num_threads =
        stoi(config_map_["cpu_math_library_num_threads"]);

littletomatodonkey's avatar
littletomatodonkey committed
42
43
    this->use_mkldnn = bool(stoi(config_map_["use_mkldnn"]));

littletomatodonkey's avatar
littletomatodonkey committed
44
45
46
47
48
49
    this->max_side_len = stoi(config_map_["max_side_len"]);

    this->det_db_thresh = stod(config_map_["det_db_thresh"]);

    this->det_db_box_thresh = stod(config_map_["det_db_box_thresh"]);

littletomatodonkey's avatar
littletomatodonkey committed
50
    this->det_db_unclip_ratio = stod(config_map_["det_db_unclip_ratio"]);
littletomatodonkey's avatar
littletomatodonkey committed
51

52
53
    this->use_polygon_score = bool(stoi(config_map_["use_polygon_score"]));

littletomatodonkey's avatar
littletomatodonkey committed
54
55
56
57
58
    this->det_model_dir.assign(config_map_["det_model_dir"]);

    this->rec_model_dir.assign(config_map_["rec_model_dir"]);

    this->char_list_file.assign(config_map_["char_list_file"]);
littletomatodonkey's avatar
littletomatodonkey committed
59

zhoujun's avatar
zhoujun committed
60
61
62
63
64
65
    this->use_angle_cls = bool(stoi(config_map_["use_angle_cls"]));

    this->cls_model_dir.assign(config_map_["cls_model_dir"]);

    this->cls_thresh = stod(config_map_["cls_thresh"]);

littletomatodonkey's avatar
littletomatodonkey committed
66
    this->visualize = bool(stoi(config_map_["visualize"]));
67
68
69
70

    this->use_tensorrt = bool(stoi(config_map_["use_tensorrt"]));

    this->use_fp16 = bool(stod(config_map_["use_fp16"]));
littletomatodonkey's avatar
littletomatodonkey committed
71
72
73
74
75
76
77
78
79
80
  }

  bool use_gpu = false;

  int gpu_id = 0;

  int gpu_mem = 4000;

  int cpu_math_library_num_threads = 1;

littletomatodonkey's avatar
littletomatodonkey committed
81
82
  bool use_mkldnn = false;

littletomatodonkey's avatar
littletomatodonkey committed
83
84
85
86
87
88
89
90
  int max_side_len = 960;

  double det_db_thresh = 0.3;

  double det_db_box_thresh = 0.5;

  double det_db_unclip_ratio = 2.0;

91
92
  bool use_polygon_score = false;

littletomatodonkey's avatar
littletomatodonkey committed
93
94
95
96
  std::string det_model_dir;

  std::string rec_model_dir;

zhoujun's avatar
zhoujun committed
97
98
  bool use_angle_cls;

littletomatodonkey's avatar
littletomatodonkey committed
99
100
  std::string char_list_file;

zhoujun's avatar
zhoujun committed
101
102
103
104
  std::string cls_model_dir;

  double cls_thresh;

littletomatodonkey's avatar
littletomatodonkey committed
105
106
  bool visualize = true;

107
108
109
110
  bool use_tensorrt = false;

  bool use_fp16 = false;

littletomatodonkey's avatar
littletomatodonkey committed
111
112
113
114
115
116
117
118
119
120
121
122
123
  void PrintConfigInfo();

private:
  // Load configuration
  std::map<std::string, std::string> LoadConfig(const std::string &config_file);

  std::vector<std::string> split(const std::string &str,
                                 const std::string &delim);

  std::map<std::string, std::string> config_map_;
};

} // namespace PaddleOCR