Experimental: this API is experimental and might be changed or removed in the future.

XRDepthSubsystem.GetConfidence

切换到手册
public void GetConfidence (List<float> confidenceOut);

参数

confidenceOut包含点云的所有置信度值的浮点数列表。

描述

检索点云中每个点的置信度值。

点云表示物理环境中设备用于从里到外跟踪的位置。点云中的每个点(也称为“特征点”)都有一个与之关联的“置信度”,用于表示该点的精确度。该值被归一化到 0 和 1 之间。

置信度值列表是 XRDepthSubsystem.GetPoints 提供的值的并行数组。

现有数据会替换为当前置信度值的列表。为了避免过多的堆分配,开发者可以在每次调用时重复使用该列表。只有当列表的容量不足时才会重新分配。

如果 confidenceOut 为 null,此方法会抛出 /ArgumentNullException/。