-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.py
executable file
·146 lines (123 loc) · 5.44 KB
/
demo.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
134
135
136
137
138
139
140
141
142
143
144
145
146
#!/usr/bin/env python3
import numpy as np
import cv2 as cv
import random
import os
from matplotlib import pyplot as pp
from code.StereoMatch import stereoMatch, calculatePointCloud, plotPointCloud
from code.Filter import removeBackground, zBand, interactiveZBand
from code.Data import loadImageSet, listImageSets
from code.Surface import cylindricalCoordinates, ransacSinoidFit, flattenSurface
from code.Anomaly import highlightAnomalies
try:
import pptk
INTERACTIVE = True
except:
print("Could not import module pptk, running non-interactively!")
INTERACTIVE = False
def demo(imset):
print(f"[1/5] Image Acquisition")
imageSet = loadImageSet(imset)
try:
os.mkdir(f"output/{imset}")
except FileExistsError:
pass
cv.imwrite(f"output/{imset}/00_reference.jpg",imageSet[0])
print(f" Wrote reference image to output/{imset}/00_reference.jpg")
print(f"[2/5] Semi-Global Stereo Matching")
disparity = stereoMatch(imageSet)
disparity_im = np.zeros([1200,1920,3],dtype=np.float32)
disparity_im[~np.isnan(disparity),0] = disparity[~np.isnan(disparity)]
disparity_im[~np.isnan(disparity),1] = disparity[~np.isnan(disparity)]
disparity_im[~np.isnan(disparity),2] = disparity[~np.isnan(disparity)]
disparity_im[np.isnan(disparity),:] = [220,0,220]
cv.imwrite(f"output/{imset}/01_disparity.jpg",disparity_im)
print(f" Wrote disparity image to output/{imset}/01_disparity.jpg")
print(f"[3/5] 3D Geometry Reconstruction")
vertices,match = calculatePointCloud(disparity)
print(f"[4/5] Robust Pipe Surface Fitting")
print(f" Removing errant points")
colorfilter = removeBackground(imageSet[0]).flatten()
mask = np.logical_and(match,colorfilter)
color = np.reshape(cv.cvtColor(imageSet[0],cv.COLOR_BGR2RGB),(1920*1200,3))[mask,:]/255.
color8b = np.reshape(cv.cvtColor(imageSet[0],cv.COLOR_BGR2RGB),(1920*1200,3))[mask,:]
if INTERACTIVE:
viewer0 = plotPointCloud(vertices[:,mask],color,[0.,0.,-2.],theta=0)
while True:
try:
zband = zBand(vertices,interactiveZBand(viewer0,vertices[:,mask]))
break
except ValueError:
print("Invalid selection, please select at least two points for a valid Z-range")
except KeyboardInterrupt:
raise KeyboardInterrupt
viewer0.close()
else:
zband = zBand(vertices,(-1.5,-2.0))
fitmask = np.logical_and(mask,zband)
print(f" Conversion to cylindrical coordinates")
ccoord = cylindricalCoordinates(vertices)
print(f" RANSAC Fourier series approximation")
model,_ = ransacSinoidFit(ccoord[:,fitmask],VERBOSE=True)
flattened = flattenSurface(ccoord,model)
print(f"[5/5] Anomaly Detection and Processing")
deviation = np.abs(flattened[2,mask].clip(-0.02,+0.02))
if INTERACTIVE:
viewer1 = plotPointCloud(vertices[:,mask],(deviation,color),[0.,0.,-2.])
pc = np.hstack([vertices[:,mask].T,flattened[[[2]],mask].T,color8b])
np.save(f"output/{imset}/02_pointcloud.npy",pc)
print(f" Wrote pointcloud to output/{imset}/02_pointcloud.npy")
if INTERACTIVE:
viewer2 = plotPointCloud(flattened[:,mask],(deviation,color),[0.,1.5,0.])
pc2 = np.hstack([flattened[[[2]],mask].T,flattened[:2,mask].T,color8b])
np.save(f"output/{imset}/03_fit.npy",pc2)
print(f" Wrote fit pointcloud to output/{imset}/03_fit.npy")
valid = flattened[2,:] <= 0.01
valid = np.logical_and(valid,mask)
score = np.mean(np.abs(flattened[2,valid].clip(-1,0)))
print(f" Global anomaly score: {1000*score:.3f}")
highlighted = highlightAnomalies(imageSet[0],flattened[2,:],mask)
cv.imwrite(f"output/{imset}/04_highlighted.jpg",highlighted)
print(f" Wrote highlighted image to output/{imset}/04_highlighted.jpg")
fit = pc2
sel = np.logical_and(np.logical_and(1.00<fit[:,2],fit[:,2]<2.5),np.abs(fit[:,0])<0.05)
limits = [np.min(fit[sel,1]),
np.max(fit[sel,1]),
np.min(fit[sel,2]),
np.max(fit[sel,2])]
pp.scatter(-fit[sel,1],fit[sel,2],s=1,c=fit[sel,3:6]/255.,marker='.')
pp.xlim(limits[0],limits[1])
pp.ylim(limits[2],limits[3])
pp.axis("off")
pp.tight_layout()
pp.savefig(f"output/{imset}/05_unfolded.jpg",dpi=300,pad_inches=0)
print(f" Wrote unfolded image to output/{imset}/05_unfolded.jpg")
pp.scatter(-fit[sel,1],fit[sel,2],s=1,c=fit[sel,0],marker='.',cmap='seismic',vmin=-0.025,vmax=0.025)
pp.xlim(limits[0],limits[1])
pp.ylim(limits[2],limits[3])
pp.axis("off")
pp.tight_layout()
pp.savefig(f"output/{imset}/06_anomaly.jpg",dpi=300,pad_inches=0)
print(f" Wrote anomaly image to output/{imset}/06_anomaly.jpg")
print(f"Done!")
if __name__=="__main__":
imageSets = listImageSets()
print(f"Found {len(imageSets)} image sets")
while True:
print(f"(L)ist, (R)andom, or enter a number 1-{len(imageSets)} to choose a set.")
inp = input()
if inp=="L" or inp=="l":
for i,im in enumerate(imageSets):
print(f"{i+1:2d}: {im}")
continue
elif inp=="R" or inp=='r':
imset = random.choice(imageSets)
break
try:
choice = int(inp)
imset = imageSets[choice-1]
break
except:
pass
print(f"Running pipeline on image set {imset}...")
demo(imset)