11#ifndef VERIFYING_MARKER_STATE_H
12#define VERIFYING_MARKER_STATE_H
14#include "../interfaces/State.hpp"
15#include "../util/GeospatialOperations.hpp"
16#include "../vision/aruco/TagDetector.h"
38 std::vector<std::shared_ptr<TagDetector>> m_vTagDetectors;
39 std::chrono::system_clock::time_point m_tmTagVerificationStartTime;
40 std::chrono::system_clock::time_point m_tmTagLastSeenTime;
43 void Start()
override;
The abstract state class. All states inherit from this class.
Definition State.hpp:115
The VerifyingMarkerState class implements the Verifying Marker state for the Autonomy State Machine.
Definition VerifyingMarkerState.h:34
void Start() override
This method is called when the state is first started. It is used to initialize the state.
Definition VerifyingMarkerState.cpp:32
void Run() override
Run the state machine. Returns the next state.
Definition VerifyingMarkerState.cpp:86
States TriggerEvent(Event eEvent) override
Trigger an event in the state machine. Returns the next state.
Definition VerifyingMarkerState.cpp:158
VerifyingMarkerState()
Construct a new State object.
Definition VerifyingMarkerState.cpp:67
void Exit() override
This method is called when the state is exited. It is used to clean up the state.
Definition VerifyingMarkerState.cpp:54
Namespace containing all state machine related classes.
Definition State.hpp:23
Event
The events that can be triggered in the state machine.
Definition State.hpp:54
States
The states that the state machine can be in.
Definition State.hpp:31
This struct is used by the WaypointHandler class to store location, size, and type information about ...
Definition GeospatialOperations.hpp:392