Files
detection_pot/utils/utils.h
2024-04-17 09:57:57 +02:00

21 lines
248 B
C++

#pragma once
#include <opencv2/opencv.hpp>
namespace Type
{
struct Angle
{
float roll;
float pitch;
float yaw;
};
}
enum Team
{
BLUE,
YELLOW
};
double distanceBetweenRobotAndTagOnXY(const cv::Mat& a);