1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
import sensor, image, time, math
import uart
import signs_detect
import traffic_light
from garbage_filter import garbage_filter
from consts import *
buffer_lights = list()
buffer_signs = list()
sensor.reset()
sensor.set_pixformat(sensor.RGB565)
sensor.set_framesize(sensor.HVGA)
sensor.skip_frames(time = 4000)
clock = time.clock()
WIDTH = 480
HEIGHT = 320
MAX_AREA = WIDTH * HEIGHT / 10
MIN_AREA = 40
HORIZON = 150
STRETCH = 40
SQUEEZE = 400
STEERING_ENTHOUSIASM = 3.0
ROAD_MIN_BRIGHTNESS = 0xa0
points = [(STRETCH, HORIZON),
(WIDTH-1-STRETCH, HORIZON),
(WIDTH-1+SQUEEZE, HEIGHT-1),
(-SQUEEZE, HEIGHT-1)]
class CircularBuffer:
def __init__(self, size):
self.buffer = [None] * size
self.size = size
self.index = 0
self.counter = 0
self.output_value = None
def add(self, value):
self.buffer[self.index] = value
self.index = (self.index + 1) % self.size
if self.counter > 0 and self.buffer[self.index] == self.output_value:
self.counter += 1
else:
self.output_value = value
self.counter = 1
if self.counter == self.size * 2 // 3:
return self.output_value
return None
def drive(img):
img.to_grayscale()
img.replace(vflip=True, hmirror=True)
img.rotation_corr(corners=points)
img.gaussian(3)
offset_sum = 0.0
offset_count = 0.0
for blob in img.find_blobs([(ROAD_MIN_BRIGHTNESS, 0xff)], pixels_threshold=100):
img.draw_rectangle(blob.rect())
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
# dit tegen niemand zeggen
if offset_count < 0.01: return
avg = offset_sum / offset_count
avg = avg * 2 - 1
avg *= STEERING_ENTHOUSIASM
avg = max(-1, min(1, avg))
steerByte = int((avg + 1.0) * (DUI_CMD_STEER_END - DUI_CMD_STEER_START) / 2 + DUI_CMD_STEER_START)
uart.uart_buffer(steerByte)
while(True):
#img = sensor.snapshot()
#data = traffic_light.traf_lights(img)
#new_data = garbage_filter(buffer_lights,data,3,21)
#if new_data is not None:
#uart.uart_buffer(data)
sign_img = sensor.snapshot()
data = signs_detect.sign_detection(sign_img)
new_data = garbage_filter(buffer_signs,data,3,21)
if new_data is not None:
uart.uart_buffer(data)
#drive_img = sensor.snapshot()
#drive(drive_img)
#uart.uart_buffer(0x1f)
|