17 #include "fastdeploy/core/fd_tensor.h" 18 #include "fastdeploy/utils/utils.h" 19 #include "fastdeploy/vision/common/processors/mat.h" 20 #include "opencv2/core/core.hpp" 30 FDDataType OpenCVDataTypeToFD(
int type);
32 int CreateOpenCVDataType(FDDataType type,
int channel = 1);
35 FDDataType FlyCVDataTypeToFD(fcv::FCVImageType type);
37 fcv::FCVImageType CreateFlyCVDataType(FDDataType type,
int channel = 1);
39 fcv::Mat ConvertOpenCVMatToFlyCV(cv::Mat& im);
41 cv::Mat ConvertFlyCVMatToOpenCV(fcv::Mat& fim);
45 cv::Mat CreateZeroCopyOpenCVMatFromBuffer(
int height,
int width,
46 int channels, FDDataType type,
void* data);
47 cv::Mat CreateZeroCopyOpenCVMatFromTensor(
const FDTensor& tensor,
48 Layout layout = Layout::HWC);
50 fcv::Mat CreateZeroCopyFlyCVMatFromBuffer(
int height,
int width,
51 int channels, FDDataType type,
void* data);
52 fcv::Mat CreateZeroCopyFlyCVMatFromTensor(
const FDTensor& tensor);
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16