FastDeploy  latest
Fast & Easy to Deploy!
transform.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/vision/common/processors/cast.h"
18 #include "fastdeploy/vision/common/processors/center_crop.h"
19 #include "fastdeploy/vision/common/processors/color_space_convert.h"
20 #include "fastdeploy/vision/common/processors/convert.h"
21 #include "fastdeploy/vision/common/processors/convert_and_permute.h"
22 #include "fastdeploy/vision/common/processors/crop.h"
23 #include "fastdeploy/vision/common/processors/hwc2chw.h"
24 #include "fastdeploy/vision/common/processors/limit_by_stride.h"
25 #include "fastdeploy/vision/common/processors/limit_short.h"
26 #include "fastdeploy/vision/common/processors/normalize.h"
27 #include "fastdeploy/vision/common/processors/normalize_and_permute.h"
28 #include "fastdeploy/vision/common/processors/pad.h"
29 #include "fastdeploy/vision/common/processors/pad_to_size.h"
30 #include "fastdeploy/vision/common/processors/resize.h"
31 #include "fastdeploy/vision/common/processors/resize_by_short.h"
32 #include "fastdeploy/vision/common/processors/stride_pad.h"
33 #include "fastdeploy/vision/common/processors/warp_affine.h"
34 #include <unordered_set>
35 
36 namespace fastdeploy {
37 namespace vision {
38 
39 void FuseTransforms(std::vector<std::shared_ptr<Processor>>* processors);
40 // Fuse Normalize + Cast(Float) to Normalize
41 void FuseNormalizeCast(std::vector<std::shared_ptr<Processor>>* processors);
42 // Fuse Normalize + HWC2CHW to NormalizeAndPermute
43 void FuseNormalizeHWC2CHW(std::vector<std::shared_ptr<Processor>>* processors);
44 // Fuse Normalize + Color Convert
45 void FuseNormalizeColorConvert(
46  std::vector<std::shared_ptr<Processor>>* processors);
47 
48 } // namespace vision
49 } // namespace fastdeploy
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16