capture_frame
是Open3D中open3d.io.AzureKinectSensor
类的一个方法。该方法可用于捕获Azure Kinect传感器上的单帧数据。
def capture_frame(self, wait_for_frame=True, timed_out=None)
wait_for_frame
:bool类型,指定是否等待一帧传感器数据的到来。timed_out
:float类型,指定等待传感器数据的最长时间(单位为秒)。若未指定,则等待无限时间。返回一个open3d.geometry.Image
类型的对象,包含从Azure Kinect传感器捕获的一帧帧数据。
import open3d as o3d
azure_kinect = o3d.io.AzureKinectSensor()
frame = azure_kinect.capture_frame()
print(frame)