March 2018
Beginner to intermediate
306 pages
9h 54m
English
You need to complete the following steps:
import cv2import numpy as np
data = np.load('../data/stereo/case1/stereo.npy').item()E = data['E']
R1, R2, T = cv2.decomposeEssentialMat(E)
print('Rotation 1:')print(R1)print('Rotation 2:')print(R2)print('Translation:')print(T)