![]() |
Autonomy Software C++ 24.5.1
Welcome to the Autonomy Software repository of the Mars Rover Design Team (MRDT) at Missouri University of Science and Technology (Missouri S&T)! API reference contains the source code and other resources for the development of the autonomy software for our Mars rover. The Autonomy Software project aims to compete in the University Rover Challenge (URC) by demonstrating advanced autonomous capabilities and robust navigation algorithms.
|
Represents a single ArUco tag. More...
#include <TagDetectionUtilty.hpp>

Public Member Functions | |
| bool | operator== (const ArucoTag &stOther) const |
| Overload the equality operator for the ArucoTag struct. | |
| bool | operator!= (const ArucoTag &stOther) const |
| Overload the inequality operator for the ArucoTag struct. | |
| ArucoTag & | operator= (const ArucoTag &stOther) |
| Overload the assignment operator for the ArucoTag struct to perform a deep copy. | |
Public Attributes | |
| std::shared_ptr< cv::Rect2d > | pBoundingBox = std::make_shared<cv::Rect2d>() |
| double | dConfidence = 0.0 |
| double | dStraightLineDistance = 0.0 |
| double | dYawAngle = 0.0 |
| int | nID = -1 |
| std::string | szClassName = "" |
| std::chrono::system_clock::time_point | tmCreation = std::chrono::system_clock::now() |
| TagDetectionMethod | eDetectionMethod = TagDetectionMethod::eUnknown |
| cv::Size | cvImageResolution = cv::Size(0, 0) |
| double | dHorizontalFOV = 0.0 |
| geoops::Waypoint | stGeolocatedPosition = geoops::Waypoint() |
| std::string | szDetectorUUID = "" |
Represents a single ArUco tag.
|
inline |
Overload the equality operator for the ArucoTag struct.
| stOther | - The other ArucoTag struct to compare to. |
|
inline |
Overload the assignment operator for the ArucoTag struct to perform a deep copy.
| stOther | - The other ArucoTag struct to copy from. |