Loading [MathJax]/extensions/tex2jax.js
rmcv  v0.1.0
A library for RoboMaster computer vision based on OpenCV.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Pages
debug.h
1 //
2 // Created by yaione on 3/17/22.
3 //
4 
5 #ifndef RMCV_DEBUG_H
6 #define RMCV_DEBUG_H
7 
8 #include "core/core.h"
9 
11 namespace rm::debug {
12  void DrawArmours(const std::vector<rm::Armour> &input, cv::Mat &output, int index);
13 
14  void DrawArmour(rm::Armour input, cv::Mat &output);
15 
16  void DrawLightBlobs(const std::vector<rm::LightBlob> &input, cv::Mat &output, int index);
17 
18  void PrintMat(cv::Mat &input, int decimal = 0);
19 }
20 
21 #endif //RMCV_DEBUG_H
rm::debug
Debug utilities.
Definition: debug.h:11
rm::Armour
Definition: core.h:34