paddlex.h 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. // Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. #pragma once
  15. #include <functional>
  16. #include <iostream>
  17. #include <numeric>
  18. #include "yaml-cpp/yaml.h"
  19. #ifdef _WIN32
  20. #define OS_PATH_SEP "\\"
  21. #else
  22. #define OS_PATH_SEP "/"
  23. #endif
  24. #include "paddle_inference_api.h" // NOLINT
  25. #include "config_parser.h"
  26. #include "results.h"
  27. #include "transforms.h"
  28. #ifdef WITH_ENCRYPTION
  29. #include "paddle_model_decrypt.h"
  30. #include "model_code.h"
  31. #endif
  32. namespace PaddleX {
  33. class Model {
  34. public:
  35. void Init(const std::string& model_dir,
  36. bool use_gpu = false,
  37. bool use_trt = false,
  38. int gpu_id = 0,
  39. std::string key = "") {
  40. create_predictor(model_dir, use_gpu, use_trt, gpu_id, key);
  41. }
  42. void create_predictor(const std::string& model_dir,
  43. bool use_gpu = false,
  44. bool use_trt = false,
  45. int gpu_id = 0,
  46. std::string key = "");
  47. bool load_config(const std::string& model_dir);
  48. bool preprocess(const cv::Mat& input_im, ImageBlob* blob);
  49. bool predict(const cv::Mat& im, ClsResult* result);
  50. bool predict(const cv::Mat& im, DetResult* result);
  51. bool predict(const cv::Mat& im, SegResult* result);
  52. bool postprocess(SegResult* result);
  53. bool postprocess(DetResult* result);
  54. std::string type;
  55. std::string name;
  56. std::map<int, std::string> labels;
  57. Transforms transforms_;
  58. ImageBlob inputs_;
  59. std::vector<float> outputs_;
  60. std::unique_ptr<paddle::PaddlePredictor> predictor_;
  61. };
  62. } // namespce of PaddleX