17 #include "fastdeploy/utils/utils.h" 18 #include "fastdeploy/vision/common/processors/mat.h" 19 #include "fastdeploy/vision/common/image_decoder/nvjpeg_decoder.h" 24 enum class FASTDEPLOY_DECL ImageDecoderLib { OPENCV, NVJPEG };
26 class FASTDEPLOY_DECL ImageDecoder {
28 explicit ImageDecoder(ImageDecoderLib lib = ImageDecoderLib::OPENCV);
32 bool Decode(
const std::string& img_name, FDMat* mat);
34 bool BatchDecode(
const std::vector<std::string>& img_names,
35 std::vector<FDMat>* mats);
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;
44 nvjpeg::decode_params_t nvjpeg_params_;
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16