From 9d9daaf9d9e24b81468f4e37933e63c55aac313a Mon Sep 17 00:00:00 2001 From: Fennel Kora Date: Sat, 13 Apr 2024 20:55:22 -0400 Subject: [PATCH] added detectSpeedLimit --- RoadSensor.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/RoadSensor.java b/RoadSensor.java index d21fc38..e588022 100644 --- a/RoadSensor.java +++ b/RoadSensor.java @@ -8,4 +8,13 @@ public class RoadSensor { laneEdges[0] = 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; + } + + }