Files
detection_pot/utils/utils.h
ackimixs cd2396f8b1 update
2024-01-18 20:45:56 +01:00

31 lines
340 B
C++

#pragma once
#include <opencv2/opencv.hpp>
namespace Type
{
struct Angle
{
float roll;
float pitch;
float yaw;
};
struct RobotPose
{
cv::Point3f position;
float theta; // rotation around the y axis
};
}
enum Team
{
BLUE,
YELLOW
};
double distance(cv::Mat a)
{
}