Files
detection_pot/utils/utils.h

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);