-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
67 lines (48 loc) · 2.19 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
# Importing libraries
import pandas as pd
import cv2
# Defining the function which takes R,G,B values as the input and give Color Name as output
def get_color_name(R, G, B):
minimum = 1000
for i in range(len(df)):
d = abs(R-int(df.loc[i, 'R'])) + abs(G - int(df.loc[i, 'G'])) + abs(B-int(df.loc[i, 'B']))
if d <= minimum:
minimum = d
color_name = df.loc[i, 'color_name']
return color_name
# Defining the function to get coordinates of mouse in image
def draw_function(event, x, y, flags, params):
global clicked, r, g, b, xpos, ypos
if event == cv2.EVENT_LBUTTONDOWN:
clicked, xpos, ypos = True, x, y
b, g, r = list(map(int, img[y, x]))
# Providing Path for image, csv file and reading & resizing the image
img_path = r"C:\Users\Pallav\Downloads\Color_Idetification_in_Images\imgs\img4.jpg"
csv_path = r"C:\Users\Pallav\Downloads\Color_Idetification_in_Images\colors.csv"
img = cv2.imread(img_path)
img = cv2.resize(img, (0, 0), fx = 0.5, fy = 0.5)
# Creating the dataframe for colors from csv file
index = ['color', 'color_name', 'hex', 'R', 'G', 'B']
df = pd.read_csv(csv_path, names=index, header=None)
print(df.head(5))
# Creating the window to display the image
cv2.namedWindow("Image")
cv2.setMouseCallback("Image", draw_function)
clicked, r, g, b, xpos, ypos = False, 0, 0, 0, 0, 0
# Executing the code for Color Identification in Image
while True:
cv2.imshow("Image", img)
if clicked:
# cv2.rectangle(image, startpoint, endpoint, color, thickness=-1) {-1 = fills entire rectangle }
cv2.rectangle(img, (20, 20), (600, 60), (b, g, r), -1)
# Creating the text for showing information
text = get_color_name(r, g, b) + ' R:' + str(r) + ' G:' + str(g) + ' B:' + str(b)
# cv2.putText(img,text,start,font(0-7),fontScale,color,thickness,lineType )
cv2.putText(img, text, (50, 50), 2, 0.8, (255, 255, 255), 2, cv2.LINE_AA)
# If the color is very light show the text in black color
if r+g+b >= 600:
cv2.putText(img, text, (50, 50), 2, 0.8, (0, 0, 0), 2, cv2.LINE_AA)
if cv2.waitKey(20) & 0xFF == 27:
break
cv2.destroyAllWindows()
# End of the Program