mirror of
https://github.com/modelec/detection_pot.git
synced 2026-01-19 17:17:20 +01:00
21 lines
244 B
C++
21 lines
244 B
C++
#pragma once
|
|
|
|
#include <opencv2/opencv.hpp>
|
|
|
|
namespace Type
|
|
{
|
|
struct Angle
|
|
{
|
|
float roll;
|
|
float pitch;
|
|
float yaw;
|
|
};
|
|
}
|
|
|
|
enum Team
|
|
{
|
|
BLUE,
|
|
YELLOW
|
|
};
|
|
|
|
double distanceBetweenRobotAndTag(const cv::Mat& a); |