-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiff.py
150 lines (125 loc) · 5.6 KB
/
diff.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
import json
from PIL import Image
def paste_center(bg_img, fg_img):
"""
This function is to copy an image to a new resolution where the image keep it original size and positioned
in the center of the new image.
The new image is filled with black pixels.
:param bg_img:
:param fg_img:
:return:
"""
x = (bg_img.width - fg_img.width) // 2
y = (bg_img.height - fg_img.height) // 2
bg_img.paste(fg_img, (x, y))
def is_same_color(color1, color2):
"""
This function to determine if a pixel is the same color with the next pixel.
Since our pattern is a checkoard of non-black color at the border 5% of the image, we can use this thechnique.
:param color1:
:param color2:
:return:
"""
# color1[:3] == color2[:3] != (0,0,0) is not working.
# This hack is fine as the pixel we're looking is from a white color, and since windows dimmed the color
# Those RGB will be reduced by the same amount.
return color1[0] == color1[1] == color1[2] == color2[0] == color2[1] == color2[2] != 0
def find_white_pixel_distances(ref_img):
"""
This function is to find the distance between the white, solid color pixel on the left, right, top and bottom side.
:param ref_img:
:return:
"""
width, height = ref_img.size
center_y = height // 2
center_x = width // 2
left_distance, right_distance, top_distance, bottom_distance = None, None, None, None
# Search for white pixel on the left side
for x in range(width // 2):
pixel_color = ref_img.getpixel((x, center_y))
next_pixel_color = ref_img.getpixel((x + 1, center_y))
if is_same_color(pixel_color, next_pixel_color):
left_distance = x
break
# Search for white pixel on the right side
for x in range(width - 1, width // 2, -1):
pixel_color = ref_img.getpixel((x, center_y))
next_pixel_color = ref_img.getpixel((x - 1, center_y))
if is_same_color(pixel_color, next_pixel_color):
right_distance = x - (width // 2)
break
# search for white pixel on the top side
for y in range(height // 2):
pixel_color = ref_img.getpixel((center_x, y))
next_pixel_color = ref_img.getpixel((center_x, y + 1))
if is_same_color(pixel_color, next_pixel_color):
top_distance = y
break
# search for white pixel on the bottom side
for y in range(height - 1, height // 2, -1):
pixel_color = ref_img.getpixel((center_x, y))
next_pixel_color = ref_img.getpixel((center_x, y - 1))
if is_same_color(pixel_color, next_pixel_color):
bottom_distance = y - (height // 2)
break
return left_distance, right_distance, top_distance, bottom_distance
def cut_edges_and_resize(ref_img, zoomed_distances, ref_distances):
# this need trial and error
# But let's set an initial value
left_diff = ref_distances[0] - zoomed_distances[0]
right_diff = ref_img.width - (ref_distances[1] - zoomed_distances[1])
top_diff = ref_distances[2] - zoomed_distances[2]
bottom_diff = ref_img.height - (ref_distances[3] - zoomed_distances[3])
while True:
print(f"left_diff: {left_diff}, right_diff: {right_diff}, top_diff: {top_diff}, bottom_diff: {bottom_diff}")
crop_ref_img = ref_img.crop((left_diff, top_diff, right_diff, bottom_diff))
res_ref_img = crop_ref_img.resize(ref_img.size)
cropped_white_distances = find_white_pixel_distances(res_ref_img)
if zoomed_distances == cropped_white_distances:
break
print(f"cropped_white_distances: {cropped_white_distances}")
print(f"zoomed_distances: {zoomed_distances}")
if cropped_white_distances[0] < zoomed_distances[0]:
left_diff -= 1
elif cropped_white_distances[0] > zoomed_distances[0]:
left_diff += 1
if cropped_white_distances[1] < zoomed_distances[1]:
right_diff -= 1
elif cropped_white_distances[1] > zoomed_distances[1]:
right_diff += 1
if cropped_white_distances[2] < zoomed_distances[2]:
top_diff -= 1
elif cropped_white_distances[2] > zoomed_distances[2]:
top_diff += 1
if cropped_white_distances[3] < zoomed_distances[3]:
bottom_diff -= 1
elif cropped_white_distances[3] > zoomed_distances[3]:
bottom_diff += 1
return left_diff, top_diff, right_diff, bottom_diff
def main():
with open("config.json") as f:
config = json.load(f)
lockscreen_image_path = config["input"]["lockscreen"]
password_screen_image_path = config["input"]["password"]
source_image_path = config["input"]["source"]
source_cropped_path = config["output"]["source_cropped"]
source_resized_path = config["output"]["source_resized"]
lockscreen_img = Image.open(lockscreen_image_path)
password_img = Image.open(password_screen_image_path)
source_img = Image.open(source_image_path)
ref_distances = find_white_pixel_distances(lockscreen_img)
zoomed_distances = find_white_pixel_distances(password_img)
crop_box = cut_edges_and_resize(lockscreen_img, zoomed_distances, ref_distances)
resized_img = source_img.resize(lockscreen_img.size)
try:
resized_img.save(source_resized_path)
except OSError:
resized_img.convert('RGB').save(source_resized_path)
cropped_img = resized_img.crop(crop_box)
resized_img = cropped_img.resize(lockscreen_img.size)
try:
resized_img.save(source_cropped_path)
except OSError:
resized_img.convert('RGB').save(source_cropped_path)
if __name__ == '__main__':
main()