-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotebook.py
129 lines (100 loc) · 3.96 KB
/
notebook.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
#!/usr/bin/env python
# coding: utf-8
import os
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'
import json
import ntpath
import time
import datetime
from tqdm import tqdm
from glob import glob
from copy import deepcopy
from PIL import Image, ImageDraw, ImageFont
import cv2
import numpy as np
from Agents.agent import *
from Labeller.labeller import *
from Utilities.Template_Matching_Utils import crop_defect_zone
dir_path, file_path = os.path.realpath(__file__).rsplit("\\", 1)
print(dir_path, '-->', file_path)
# Read the configuration file
with open(dir_path+'\\RL_config.json', 'r') as reader:
Config = json.load(reader)
with open(dir_path+"\\defect_code.json", 'r') as reader:
Defects_Code = json.load(reader)
class SCS_Operator:
def __init__(self):
self.mode = "setup"
self.defect_zone = (50, 180, 900, 1020)
self.current_defect_feature = np.zeros(768, dtype=int)
self.Configurer = Agent(process=Config['Process'],
use_text=Config['UseText'],
use_icon=Config['UseIcon'],
optimizer=Config['OptimizerQN'],
mode='inference')
self.Labeller = Labeller()
def query_RL(self, current_state):
current_contexts, \
button_centers = self.Configurer.extract_contexts(current_state)
action_batch = self.Configurer.query(current_contexts)
action_id = action_batch[0]
action = self.Configurer.actions_list[action_id]
return action, button_centers
def propose_action(self, current_state):
click_positions = dict()
if self.mode == "setup":
action, button_centers = self.query_RL(current_state)
click_positions.update(button_centers)
if any(a in action for a in ['label', "Label"]):
self.mode = "label"
if self.mode == "label":
self.previous_defect_feature = self.current_defect_feature
self.current_defect_feature = np.asarray(
current_state.crop(self.defect_zone).histogram()
)
if compare_features(self.current_defect_feature,
self.previous_defect_feature) < 97:
self.mode = "setup"
action = "strikeKey_SPACE"
else:
defect_type = self.Labeller.label_defect(
np.asarray(current_state.crop(self.defect_zone))
)
action = "strikeKey_" + Defects_Code[defect_type]
return action, click_positions
def compare_features(feature1, feature2):
if len(feature1) != len(feature2):
print("features MUST share the same shape")
print(len(feature1))
print(len(feature2))
return None
return np.sqrt(
np.mean((feature1.flatten()-feature2.flatten())**2)
)
if __name__ == "__main__":
Operator = SCS_Operator()
test_idx = 0
testing = True
while testing:
test_idx += 1
print("\n\t\t[TEST]", test_idx)
cmd = input("Press C/c/Q/q to stop and any key else to test ")
if cmd in ['c', "C", 'q', "Q"]:
testing = False
break
# Reset Operator
Operator.Configurer.be_ready()
current_moves = 0
while Operator.Configurer.on_duty or \
current_moves>Config['MaxMovesPerEpisode']:
current_moves += 1
print("\nMOVE {} -------".format(current_moves))
_ = input("Insert path to image ")
current_state = Image.open() # Operator.Configurer.observe() # PIL image
action, click_positions = Operator.propose_action(current_state)
action_args = dict()
if action in click_positions.keys():
action_args['click_x'] = click_positions[action][1]
action_args['click_y'] = click_positions[action][0]
print(action)
Operator.Configurer.does(action, **action_args)