-
Notifications
You must be signed in to change notification settings - Fork 4
/
main.py
133 lines (119 loc) · 4.38 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
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
import numpy as np
import cv2 as cv
from screeninfo import get_monitors
from cv2 import getTrackbarPos as gtp
from datetime import datetime
import subprocess as sb
import os
drawing = False
min_width = 300
min_height = 300
height = 500
width = 700
brushColor = [255, 255, 255]
brushSize = 2
mode = True
screenDim = (get_monitors()[0].height, get_monitors()[0].width)
ix, iy = -1, -1
changes = []
redoList = []
startIndexOfChange = 0
oneTimeChange = []
oneTimeRedo = []
backgroundColor = [0,0,0]
# does nothing but needed for Trackbar
def nothing(t):
pass
def draw(event, x, y, flags, param):
global startIndexOfChange,drawing, brushColor, brushSize, ix, iy
if event == cv.EVENT_LBUTTONDOWN:
drawing = True
ix, iy = x, y
startIndexOfChange = len(changes)
elif event == cv.EVENT_MOUSEMOVE:
if drawing == True:
changes.append([(ix,iy),(x,y),tuple(brushColor),brushSize])
ix, iy = x, y
elif event == cv.EVENT_LBUTTONUP:
drawing = False
changes.append([(ix, iy), (x, y), tuple(brushColor), brushSize])
endIndexOfChange = len(changes)
oneTimeChange.append((startIndexOfChange, endIndexOfChange))
def drawChanges(img, changes):
for i in changes:
cv.line(img, i[0], i[1],i[2], i[3])
return img
cv.namedWindow('Controls')
# controls for color and brush size
cv.createTrackbar('R', 'Controls', 0, 255, nothing)
cv.createTrackbar('G', 'Controls', 0, 255, nothing)
cv.createTrackbar('B', 'Controls', 0, 255, nothing)
cv.createTrackbar('Background Color', 'Controls', 255, 255, nothing)
cv.createTrackbar('Brush Size', 'Controls', 5, 20, nothing)
cv.createTrackbar('Eraser Size', 'Controls', 10, 50, nothing)
# controls for window size
cv.createTrackbar('Height', 'Controls', height, screenDim[0]-105, nothing)
cv.createTrackbar('Width', 'Controls', width, screenDim[1], nothing)
cv.namedWindow("Paint")
cv.setMouseCallback('Paint', draw)
while True:
temp = gtp('Background Color', 'Controls')
backgroundColor = [temp,temp,temp]
height = max(300,gtp('Height', 'Controls'))
width = max(300,gtp('Width', 'Controls'))
img = np.zeros((height, width, 3), np.uint8)
cv.rectangle(img, (0,0), (width, height), tuple(backgroundColor), -1)
img = drawChanges(img, changes)
cv.imshow('Paint', img)
k = cv.waitKey(1) & 0xFF
if k == 27:
# 27 is for escape key
break
elif k == ord('s'):
print("Saving...")
exists = sb.run("ls | grep savedImages", shell = True, capture_output = True)
if exists.stdout.decode("utf-8") == "":
os.system("mkdir savedImages")
curr = str(datetime.now()).split()
cv.imwrite("./savedImages/BoardDrawing_"+curr[0]+"_"+curr[1]+".png", img[:, :img.shape[1]-60])
elif k == ord('e'):
# eraser mode toggle
mode = not mode
elif k == ord('n'):
# erase everything and start new board
changes = []
elif k == ord('z'):
if len(oneTimeChange) > 0:
otc = oneTimeChange[len(oneTimeChange)-1]
# for redo
oneTimeRedo.append((len(redoList),len(redoList)+otc[1]-otc[0]))
for i in changes[otc[0]:otc[1]+1]:
redoList.append(i)
changes = changes[:otc[0]]
oneTimeChange = oneTimeChange[:len(oneTimeChange)-1]
else:
pass
elif k == ord('y'):
if len(oneTimeRedo) > 0:
otc = oneTimeRedo[len(oneTimeRedo)-1]
oneTimeChange.append((len(changes),len(changes)+otc[1]-otc[0]))
for i in redoList[otc[0]:otc[1]+1]:
changes.append(i)
redoList = redoList[:otc[0]]
oneTimeRedo = oneTimeRedo[:len(oneTimeRedo)-1]
else:
pass
# allow atmost 10 undos(to avoid memory issues)
if len(oneTimeChange) > 10:
oneTimeChange = oneTimeChange[len(oneTimeChange)-10:]
if mode == False:
# when eraser mode on then brush color = background color
brushColor = backgroundColor
brushSize = max(1,gtp('Eraser Size', 'Controls'))
else:
brushColor = [gtp('B', 'Controls'), gtp('G', 'Controls'), gtp('R', 'Controls')]
brushSize = max(1,gtp('Brush Size', 'Controls'))
currentColorImg = np.zeros((200, 350, 3), np.uint8)
cv.rectangle(currentColorImg, (0,0), (350, 200), tuple(brushColor), -1)
cv.imshow("Controls", currentColorImg)
cv.destroyAllWindows()