项目作者: doantumy

项目描述 :
3D Reconstruction using Kinect V2 in Matlab
高级语言: Matlab
项目地址: git://github.com/doantumy/Computer-Vision.git
创建时间: 2018-04-08T13:43:29Z
项目社区:https://github.com/doantumy/Computer-Vision

开源协议:

下载


[Computer Vision] 3D Reconstruction using Kinect V2

Purpose

The objective of the last practical session is to perform 3D reconstruction using a pair of Kinect V2 camera.

Task

  • You have been familiarized with Kinect V2 and the technology behind it.
  • We acquired data from Microsoft Kinect V2 for Windows using MATLAB and you experienced how to interact with the RGB camera and 3D depth sensor.
  • For this project, you will be given a series of color and depth image pairs (most of them were acquired for calibration purpose, the last pair corresponds to the scene to reconstruct using a point cloud).
  • A point cloud (in the 3D world reference frame) is a way to represent the external surface of an object.

Submission

Your work is now to complete the following tasks:

  1. Calibrate the two RGB cameras using the checkerboard calibration technique.
  • Detect the corner points of the checkerboard
  • Calibrate each camera separately (to get intrinsic parameters)
  • Calibrate one camera with respect of each other(to get extrinsic parameters)
  1. Calibrate the two depth cameras with respect of RGB data using the knowledge that you have concerning the transformation that relies a RGB camera to a depth camera in a Kinect setup (see Kinect Parameters.m)

  2. Perform 3D reconstruction

  • Back project the depth computed from Kinect disparity to real world coordinate using depth camera calibration parameter.
  • Associate the real world coordinate information (obtained from back projected depth) with the color camera using the transformation between color and depth camera.
  • Project the transformed information (from previous step) to the color camera.
  1. Write a report summarizing: (a) the methods you implemented, (b) the problems you faced and the solutions tested to solve these problems, (c) the results you obtained and how you checked the accuracy of your results, (d) discuss and comment your work. Submit also your code and resulting images.

Material and References

Contributors