17 #include "fastdeploy/vision/common/processors/base.h" 22 class WarpAffine :
public Processor {
24 WarpAffine(
const cv::Mat& trans_matrix,
int width,
int height,
int interp = 1,
26 const cv::Scalar& borderValue = cv::Scalar()) {
27 trans_matrix_ = trans_matrix;
31 border_mode_ = border_mode;
32 borderValue_ = borderValue;
35 bool ImplByOpenCV(Mat* mat);
36 std::string Name() {
return "WarpAffine"; }
38 bool SetTransformMatrix(
const cv::Mat& trans_matrix) {
39 trans_matrix_ = trans_matrix;
43 std::tuple<int, int> GetWidthAndHeight() {
44 return std::make_tuple(width_, height_);
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);
53 cv::Mat trans_matrix_;
58 cv::Scalar borderValue_;
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16