-
Notifications
You must be signed in to change notification settings - Fork 0
/
__main__.py
44 lines (30 loc) · 1.14 KB
/
__main__.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
"""
NAME
Show_Images_Differences
DESCRIPTION
Showing visual differences between images
========================================
Show_Images_Differences is used for developers to show visual differences
between the app's particular screen and reference created by the app's designer.
It aims to improve workflow for the programmer and also designer.
For a programmer this tool available instant check of the screen,
if it is done according to references.
For the designer, this tool relieve him/her from the task of constant checking,
if a particular screen was done according to the reference.
Of course, it can be used for any other matching images purposes
This program uses image recognition algorithms from https://opencv.org/
AUTHOR
Karol Łukaszczyk
e-mail: [email protected]
"""
# Python libs
import sys
# Internal libs
from manage import execute_from_command_line
if __name__ == "__main__":
try:
execute_from_command_line(sys.argv)
except Exception as e:
import traceback
traceback.print_exc()
input("Program crashed; press Enter to exit")