FastDeploy  latest
Fast & Easy to Deploy!
visualize.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/result.h"
18 #include "fastdeploy/vision/tracking/pptracking/model.h"
19 #include "opencv2/imgproc/imgproc.hpp"
20 
21 namespace fastdeploy {
25 namespace vision {
26 
27 class FASTDEPLOY_DECL Visualize {
28  public:
29  static int num_classes_;
30  static std::vector<int> color_map_;
31  static const std::vector<int>& GetColorMap(int num_classes = 1000);
32  static cv::Mat VisDetection(const cv::Mat& im, const DetectionResult& result,
33  float score_threshold = 0.0, int line_size = 1,
34  float font_size = 0.5f);
35  static cv::Mat VisFaceDetection(const cv::Mat& im,
36  const FaceDetectionResult& result,
37  int line_size = 1, float font_size = 0.5f);
38  static cv::Mat VisSegmentation(const cv::Mat& im,
39  const SegmentationResult& result);
40  static cv::Mat VisMattingAlpha(const cv::Mat& im, const MattingResult& result,
41  bool remove_small_connected_area = false);
42  static cv::Mat RemoveSmallConnectedArea(const cv::Mat& alpha_pred,
43  float threshold);
44  static cv::Mat
45  SwapBackgroundMatting(const cv::Mat& im, const cv::Mat& background,
46  const MattingResult& result,
47  bool remove_small_connected_area = false);
48  static cv::Mat SwapBackgroundSegmentation(const cv::Mat& im,
49  const cv::Mat& background,
50  int background_label,
51  const SegmentationResult& result);
52  static cv::Mat VisOcr(const cv::Mat& srcimg, const OCRResult& ocr_result);
53 };
54 
55 std::vector<int> GenerateColorMap(int num_classes = 1000);
56 cv::Mat RemoveSmallConnectedArea(const cv::Mat& alpha_pred, float threshold);
66 FASTDEPLOY_DECL cv::Mat VisDetection(const cv::Mat& im,
67  const DetectionResult& result,
68  float score_threshold = 0.0,
69  int line_size = 1, float font_size = 0.5f);
80 FASTDEPLOY_DECL cv::Mat VisDetection(const cv::Mat& im,
81  const DetectionResult& result,
82  const std::vector<std::string>& labels,
83  float score_threshold = 0.0,
84  int line_size = 1, float font_size = 0.5f);
94 FASTDEPLOY_DECL cv::Mat VisClassification(const cv::Mat& im,
95  const ClassifyResult& result,
96  int top_k = 5,
97  float score_threshold = 0.0f,
98  float font_size = 0.5f);
109 FASTDEPLOY_DECL cv::Mat
110 VisClassification(const cv::Mat& im, const ClassifyResult& result,
111  const std::vector<std::string>& labels, int top_k = 5,
112  float score_threshold = 0.0f, float font_size = 0.5f);
121 FASTDEPLOY_DECL cv::Mat VisFaceDetection(const cv::Mat& im,
122  const FaceDetectionResult& result,
123  int line_size = 1,
124  float font_size = 0.5f);
132 FASTDEPLOY_DECL cv::Mat VisFaceAlignment(const cv::Mat& im,
133  const FaceAlignmentResult& result,
134  int line_size = 1);
142 FASTDEPLOY_DECL cv::Mat VisSegmentation(const cv::Mat& im,
143  const SegmentationResult& result,
144  float weight = 0.5);
154 FASTDEPLOY_DECL cv::Mat VisMatting(const cv::Mat& im,
155  const MattingResult& result,
156  bool transparent_background = false,
157  float transparent_threshold = 0.999,
158  bool remove_small_connected_area = false);
165 FASTDEPLOY_DECL cv::Mat VisOcr(const cv::Mat& im, const OCRResult& ocr_result,
166  const float score_threshold = 0);
167 
168 FASTDEPLOY_DECL cv::Mat VisMOT(const cv::Mat& img, const MOTResult& results,
169  float score_threshold = 0.0f,
170  tracking::TrailRecorder* recorder = nullptr);
179 FASTDEPLOY_DECL cv::Mat
180 SwapBackground(const cv::Mat& im, const cv::Mat& background,
181  const MattingResult& result,
182  bool remove_small_connected_area = false);
191 FASTDEPLOY_DECL cv::Mat SwapBackground(const cv::Mat& im,
192  const cv::Mat& background,
193  const SegmentationResult& result,
194  int background_label);
195 
203 FASTDEPLOY_DECL cv::Mat
204 VisKeypointDetection(const cv::Mat& im, const KeyPointDetectionResult& results,
205  float conf_threshold = 0.5f);
206 FASTDEPLOY_DECL cv::Mat VisHeadPose(const cv::Mat& im,
207  const HeadPoseResult& result, int size = 50,
208  int line_size = 1);
209 
210 } // namespace vision
211 } // namespace fastdeploy
cv::Mat VisClassification(const cv::Mat &im, const ClassifyResult &result, int top_k, float score_threshold, float font_size)
Show the visualized results for classification models.
Definition: classification.cc:23
cv::Mat VisFaceAlignment(const cv::Mat &im, const FaceAlignmentResult &result, int line_size)
Show the visualized results for face alignment models.
Definition: face_alignment.cc:22
cv::Mat VisSegmentation(const cv::Mat &im, const SegmentationResult &result, float weight)
Show the visualized results for segmentation models.
Definition: segmentation.cc:51
cv::Mat VisKeypointDetection(const cv::Mat &im, const KeyPointDetectionResult &results, float conf_threshold)
Show the visualized results for key point detection models.
Definition: keypoint.cc:19
cv::Mat SwapBackground(const cv::Mat &im, const cv::Mat &background, const MattingResult &result, bool remove_small_connected_area)
Swap the image background with MattingResult.
Definition: swap_background.cc:129
cv::Mat VisMatting(const cv::Mat &im, const MattingResult &result, bool transparent_background, float transparent_threshold, bool remove_small_connected_area)
Show the visualized results for matting models.
Definition: matting.cc:21
cv::Mat VisFaceDetection(const cv::Mat &im, const FaceDetectionResult &result, int line_size, float font_size)
Show the visualized results for face detection models.
Definition: face_detection.cc:22
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16
cv::Mat VisOcr(const cv::Mat &im, const OCRResult &ocr_result, const float score_threshold)
Show the visualized results for Ocr models.
Definition: ocr.cc:20
cv::Mat VisDetection(const cv::Mat &im, const DetectionResult &result, float score_threshold, int line_size, float font_size)
Show the visualized results for detection models.
Definition: detection.cc:23