FastDeploy  latest
Fast & Easy to Deploy!
warp_affine.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/base.h"
18 
19 namespace fastdeploy {
20 namespace vision {
21 
22 class WarpAffine : public Processor {
23  public:
24  WarpAffine(const cv::Mat& trans_matrix, int width, int height, int interp = 1,
25  int border_mode = 0,
26  const cv::Scalar& borderValue = cv::Scalar()) {
27  trans_matrix_ = trans_matrix;
28  width_ = width;
29  height_ = height;
30  interp_ = interp;
31  border_mode_ = border_mode;
32  borderValue_ = borderValue;
33  }
34 
35  bool ImplByOpenCV(Mat* mat);
36  std::string Name() { return "WarpAffine"; }
37 
38  bool SetTransformMatrix(const cv::Mat& trans_matrix) {
39  trans_matrix_ = trans_matrix;
40  return true;
41  }
42 
43  std::tuple<int, int> GetWidthAndHeight() {
44  return std::make_tuple(width_, height_);
45  }
46 
47  static bool Run(Mat* mat, const cv::Mat& trans_matrix, int width, int height,
48  int interp = 1, int border_mode = 0,
49  const cv::Scalar& borderValue = cv::Scalar(),
50  ProcLib lib = ProcLib::DEFAULT);
51 
52  private:
53  cv::Mat trans_matrix_;
54  int width_;
55  int height_;
56  int interp_;
57  int border_mode_;
58  cv::Scalar borderValue_;
59 };
60 } // namespace vision
61 } // namespace fastdeploy
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16