17 #include "fastdeploy/vision/common/result.h" 18 #include "fastdeploy/vision/tracking/pptracking/model.h" 19 #include "opencv2/imgproc/imgproc.hpp" 27 class FASTDEPLOY_DECL Visualize {
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);
36 const FaceDetectionResult& result,
37 int line_size = 1,
float font_size = 0.5f);
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,
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,
51 const SegmentationResult& result);
52 static cv::Mat
VisOcr(
const cv::Mat& srcimg,
const OCRResult& ocr_result);
55 std::vector<int> GenerateColorMap(
int num_classes = 1000);
56 cv::Mat RemoveSmallConnectedArea(
const cv::Mat& alpha_pred,
float threshold);
67 const DetectionResult& result,
68 float score_threshold = 0.0,
69 int line_size = 1,
float font_size = 0.5f);
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);
95 const ClassifyResult& result,
97 float score_threshold = 0.0f,
98 float font_size = 0.5f);
109 FASTDEPLOY_DECL cv::Mat
111 const std::vector<std::string>& labels,
int top_k = 5,
112 float score_threshold = 0.0f,
float font_size = 0.5f);
122 const FaceDetectionResult& result,
124 float font_size = 0.5f);
133 const FaceAlignmentResult& result,
143 const SegmentationResult& result,
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);
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
181 const MattingResult& result,
182 bool remove_small_connected_area =
false);
192 const cv::Mat& background,
193 const SegmentationResult& result,
194 int background_label);
203 FASTDEPLOY_DECL cv::Mat
205 float conf_threshold = 0.5f);
206 FASTDEPLOY_DECL cv::Mat VisHeadPose(
const cv::Mat& im,
207 const HeadPoseResult& result,
int size = 50,
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