如何将深度图转换为3D点云?

时间:2018-04-01 14:15:13

标签: python point-cloud-library 3d-reconstruction

当我将深度图转换为3D点云时,我发现有一个称为缩放因子的术语。任何人都可以让我知道缩放因子实际上是什么。比例因子和焦距之间是否有任何关系。代码如下:

import argparse
import sys
import os
from PIL import Image

focalLength = 938.0
centerX = 319.5
centerY = 239.5
scalingFactor = 5000

def generate_pointcloud(rgb_file,depth_file,ply_file):

    rgb = Image.open(rgb_file)
    depth = Image.open(depth_file).convert('I')

    if rgb.size != depth.size:
        raise Exception("Color and depth image do not have the same 
resolution.")
    if rgb.mode != "RGB":
        raise Exception("Color image is not in RGB format")
    if depth.mode != "I":
        raise Exception("Depth image is not in intensity format")


    points = []    
    for v in range(rgb.size[1]):
        for u in range(rgb.size[0]):
            color = rgb.getpixel((u,v))
            Z = depth.getpixel((u,v)) / scalingFactor
            print(Z)
            if Z==0: continue
            X = (u - centerX) * Z / focalLength
            Y = (v - centerY) * Z / focalLength
            points.append("%f %f %f %d %d %d 0\n"% 

1 个答案:

答案 0 :(得分:3)

在此背景下"缩放因子"指深度图单位与米之间的关系;它与相机的焦距无关。

深度图通常以毫米级存储在16位无符号整数中,因此要获得以米为单位的Z值,深度图像素需要除以1000.您有一个非常规的缩放因子5000,意味着深度图的单位是200微米。