![]() |
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 detected object. Combines attributes from TorchObject and TensorflowObject structs. More...
#include <ObjectDetectionUtility.hpp>
Public Member Functions | |
bool | operator== (const Object &stOther) const |
Overridden operator equals for Object struct. | |
bool | operator!= (const Object &stOther) const |
Overridden operator equals for Object struct. | |
Object & | operator= (const Object &stOther) |
Overload the assignment operator for the Object 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 |
std::string | szClassName = "" |
std::chrono::system_clock::time_point | tmCreation = std::chrono::system_clock::now() |
ObjectDetectionMethod | eDetectionMethod = ObjectDetectionMethod::eUnknown |
ObjectDetectionType | eDetectionType = ObjectDetectionType::eUnknown |
cv::Size | cvImageResolution = cv::Size(0, 0) |
double | dHorizontalFOV = 0.0 |
geoops::Waypoint | stGeolocatedPosition = geoops::Waypoint() |
Represents a single detected object. Combines attributes from TorchObject and TensorflowObject structs.
|
inline |
Overridden operator equals for Object struct.
stOther | - The other Object struct we are comparing to. |
|
inline |
Overload the assignment operator for the Object struct to perform a deep copy.
stOther | - The other Object struct to copy from. |