FastDeploy  latest
Fast & Easy to Deploy!
animegan.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 #include "fastdeploy/fastdeploy_model.h"
17 #include "fastdeploy/vision/common/processors/transform.h"
18 #include "fastdeploy/vision/generation/contrib/preprocessor.h"
19 #include "fastdeploy/vision/generation/contrib/postprocessor.h"
20 
21 namespace fastdeploy {
22 
23 namespace vision {
24 
25 namespace generation {
28 class FASTDEPLOY_DECL AnimeGAN : public FastDeployModel {
29  public:
37  AnimeGAN(const std::string& model_file, const std::string& params_file = "",
38  const RuntimeOption& custom_option = RuntimeOption(),
39  const ModelFormat& model_format = ModelFormat::PADDLE);
40 
41  std::string ModelName() const { return "styletransfer/animegan"; }
42 
49  bool Predict(cv::Mat& img, cv::Mat* result);
50 
57  bool BatchPredict(const std::vector<cv::Mat>& images,
58  std::vector<cv::Mat>* results);
59 
60  // Get preprocessor reference of AnimeGAN
61  AnimeGANPreprocessor& GetPreprocessor() {
62  return preprocessor_;
63  }
64 
65  // Get postprocessor reference of AnimeGAN
66  AnimeGANPostprocessor& GetPostprocessor() {
67  return postprocessor_;
68  }
69 
70  private:
71  bool Initialize();
72 
73  AnimeGANPreprocessor preprocessor_;
74  AnimeGANPostprocessor postprocessor_;
75 };
76 
77 } // namespace generation
78 } // namespace vision
79 } // namespace fastdeploy
Option object used when create a new Runtime object.
Definition: runtime_option.h:40
Base model object for all the vision models.
Definition: fastdeploy_model.h:21
ModelFormat
Definition: enum_variables.h:67
Preprocessor object for AnimeGAN serials model.
Definition: preprocessor.h:25
Postprocessor object for AnimeGAN serials model.
Definition: postprocessor.h:25
AnimeGAN model object is used when load a AnimeGAN model.
Definition: animegan.h:28
std::string ModelName() const
Get model&#39;s name.
Definition: animegan.h:41
Model with paddlepaddle format.
Definition: enum_variables.h:69
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16