将深度图转换为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"%

最佳答案

在本文中,“比例因子”是指深度图单位与米之间的关系;它与相机的焦距无关。

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

关于python - 如何将深度图转换为3D点云?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49598937/

10-10 21:52