2022-11-10 17:07:39 +01:00
|
|
|
#pragma once
|
2023-01-05 10:39:48 +01:00
|
|
|
#include <utils.h>
|
2022-11-10 17:07:39 +01:00
|
|
|
|
2022-11-03 08:54:35 +01:00
|
|
|
class IntersectionHandler
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
public:
|
|
|
|
IntersectionHandler(/* args */);
|
|
|
|
|
|
|
|
~IntersectionHandler();
|
2023-01-05 10:39:48 +01:00
|
|
|
|
|
|
|
const bool foundLane(const FrameData& data);
|
|
|
|
const bool foundIntersection(const FrameData& data);
|
2022-11-03 08:54:35 +01:00
|
|
|
};
|