Zusammenfassung der Ressource
Class StereoPair
- ChessBoardFinder
- cv2.findChessboardCorners(frame,
(columns, rows),
flags=cv2.CALIB_CB_FAST_CHECK)
- CalibratedPair
Anmerkungen:
- Get_frames
- frames = super(CalibratedPair, self).get_frames()
return self.calibration.rectify(frames)
- rectify(frames)
- Get_point_ cloud
- self.block_matcher.get_disparity(pair)
- disparity
- self.block_matcher.get_3d(disparity,
self.calibration.disp_to_depth_mat)
- points
- cv2.cvtColor(pair[0], cv2.COLOR_BGR2RGB)
- colors
- PointCloud(points, colors)