Files
detection_pot/utils/utils.h
2024-01-17 22:44:02 +01:00

20 lines
270 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
};
}