-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdebug_proj_images.py
51 lines (43 loc) · 2.19 KB
/
debug_proj_images.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
import os
import cv2
from include.stereo_fringe_process import Stereo_Fringe_Process
def main():
pixel_per_fringe = 256
steps = 6
path = '/home/tiagogiovenardi/Downloads/pixel_per_fringe_256_6-20240829T190213Z-001/pixel_per_fringe_256_6'.format(pixel_per_fringe,
steps)
# fringe = FringePattern(px_f=pixel_per_fringe, steps=steps)
left_files = sorted(os.listdir(os.path.join(path, 'left')))
right_files = sorted(os.listdir(os.path.join(path, 'right')))
# left_images = np.zeros((1200, 1600, len(left_files)), dtype=np.uint8)
# right_images = np.zeros((1200, 1600, len(right_files)), dtype=np.uint8)
stereo = Stereo_Fringe_Process(px_f=pixel_per_fringe, steps=steps)
for counter in range(len(left_files)):
left_image = cv2.imread(os.path.join(path, 'left', left_files[counter]), 0)
right_image = cv2.imread(os.path.join(path, 'right', right_files[counter]), 0)
# left_image = cv2.equalizeHist(left_image)
# right_image = cv2.equalizeHist(right_image)
stereo.set_images(image_left=left_image, image_right=right_image, counter=counter)
# concatenate = np.hstack((left_image, right_image))
# cv2.imshow('stereo', concatenate)
# cv2.waitKey(0)
stereo.calculate_phi_images()
# id_r = np.where(stereo.phi_image_right == np.pi)
# id_l = np.where(stereo.phi_image_left == np.pi)
# id_list_l = sorted(list(zip(id_l[0], id_l[1])))
# id_list_r = sorted(list(zip(id_r[0], id_r[1])))
# print('left')
# print(id_list_l)
# print('right')
# print(id_list_r)
# phi_stereo = np.hstack((stereo.phi_image_left, stereo.phi_image_right))
# cv2.imshow('phi stereo', phi_stereo)
# cv2.waitKey(0)
stereo.calculate_qsi_images()
stereo.calculate_remaped_qsi_images()
stereo.plot_abs_phase_map(name='Images - px_f:{} - steps:{}'.format(pixel_per_fringe, steps))
stereo.plot_phase_map(name='Images - px_f:{} - steps:{}'.format(pixel_per_fringe, steps))
stereo.plot_qsi_map(name='Images - px_f:{} - steps:{}'.format(pixel_per_fringe, steps))
print('wait')
if __name__ == '__main__':
main()