-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBackgroundExtraction.py
More file actions
206 lines (176 loc) · 7.39 KB
/
Copy pathBackgroundExtraction.py
File metadata and controls
206 lines (176 loc) · 7.39 KB
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
# ================================================
# Program to extract foreground from a image
# using interactive window
# ================================================
import cv2
import sys
import numpy as np
import matplotlib.pyplot as plt
from skimage.segmentation import slic
from skimage.segmentation import mark_boundaries
from skimage.data import astronaut
from skimage.util import img_as_float
import maxflow
from scipy.spatial import Delaunay
def help_message():
print("Usage: [Input_Image] [Input_Marking] [Output_Directory]")
print("[Input_Image]")
print("Path to the input image")
print("[Input_Marking]")
print("Path to the input marking")
print("[Output_Directory]")
print("Output directory")
print("Example usages:")
print(sys.argv[0] + " astronaut.png " + "astronaut_marking.png " + "./")
# Calculate the SLIC superpixels, their histograms and neighbors
def superpixels_histograms_neighbors(img):
# SLIC
segments = slic(img, n_segments=727, compactness=22)
segments_ids = np.unique(segments)
# centers
centers = np.array([np.mean(np.nonzero(segments==i),axis=1) for i in segments_ids])
# H-S histograms for all superpixels
hsv = cv2.cvtColor(img.astype('float32'), cv2.COLOR_BGR2HSV)
bins = [20, 20] # H = S = 20
ranges = [0, 360, 0, 1] # H: [0, 360], S: [0, 1]
colors_hists = np.float32([cv2.calcHist([hsv],[0, 1], np.uint8(segments==i), bins, ranges).flatten() for i in segments_ids])
# neighbors via Delaunay tesselation
tri = Delaunay(centers)
return (centers,colors_hists,segments,tri.vertex_neighbor_vertices)
# Get superpixels IDs for FG and BG from marking
def find_superpixels_under_marking(marking, superpixels):
fg_segments = np.unique(superpixels[marking[:,:,0]!=255])
bg_segments = np.unique(superpixels[marking[:,:,2]!=255])
return (fg_segments, bg_segments)
# Sum up the histograms for a given selection of superpixel IDs, normalize
def cumulative_histogram_for_superpixels(ids, histograms):
h = np.sum(histograms[ids],axis=0)
return h / h.sum()
# Get a bool mask of the pixels for a given selection of superpixel IDs
def pixels_for_segment_selection(superpixels_labels, selection):
pixels_mask = np.where(np.isin(superpixels_labels, selection), True, False)
return pixels_mask
# Get a normalized version of the given histograms (divide by sum)
def normalize_histograms(histograms):
return np.float32([h / h.sum() for h in histograms])
# Perform graph cut using superpixels histograms
def do_graph_cut(fgbg_hists, fgbg_superpixels, norm_hists, neighbors):
num_nodes = norm_hists.shape[0]
# Create a graph of N nodes, and estimate of 5 edges per node
g = maxflow.Graph[float](num_nodes, num_nodes * 5)
# Add N nodes
nodes = g.add_nodes(num_nodes)
hist_comp_alg = cv2.HISTCMP_KL_DIV
# Smoothness term: cost between neighbors
indptr,indices = neighbors
for i in range(len(indptr)-1):
N = indices[indptr[i]:indptr[i+1]] # list of neighbor superpixels
hi = norm_hists[i] # histogram for center
for n in N:
if (n < 0) or (n > num_nodes):
continue
# Create two edges (forwards and backwards) with capacities based on
# histogram matching
hn = norm_hists[n] # histogram for neighbor
g.add_edge(nodes[i], nodes[n], 20-cv2.compareHist(hi, hn, hist_comp_alg),
20-cv2.compareHist(hn, hi, hist_comp_alg))
# Match term: cost to FG/BG
for i,h in enumerate(norm_hists):
if i in fgbg_superpixels[0]:
g.add_tedge(nodes[i], 0, 1000) # FG - set high cost to BG
elif i in fgbg_superpixels[1]:
g.add_tedge(nodes[i], 1000, 0) # BG - set high cost to FG
else:
g.add_tedge(nodes[i], cv2.compareHist(fgbg_hists[0], h, hist_comp_alg),
cv2.compareHist(fgbg_hists[1], h, hist_comp_alg))
g.maxflow()
return g.get_grid_segments(nodes)
def RMSD(target, master):
# Note: use grayscale images only
# Get width, height, and number of channels of the master image
master_height, master_width = master.shape[:2]
master_channel = len(master.shape)
# Get width, height, and number of channels of the target image
target_height, target_width = target.shape[:2]
target_channel = len(target.shape)
# Validate the height, width and channels of the input image
if (master_height != target_height or master_width != target_width or master_channel != target_channel):
return -1
else:
total_diff = 0.0;
dst = cv2.absdiff(master, target)
dst = cv2.pow(dst, 2)
mean = cv2.mean(dst)
total_diff = mean[0]**(1/2.0)
return total_diff;
fg = []
bg = []
flag=-1;
def capture(event, x, y, flags, param):
global fg,flag
# if the left mouse button was clicked, record the starting
# (x, y) coordinates and indicate that cropping is being
# performed
if event == cv2.EVENT_LBUTTONDOWN:
fg.append((x, y))
flag=1
elif event == cv2.EVENT_MOUSEMOVE:
if flag == 1:
fg.append((x, y))
elif flag == 2:
bg.append((x, y))
elif event == cv2.EVENT_LBUTTONUP:
fg.append((x, y))
flag = -1
for point in fg:
cv2.circle(img, tuple(point), 2, (0, 0, 255), thickness=2)
cv2.imshow("image", img)
elif event == cv2.EVENT_RBUTTONDOWN:
bg.append((x, y))
flag=2
elif event == cv2.EVENT_RBUTTONUP:
bg.append((x, y))
flag = -1
for point in bg:
cv2.circle(img, tuple(point), 2, (255, 0, 0), thickness=2)
cv2.imshow("image", img)
if __name__ == '__main__':
# validate the input arguments
if (len(sys.argv) != 4):
help_message()
sys.exit()
# global fg,bg
img = cv2.imread(sys.argv[1], cv2.IMREAD_COLOR)
img_org = img.copy()
while 1:
cv2.namedWindow("image")
cv2.setMouseCallback("image", capture)
clone = np.zeros(img.shape)
clone[:] = 255
cv2.imshow("image", img)
cv2.waitKey(0)
for point in fg:
cv2.circle(clone, tuple(point), 2, (0, 0, 255), thickness=2)
for point in bg:
cv2.circle(clone, tuple(point), 2, (255, 0, 0), thickness=2)
img_marking = clone
centers, color_hists, superpixels, neighbors = superpixels_histograms_neighbors(img_org)
fg_segments, bg_segments = find_superpixels_under_marking(img_marking, superpixels)
fg_cumulative_hist = cumulative_histogram_for_superpixels(fg_segments, color_hists)
bg_cumulative_hist = cumulative_histogram_for_superpixels(bg_segments, color_hists)
fgbg_hists = fg_cumulative_hist, bg_cumulative_hist
fgbg_superpixels = fg_segments, bg_segments
norm_hists = normalize_histograms(color_hists)
graph_cut = do_graph_cut(fgbg_hists, fgbg_superpixels, norm_hists, neighbors)
res = pixels_for_segment_selection(superpixels, np.nonzero(graph_cut))
res = np.uint8(res * 255)
cv2.imshow("res", res)
cv2.waitKey(0)
# master = cv2.imread("example_output.png", cv2.IMREAD_GRAYSCALE)
# print (RMSD(res, master))
output_name = sys.argv[3] + "mask.png"
cv2.imwrite(output_name, res);
img = img_org.copy()
fg = []
bg = []
flag = -1;