-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_vapory.py
272 lines (198 loc) · 10.4 KB
/
test_vapory.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
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
import vapory
import matplotlib.pyplot as plt
import numpy as np
from scipy.misc import imsave,imread
import subprocess
import os
import shutil
tempfolder='./tmp'
if not os.path.isdir(tempfolder):
os.mkdir(tempfolder)
class AmbientLight(vapory.POVRayElement):
def __init__(self,color):
self.color=color
def __str__(self):
return 'ambient_light rgb <%d,%d,%d>'%(self.color[0], self.color[1],self.color[2])
def compute_image_and_depth(scene,width,height,tempfilename='__tmp__'):
pov_file = os.path.join(tempfolder,tempfilename+'.pov')
strscene=str(scene)
strscene='#include "pprocess.inc"\n PP_Init_Depth_Output()\n'+strscene
with open(pov_file, 'w+') as f:
f.write(strscene)
cmd='./megapov +FN16 +Q9 -UV +w%d +h%d +A0.01 +L. +K0.0 %s +O%s.png'%(width,height,pov_file,os.path.join(tempfolder,tempfilename))
print subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE).stdout.read()
shutil.move(tempfilename+'.depth', os.path.join(tempfolder,tempfilename)+'.depth')# strange that megapov put the file locally
depth=np.fromfile(os.path.join(tempfolder,tempfilename)+'.depth',dtype=np.float)
depth2=depth.byteswap()# the data is save in the little indian forma tin the file
depth3=depth2.reshape((height,width))
return depth3
def compute_occlusion_and_disparities(basefile1,basefile2):
cmd='./vlpov_motionfield2 %s %s'%(os.path.join(tempfolder,basefile1),os.path.join(tempfolder,basefile2))
print subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE).stdout.read()
file_occ=os.path.join(tempfolder,basefile1+'.'+basefile2+'.occ.tif')
occ=imread(file_occ)
imsave(os.path.join(tempfolder,'occlusion_left.png'), occ)
file_occ=os.path.join(tempfolder,basefile2+'.'+basefile1+'.occ.tif')
occ=imread(file_occ)
imsave(os.path.join(tempfolder,'occlusion_right.png'), occ)
file_mx=os.path.join(tempfolder,basefile1+'.'+basefile2+'.mx.tif')
plt.subplot(1,2,1)
mx=imread(file_mx)
plt.imshow(mx)
imsave(os.path.join(tempfolder,'motionfield_mx_left.png'), mx)
file_my=os.path.join(tempfolder,basefile2+'.'+basefile1+'.mx.tif')
plt.subplot(1,2,1)
mx=imread(file_my)
plt.imshow(mx)
imsave(os.path.join(tempfolder,'motionfield_mx_right.png'), mx)
def generateStereoPair(scene_left,scene_right,useRadiosity):
#camera_left = vapory.Camera( 'location', [0-delta,0,-5], 'look_at', [0-delta,0,0] ,'focal_point', [0, 0, 0],'aperture', 0.4,'blur_samples', 50) # <= Increase for better quality
#camera_right = vapory.Camera( 'location', [0+delta,0,-5], 'look_at', [0+delta,0,0],'focal_point', [0, 0, 0],'aperture', 0.4, 'blur_samples', 50) # <= Increase for better quality
if useRadiosity:
radiosity = vapory.Radiosity(
'brightness', 2.0,
'count', 100,
'error_bound', 0.15,
'gray_threshold', 0.0,
'low_error_factor', 0.2,
'minimum_reuse', 0.015,
'nearest_count', 10,
'recursion_limit', 5,
'adc_bailout', 0.01,
'max_sample', 0.5,
'media off',
'normal off',
'always_sample', 1,
'pretrace_start', 0.08,
'pretrace_end', 0.01)
scene_left.global_settings=[radiosity]
scene_right.global_settings=[radiosity]
else:
scene_left.global_settings=[]
scene_right.global_settings=[]
print str(scene_left)
# geting the depth , this should be moved inside vapory ?
basefile1='__tmpleft__'
basefile2='__tmpright__'
depth3=compute_image_and_depth(scene_left,width=300, height=200,tempfilename=basefile1)
maxdepth=np.max(depth3[depth3<10000000])
depth4=np.minimum(depth3,maxdepth )
plt.ion()
imsave(os.path.join(tempfolder,'left_depth.png'),-depth4)
depth3=compute_image_and_depth(scene_right,width=300, height=200,tempfilename=basefile2)
maxdepth=np.max(depth3[depth3<10000000])
depth4=np.minimum(depth3,maxdepth )
plt.ion()
imsave(os.path.join(tempfolder,'right_depth.png'),-depth4)
plt.imshow(depth4)
compute_occlusion_and_disparities(basefile1,basefile2)
image_left=imread(os.path.join(tempfolder,basefile1+'.png'))
image_right=imread(os.path.join(tempfolder,basefile2+'.png'))
# for some reason adding the line #include "pprocess.inc"\n PP_Init_Depth_Output()\n'
# at the begining of the povray file (.pov) to compute the depth seems to change the focal of the camera
#image_left = scene_left.render ( width=300, height=200,antialiasing = 0.001,quality=9)
#image_right = scene_right.render( width=300, height=200,antialiasing = 0.001,quality=9)
return image_left,image_right
def generateScenes():
delta=0.1
nbcubes=100
light = vapory.LightSource( [2,4,-7], 'color', [2,2,2] )
ambientlight=AmbientLight([1,1,1])
objects=[light]
rotation=[np.random.rand()*180,np.random.rand()*180,np.random.rand()*180]
for k in range(nbcubes):
center=[0+np.random.randn()*3,0+np.random.randn()*2,0+np.random.rand()*2]
#sphere=vapory.Sphere( center, 0.5, vapory.Pigment( 'color', [1,1,1]))
#sphere=vapory.Sphere( center, 0.5, vapory.Pigment( 'color', np.random.rand(3) ),vapory.Finish('phong', 0.8,'reflection', 0.5))
#objects.append(sphere)
#center=[0+np.random.randn()*2,0+np.random.randn()*2,0+np.random.rand()*2]
#objects.append(vapory.Box( [-0.5,-0.5,-0.5], [ 0.5,0.5,0.5 ], 'rotate',rotation , 'translate',center ,vapory.Pigment( 'color', np.random.rand(3) ),vapory.Finish('phong', 0.8,'reflection', 0.0)))
#center=[0+np.random.randn()*2,0+np.random.randn()*2,0+np.random.rand()*1.0]
#sphere=vapory.Sphere( center, 0.5, vapory.Pigment( 'color', [1,1,1]))
#sphere=vapory.Sphere( center, 0.5, vapory.Pigment( 'color', np.random.rand(3) ),vapory.Finish('phong', 0.8,'reflection', 0.5))
#objects.append(sphere)
center=[0+np.random.randn()*3,0+np.random.randn()*2,0+np.random.rand()*2]
#objects.append(vapory.Box( [-0.5,-0.5,-0.5], [ 0.5,0.5,0.5 ], 'rotate',rotation , 'translate',center ,vapory.Pigment( 'color', np.random.rand(3) ),vapory.Finish('phong', 0.8,'reflection', 0.1)))
#objects.append(vapory.Box( [-0.5,-0.5,-0.5], [ 0.5,0.5,0.5 ], 'rotate',rotation , 'translate',center ,vapory.Pigment( 'color',[1,1,1] )))
#objects.append(vapory.Box( [-0.5,-0.5,-0.5], [ 0.5,0.5,0.5 ], 'rotate',rotation , 'translate',center,vapory.Texture('Rosewood')))
objects.append(vapory.Box( [-0.5,-0.5,-0.5], [ 0.5,0.5,0.5 ], 'rotate',rotation , 'translate',center,vapory.Texture('White_Marble')))
#ground = vapory.Plane([0,1,0],0, vapory.Texture('Rosewood'))
#objects.append(ground)
camera_left = vapory.Camera( 'location', [0-delta,0,-5], 'look_at', [0-delta,0,0] ) # <= Increase for better quality
camera_right = vapory.Camera( 'location', [0+delta,0,-5], 'look_at', [0+delta,0,0]) # <= Increase for better quality
scene_left = vapory.Scene( camera_left, objects= objects,included = ["colors.inc", "textures.inc"],)
scene_right = vapory.Scene( camera_right, objects= objects,included = ["colors.inc", "textures.inc"],)
return scene_left,scene_right
def bilinear_interpolate(im, x, y):
"""standard bilinear interpolation of an image over a set of non integer coordinates,
might be found"""
x = np.asarray(x)
y = np.asarray(y)
x0 = np.floor(x).astype(int)
x1 = x0 + 1
y0 = np.floor(y).astype(int)
y1 = y0 + 1
x0 = np.clip(x0, 0, im.shape[1]-1);
x1 = np.clip(x1, 0, im.shape[1]-1);
y0 = np.clip(y0, 0, im.shape[0]-1);
y1 = np.clip(y1, 0, im.shape[0]-1);
Ia = im[ y0, x0 ]
Ib = im[ y1, x0]
Ic = im[ y0, x1 ]
Id = im[ y1, x1 ]
wa = (x1-x) * (y1-y)
wb = (x1-x) * (y-y0)
wc = (x-x0) * (y1-y)
wd = (x-x0) * (y-y0)
return wa*Ia + wb*Ib + wc*Ic + wd*Id
def estimateDisparity(image_left,image_right,method='SGBM'):
if method=='SGBM':
import cv2
disparityrange=[0,15]
ndisparities=int(np.ceil(disparityrange[1]-disparityrange[0]) )
ndisparities=16*int(np.ceil(float(ndisparities)/16))
minDisparity=int(np.floor(disparityrange[0]))
#stereo = cv2.StereoBM(cv2.STEREO_BM_BASIC_PRESET,ndisparities=ndisparities, SADWindowSize=15)
#stereo = cv2.StereoSGBM(minDisparity=mindisparity,numDisparities=ndisparities, SADWindowSize=15,P1=10000,P2=0)
stereo = cv2.StereoSGBM(minDisparity=minDisparity,numDisparities=ndisparities, SADWindowSize=3,P1=30,P2=30)
right_disparity = stereo.compute(image_left[:,:,0],image_right[:,:,0])# does not work in color...
right_disparity=right_disparity/16.
elif method=='BM':
stereo = cv2.StereoBM(cv2.STEREO_BM_BASIC_PRESET,ndisparities=ndisparities, SADWindowSize=5)
right_disparity = stereo.compute(image_left[:,:,0],image_right[:,:,0],disptype=cv2.CV_32F)# does not work in color...
return right_disparity
def disparityEvaluation(image_right,right_disparity):
# wrap images
x,y=np.meshgrid(np.arange(right_disparity.shape[1]),np.arange(right_disparity.shape[0]))
x2=-right_disparity+ x
image_left2=bilinear_interpolate(image_right[:,:,0], x2,y)
image_left2=np.tile(image_left2[:,:,None],(1,1,3)).astype(np.uint8)
plt.figure()
print "done"
return {'image_left2':image_left2}
if __name__ == "__main__":
np.random.seed(1)
scene_left,scene_right=generateScenes()
image_left,image_right=generateStereoPair(scene_left,scene_right,useRadiosity=True)
right_disparity=estimateDisparity(image_left,image_right,method='SGBM')
plt.ion()
plt.figure()
plt.imshow(right_disparity,'gray')
plt.show()
d=disparityEvaluation(image_right,right_disparity)
plt.imshow(d['image_left2'])
imsave(os.path.join(tempfolder,"image_left2.png"),d['image_left2'])
print "done"
imsave(os.path.join(tempfolder,'image_left2.png'),image_left)
imsave(os.path.join(tempfolder,'image_right2.png'),image_right )
imsave(os.path.join(tempfolder,'left_disparity.png'),right_disparity )
plt.ion()
plt.figure()
plt.subplot(2,2,1)
plt.imshow(image_left)
plt.subplot(2,2,2)
plt.imshow(image_right)
plt.subplot(2,2,4)
plt.imshow(right_disparity)
plt.subplot(2,2,3)
plt.imshow(d['image_left2'])