-
Notifications
You must be signed in to change notification settings - Fork 13
/
OverrlayLabelOnImage.py
27 lines (27 loc) · 1.26 KB
/
OverrlayLabelOnImage.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
import numpy as np
###################Overlay Label on image Mark label on the image in transperent form###################################################################################
def OverLayLabelOnImage(ImgIn,Label,W):
#ImageIn is the image
#Label is the label per pixel
# W is the relative weight in which the labels will be marked on the image
# Return image with labels marked over it
Img=ImgIn.copy()
TR = [0,1, 0, 0, 0, 1, 1, 0, 0, 0.5, 0.7, 0.3, 0.5, 1, 0.5]
TB = [0,0, 1, 0, 1, 0, 1, 0, 0.5, 0, 0.2, 0.2, 0.7, 0.5, 0.5]
TG = [0,0, 0, 0.5, 1, 1, 0, 1, 0.7, 0.4, 0.7, 0.2, 0, 0.25, 0.5]
R = Img[:, :, 0].copy()
G = Img[:, :, 1].copy()
B = Img[:, :, 2].copy()
for i in range(Label.max()+1):
if i<len(TR): #Load color from Table
R[Label == i] = TR[i] * 255
G[Label == i] = TG[i] * 255
B[Label == i] = TB[i] * 255
else: #Generate random label color
R[Label == i] = np.mod(i*i+4*i+5,255)
G[Label == i] = np.mod(i*10,255)
B[Label == i] = np.mod(i*i*i+7*i*i+3*i+30,255)
Img[:, :, 0] = Img[:, :, 0] * (1 - W) + R * W
Img[:, :, 1] = Img[:, :, 1] * (1 - W) + G * W
Img[:, :, 2] = Img[:, :, 2] * (1 - W) + B * W
return Img