Pytorch3d 使用pytorch3d.renderer.PerspectiveCameras

文章讲述了在使用PyTorch3D的PerspectiveCameras类时遇到的一个错误,该错误由于image_size参数的不正确设置导致。通过将image_size改为元组形式,即image_size=(height,width),问题得到解决,允许用户正确地使用自定义相机参数进行3D渲染。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

使用自己的相机参数,记得设置in_ndc=False

原本写法:

    cameras = pytorch3d.renderer.PerspectiveCameras(image_size=(height, width),device=device,focal_length=((cams['fx'],cams['fy']),),principal_point=((cams['center_x'],cams['center_y']),),in_ndc=False)

错误信息:

ValueError: Wrong number (2) of cameras for 1 meshes

正确写法:

    cameras = pytorch3d.renderer.PerspectiveCameras(image_size=((height, width),),device=device,focal_length=((cams['fx'],cams['fy']),),principal_point=((cams['center_x'],cams['center_y']),),in_ndc=False)

主要区别在于image_size=部分的写法

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值