FastDeploy  latest
Fast & Easy to Deploy!
image_decoder.h
1 // Copyright (c) 2022 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 
15 #pragma once
16 
17 #include "fastdeploy/utils/utils.h"
18 #include "fastdeploy/vision/common/processors/mat.h"
19 #include "fastdeploy/vision/common/image_decoder/nvjpeg_decoder.h"
20 
21 namespace fastdeploy {
22 namespace vision {
23 
24 enum class FASTDEPLOY_DECL ImageDecoderLib { OPENCV, NVJPEG };
25 
26 class FASTDEPLOY_DECL ImageDecoder {
27  public:
28  explicit ImageDecoder(ImageDecoderLib lib = ImageDecoderLib::OPENCV);
29 
30  ~ImageDecoder();
31 
32  bool Decode(const std::string& img_name, FDMat* mat);
33 
34  bool BatchDecode(const std::vector<std::string>& img_names,
35  std::vector<FDMat>* mats);
36 
37  private:
38  bool ImplByOpenCV(const std::vector<std::string>& img_names,
39  std::vector<FDMat>* mats);
40  bool ImplByNvJpeg(const std::vector<std::string>& img_names,
41  std::vector<FDMat>* mats);
42  ImageDecoderLib lib_ = ImageDecoderLib::OPENCV;
43 #ifdef ENABLE_NVJPEG
44  nvjpeg::decode_params_t nvjpeg_params_;
45 #endif
46 };
47 
48 } // namespace vision
49 } // namespace fastdeploy
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16