26 #include "fastdeploy/core/fd_tensor.h" 28 #include <cuda_runtime_api.h> 36 typedef std::vector<std::string> FileNames;
37 typedef std::vector<std::vector<char>> FileData;
39 struct decode_params_t {
41 nvjpegJpegState_t nvjpeg_state;
42 nvjpegHandle_t nvjpeg_handle;
46 nvjpegJpegState_t nvjpeg_decoupled_state;
47 nvjpegBufferPinned_t pinned_buffers[2];
48 nvjpegBufferDevice_t device_buffer;
49 nvjpegJpegStream_t jpeg_streams[2];
50 nvjpegDecodeParams_t nvjpeg_decode_params;
51 nvjpegJpegDecoder_t nvjpeg_decoder;
53 nvjpegOutputFormat_t fmt;
54 bool hw_decode_available;
57 void init_decoder(decode_params_t& params);
58 void destroy_decoder(decode_params_t& params);
60 double process_images(
const FileNames& image_names, decode_params_t& params,
61 double& total, std::vector<nvjpegImage_t>& iout,
62 std::vector<FDTensor*>& output_buffers,
63 std::vector<int>& widths, std::vector<int>& heights);
69 #endif // ENABLE_NVJPEG All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16