该方法返回一个字符串,表示Open3D中的几何类型。
def get_geometry_type(self) -> str
无
返回字符串,表示Open3D中的几何类型。
import open3d as o3d
box = o3d.geometry.AxisAlignedBoundingBox()
type_str = box.get_geometry_type()
print("Geometry type: ", type_str) # 输出:Geometry type: AxisAlignedBoundingBox
无
该方法是Open3D中所有几何类型都实现的方法,可以通过该方法判断当前变量所属的几何类型。