paddlex.h 7.8 KB
Newer Older
C
Channingss 已提交
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 28 29 30
//   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 <functional>
#include <iostream>
#include <numeric>

#include "yaml-cpp/yaml.h"

#ifdef _WIN32
#define OS_PATH_SEP "\\"
#else
#define OS_PATH_SEP "/"
#endif

#include "paddle_inference_api.h"  // NOLINT

C
Channingss 已提交
31 32 33
#include "config_parser.h"
#include "results.h"
#include "transforms.h"
C
Channingss 已提交
34

C
Channingss 已提交
35 36 37 38 39
#ifdef WITH_ENCRYPTION
#include "paddle_model_decrypt.h"
#include "model_code.h"
#endif

C
Channingss 已提交
40 41
namespace PaddleX {

J
jack 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
/*
 * @brief
 * This class encapsulates all necessary proccess steps of model infering, which 
 * include image matrix preprocessing, model predicting and results postprocessing. 
 * The entire process of model infering can be simplified as below:
 * 1. preprocess image matrix (resize, padding, ......)
 * 2. model infer
 * 3. postprocess the results which generated from model infering
 *
 * @example
 *  PaddleX::Model cls_model;
 *  // initialize model configuration
 *  cls_model.Init(cls_model_dir, use_gpu, use_trt, gpu_id, encryption_key);
 *  // define a Classification result object
 *  PaddleX::ClsResult cls_result;
 *  // get image matrix from image file
 *  cv::Mat im = cv::imread(image_file_path, 1);
 *  cls_model.predict(im, &cls_result);
 * */
C
Channingss 已提交
61 62
class Model {
 public:
J
jack 已提交
63 64 65 66 67 68 69 70 71 72 73
  /*
   * @brief
   * This method aims to initialize the model configuration
   * 
   * @param model_dir: the directory which contains model.yml
   * @param use_gpu: use gpu or not when infering
   * @param use_trt: use Tensor RT or not when infering
   * @param gpu_id: the id of gpu when infering with using gpu 
   * @param key: the key of encryption when using encrypted model
   * @param batch_size: batch size of infering
   * */
C
Channingss 已提交
74 75
  void Init(const std::string& model_dir,
            bool use_gpu = false,
C
Channingss 已提交
76
            bool use_trt = false,
C
Channingss 已提交
77
            int gpu_id = 0,
J
jack 已提交
78
            std::string key = "",
J
jack 已提交
79
	          int batch_size = 1) {
J
jack 已提交
80
    create_predictor(model_dir, use_gpu, use_trt, gpu_id, key, batch_size);
C
Channingss 已提交
81 82 83 84
  }

  void create_predictor(const std::string& model_dir,
                        bool use_gpu = false,
C
Channingss 已提交
85
                        bool use_trt = false,
C
Channingss 已提交
86
                        int gpu_id = 0,
J
jack 已提交
87
                        std::string key = "",
J
jack 已提交
88 89 90 91 92 93 94 95 96 97
			                  int batch_size = 1);
 
