-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathController.py
111 lines (91 loc) · 3.92 KB
/
Controller.py
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
104
105
106
107
108
109
110
from threading import Thread,Event
from openpyxl import load_workbook
import numpy as np
#this class controls most threading for the BAS
#It has an Event object that sets a stop flag when stop is called
#autostart, video, and autofocus are cotrolled through this class
class Controller(object):
#constructor gets system object
def __init__(self,system):
self.thread1 = None
self.thread2 = None
self.thread3 = None
self.stop_threads = Event()
self.system = system
#loop1 targets autostart
def loop1(self):
while not self.stop_threads.is_set():
x = self.system.auto.start()
if x=='done':
self.system.GUI.queue.put("setReady")
self.stop_threads.clear()
return
#loop2 targets video. Video thread is unqiue, because it is never killed once started
#(had to be that way due to cv2.imshow threading complications)
def loop2(self):
self.system.videoThreadStarted = True # set video started flag
while True:
self.system.cam.startVideo() # runs thread indefinitely
self.stop_threads.clear()
#loop3 targets autoFocus
def loop3(self):
while not self.stop_threads.is_set():
x=self.system.focus.autoFocus()
if(isinstance(x, (np.ndarray))):
self.system.GUI.queue.put("setReady")
self.stop_threads.clear()
return
#starts the threads based on calledFrom param (should probably rename to startThread or something
def combine(self,calledFrom):
self.calledFrom =calledFrom
#start auto thread
if(self.calledFrom == 'auto'):
self.system.GUI.updateStatusText("Automatic")
self.system.GUI.updateStatusBorder("yellow")
self.system.busy = True
#had to put the datafile stuff in the following block here because of threading complications
if(len(self.system.dataFilePaths)==0):
self.system.util.createFile()
self.wb = load_workbook(self.system.dataFilePaths[self.system.currFileIndex])
self.ws1 = self.wb.active
self.stop_threads.clear()
self.thread1 = Thread(target = self.loop1)
self.thread1.start()
#start video thread
if(self.calledFrom =='cam'):
self.stop_threads.clear()
if(self.system.videoThreadStarted == False):
self.thread2 = Thread(target = self.loop2)
self.thread2.start()
#start autofocus thread
if(self.calledFrom == 'focus'):
self.system.GUI.updateStatusText("Autofocusing")
self.system.GUI.updateStatusBorder("yellow")
self.system.busy = True
self.stop_threads.clear()
self.thread3 = Thread(target=self.loop3)
self.thread3.start()
#stops threads based on calledFrom param. Special cam param for camera stop.
def stop(self,cam):
#kill automatic thread
if(self.calledFrom == 'auto'):
self.stop_threads.set()
self.thread1.join()
self.thread1 = None
print("stopped auto")
self.system.busy = False
self.system.GUI.updateStatusText()
self.system.GUI.updateStatusBorder()
#kill autofocus thread
if(self.calledFrom == 'focus'):
self.stop_threads.set()
self.thread3.join()
self.thread3 = None
print("stopped autofocus")
self.system.busy = False
self.system.GUI.updateStatusText()
self.system.GUI.updateStatusBorder()
#stop video(notice no thread kill)
if(cam==True):
self.system.GUI.videoPower()
print("stopped video")