mirror of
https://github.com/brendanhaines/ECEN5458_Project.git
synced 2024-11-09 21:14:47 -07:00
fix another old variable name
This commit is contained in:
parent
be3bc2116c
commit
c9cfd677f0
|
@ -103,10 +103,10 @@ def control_thread():
|
||||||
while True:
|
while True:
|
||||||
# TODO: replace sleep statement with something that doesn't depend on execution time of loop
|
# TODO: replace sleep statement with something that doesn't depend on execution time of loop
|
||||||
time.sleep(sample_interval)
|
time.sleep(sample_interval)
|
||||||
if len(t) == 0:
|
if time_data.shape[0] == 0:
|
||||||
this_time = 0
|
this_time = 0
|
||||||
else:
|
else:
|
||||||
this_time = t[-1] + sample_interval
|
this_time = t[-1, 0] + sample_interval
|
||||||
|
|
||||||
brightness = np.clip([get_normalized_reflectivity(c) for c in range(8)], 0, 1)
|
brightness = np.clip([get_normalized_reflectivity(c) for c in range(8)], 0, 1)
|
||||||
line_position = np.sum((1 - brightness) * (np.arange(8) - 3.5))/np.sum(1-brightness)
|
line_position = np.sum((1 - brightness) * (np.arange(8) - 3.5))/np.sum(1-brightness)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user