  /*
   * @brief 
   * This method aims to load model configurations which include 
   * transform steps and label list
   *
   * @param model_dir: the directory which contains model.yml
   * @return true if load configuration successfully
   * */
C
Channingss 已提交
98 99
  bool load_config(const std::string& model_dir);

J
jack 已提交
100 101 102 103 104 105 106 107 108
  /*
   * @brief
   * This method aims to transform single image matrix, the result will be
   * returned at second parameter.
   *
   * @param input_im: single image matrix to be transformed
   * @param blob: the raw data of single image matrix after transformed
   * @return true if preprocess image matrix successfully
   * */
C
Channingss 已提交
109
  bool preprocess(const cv::Mat& input_im, ImageBlob* blob);
J
jack 已提交
110
  
J
jack 已提交
111 112 113 114 115 116 117 118 119 120 121
  /*
   * @brief
   * This method aims to transform mutiple image matrixs, the result will be
   * returned at second parameter.
   *
   * @param input_im_batch: a batch of image matrixs to be transformed
   * @param blob_blob: raw data of a batch of image matrixs after transformed
   * @param thread_num: the number of preprocessing threads, 
   *                    each thread run preprocess on single image matrix
   * @return true if preprocess a batch of image matrixs successfully
   * */
J
jack 已提交
122
  bool preprocess(const std::vector<cv::Mat> &input_im_batch, std::vector<ImageBlob> &blob_batch, int thread_num = 1);
C
Channingss 已提交
123

J
jack 已提交
124 125 126 127 128 129 130 131 132
  /*
   * @brief
   * This method aims to execute classification model prediction on single image matrix, 
   * the result will be returned at second parameter.
   *
   * @param im: single image matrix to be predicted
   * @param result: classification prediction result data after postprocessed
   * @return true if predict successfully
   * */
C
Channingss 已提交
133 134
  bool predict(const cv::Mat& im, ClsResult* result);

J
jack 已提交
135 136 137 138 139 140 141 142 143 144 145
  /*
   * @brief
   * This method aims to execute classification model prediction on a batch of image matrixs, 
   * the result will be returned at second parameter.
   *
   * @param im: a batch of image matrixs to be predicted
   * @param results: a batch of classification prediction result data after postprocessed
   * @param thread_num: the number of predicting threads, each thread run prediction
   *                    on single image matrix
   * @return true if predict successfully
   * */
J
jack 已提交
146
  bool predict(const std::vector<cv::Mat> &im_batch, std::vector<ClsResult> &results, int thread_num = 1);
J
jack 已提交
147

J
jack 已提交
148 149 150 151 152 153 154 155 156
  /*
   * @brief
   * This method aims to execute detection or instance segmentation model prediction
   * on single image matrix, the result will be returned at second parameter.
   *
   * @param im: single image matrix to be predicted
   * @param result: detection or instance segmentation prediction result data after postprocessed
   * @return true if predict successfully
   * */
C
Channingss 已提交
157 158
  bool predict(const cv::Mat& im, DetResult* result);

J
jack 已提交
159 160 161 162 163 164 165 166 167 168 169
  /*
   * @brief
   * This method aims to execute detection or instance segmentation model prediction
   * on a batch of image matrixs, the result will be returned at second parameter.
   *
   * @param im: a batch of image matrix to be predicted
   * @param result: detection or instance segmentation prediction result data after postprocessed
   * @param thread_num: the number of predicting threads, each thread run prediction
   *                    on single image matrix
   * @return true if predict successfully
   * */
J
jack 已提交
170
  bool predict(const std::vector<cv::Mat> &im_batch, std::vector<DetResult> &result, int thread_num = 1);
J
jack 已提交
171
  
J
jack 已提交
172 173 174 175 176 177 178 179 180
  /*
   * @brief
   * This method aims to execute segmentation model prediction on single image matrix, 
   * the result will be returned at second parameter.
   *
   * @param im: single image matrix to be predicted
   * @param result: segmentation prediction result data after postprocessed
   * @return true if predict successfully
   * */
C
Channingss 已提交
181 182
  bool predict(const cv::Mat& im, SegResult* result);

J
jack 已提交
183 184 185 186 187 188 189 190 191 192 193
  /*
   * @brief
   * This method aims to execute segmentation model prediction on a batch of image matrix, 
   * the result will be returned at second parameter.
   *
   * @param im: a batch of image matrix to be predicted
   * @param result: segmentation prediction result data after postprocessed
   * @param thread_num: the number of predicting threads, each thread run prediction
   *                    on single image matrix
   * @return true if predict successfully
   * */
J
jack 已提交
194
  bool predict(const std::vector<cv::Mat> &im_batch, std::vector<SegResult> &result, int thread_num = 1);
J
jack 已提交
195 196
 
  // model type, include 3 type: classifier, detector, segmenter
C
Channingss 已提交
197
  std::string type;
J
jack 已提交
198
  // model name, such as FasterRCNN, YOLOV3 and so on.
C
Channingss 已提交
199 200
  std::string name;
  std::map<int, std::string> labels;
J
jack 已提交
201
  // transform(preprocessing) pipeline manager
C
Channingss 已提交
202
  Transforms transforms_;
J
jack 已提交
203
  // single input preprocessed data
C
Channingss 已提交
204
  ImageBlob inputs_;
J
jack 已提交
205
  // batch input preprocessed data
J
jack 已提交
206
  std::vector<ImageBlob> inputs_batch_;
J
jack 已提交
207
  // raw data of predicting results
C
Channingss 已提交
208
  std::vector<float> outputs_;
J
jack 已提交
209
  // a predictor which run the model predicting
C
Channingss 已提交
210 211 212
  std::unique_ptr<paddle::PaddlePredictor> predictor_;
};
}  // namespce of PaddleX