FastDeploy  latest
Fast & Easy to Deploy!
utils.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/core/fd_tensor.h"
18 #include "fastdeploy/utils/utils.h"
19 #include "fastdeploy/vision/common/processors/mat.h"
20 #include "opencv2/core/core.hpp"
21 
22 #ifdef ENABLE_FLYCV
23 #include "flycv.h" // NOLINT
24 #endif
25 
26 namespace fastdeploy {
27 namespace vision {
28 
29 // Convert data type of opencv to FDDataType
30 FDDataType OpenCVDataTypeToFD(int type);
31 // Create data type of opencv by FDDataType
32 int CreateOpenCVDataType(FDDataType type, int channel = 1);
33 #ifdef ENABLE_FLYCV
34 // Convert data type of flycv to FDDataType
35 FDDataType FlyCVDataTypeToFD(fcv::FCVImageType type);
36 // Create data type of flycv by FDDataType
37 fcv::FCVImageType CreateFlyCVDataType(FDDataType type, int channel = 1);
38 // Convert cv::Mat to fcv::Mat
39 fcv::Mat ConvertOpenCVMatToFlyCV(cv::Mat& im);
40 // Convert fcv::Mat to fcv::mat
41 cv::Mat ConvertFlyCVMatToOpenCV(fcv::Mat& fim);
42 #endif
43 
44 // Create zero copy OpenCV/FlyCV Mat from FD Tensor / Buffer
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);
49 #ifdef ENABLE_FLYCV
50 fcv::Mat CreateZeroCopyFlyCVMatFromBuffer(int height, int width,
51  int channels, FDDataType type, void* data);
52 fcv::Mat CreateZeroCopyFlyCVMatFromTensor(const FDTensor& tensor);
53 #endif
54 } // namespace vision
55 } // namespace fastdeploy
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16