-
Notifications
You must be signed in to change notification settings - Fork 597
/
depthMaps.py
33 lines (19 loc) · 861 Bytes
/
depthMaps.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
import numpy as np
import cv2 as cv
from matplotlib import pyplot as plt
#left_image = cv.imread('tsukuba_l.png', cv.IMREAD_GRAYSCALE)
#right_image = cv.imread('tsukuba_r.png', cv.IMREAD_GRAYSCALE)
left_image = cv.imread('items_l.png', cv.IMREAD_GRAYSCALE)
right_image = cv.imread('items_r.png', cv.IMREAD_GRAYSCALE)
#left_image = cv.imread('items2_l.png', cv.IMREAD_GRAYSCALE)
#right_image = cv.imread('items2_r.png', cv.IMREAD_GRAYSCALE)
stereo = cv.StereoBM_create(numDisparities=0, blockSize=21)
# For each pixel algorithm will find the best disparity from 0
# Larger block size implies smoother, though less accurate disparity map
depth = stereo.compute(left_image, right_image)
print(depth)
cv.imshow("Left", left_image)
cv.imshow("right", right_image)
plt.imshow(depth)
plt.axis('off')
plt.show()