added detectSpeedLimit

This commit is contained in:
Fennel Kora 2024-04-13 20:55:22 -04:00
parent a4e37faa04
commit 9d9daaf9d9

View file

@ -8,4 +8,13 @@ public class RoadSensor {
laneEdges[0] = 1; laneEdges[0] = 1;
laneEdges[1] = 1.1; laneEdges[1] = 1.1;
} }
public int detectSpeedLimit() {
//image intepretation api call to review any street signs with a speed limit marking
//in practice this will be combined with route mapping data to confirm current
//speed limits
return 45;
}
} }