aboutsummaryrefslogtreecommitdiff
path: root/nicla/road.py
diff options
context:
space:
mode:
Diffstat (limited to 'nicla/road.py')
-rw-r--r--nicla/road.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/nicla/road.py b/nicla/road.py
index 5e5e1de..1b06e78 100644
--- a/nicla/road.py
+++ b/nicla/road.py
@@ -12,6 +12,8 @@ clock = time.clock()
WIDTH = 480
HEIGHT = 320
+MAX_AREA = WIDTH * HEIGHT / 10
+MIN_AREA = 40
HORIZON = 150
STRETCH = 40
@@ -35,7 +37,7 @@ def drive(driveImg):
offset_count = 0.0
for blob in img.find_blobs([(ROAD_MIN_BRIGHTNESS, 0xff)], pixels_threshold=100):
img.draw_rectangle(blob.rect())
- area_weight = blob.area()
+ area_weight = MIN_AREA + min(MAX_AREA, blob.w() * blob.h()) # limit max area_weight so small blobs still have impact
horizontal_pos = (blob.x() + blob.w()/2) / WIDTH
offset_sum += horizontal_pos * area_weight
offset_count += area_weight