-
Notifications
You must be signed in to change notification settings - Fork 23
/
decoder.py
58 lines (48 loc) · 1.69 KB
/
decoder.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
from PIL import Image
from keygen import *
from keygen_1 import *
from utils import *
import argparse
import getpass
def decode(image_path, pwd):
extension=image_path.split('.')[-1]
try:
im = Image.open(image_path, "r")
except FileNotFoundError:
print ('Image path is incorrect. Try again.')
exit(0)
im = Image.open(image_path, "r")
arr = im.load() # pixel data stored in this 2D array
(W, H) = im.size
print(W, H)
degree= int(0.36*W*H)
KEY = generate_tuples(H, W, pwd)
KEY1 = generate_tuples_1(H, W, pwd)
for i in range(4):
# ith Wave
first = cascade(KEY1[3 - i][0:2], degree, W, H)
second = cascade(KEY1[3 - i][2:], degree, W, H)
automate_swap_dec(first, second, degree + 1, im, arr)
for i in range(4):
# ith Wave
first = cascade(KEY[3 - i][0:2], degree, W, H)
second = cascade(KEY[3 - i][2:], degree, W, H)
automate_swap_dec(first, second, degree + 1, im, arr)
color(arr,KEY[0][0:3],W,H)
tokenized= image_path.split('.')
saved_path= tokenized[0]+'_dec.'+tokenized[1]
# im.show() #To display the image im
im.save(saved_path)
return (im,arr,saved_path)
if __name__=='__main__':
parser = argparse.ArgumentParser()
parser.add_argument('--path', help='absolute/relative path to the image file')
args = parser.parse_args()
image_path = args.path
if(image_path is None):
print ('Please provide the path to image file. Try again.')
exit(0)
# degree = int(input("Enter degree: "))
pwd = getpass.getpass("Enter password: ")
(im,arr,saved_path)=decode(image_path,pwd)
efficiency_calc(image_path,im,arr,saved_path)