TypeError: create_from_point_cloud_correspondences(): incompatible function arguments. The following argument types are supported: 1. (cloud0: open3d.cpu.pybind.geometry.PointCloud, cloud1: open3d.cpu.pybind.geometry.PointCloud, correspondences: List[Tuple[int, int]]) -> open3d.cpu.pybind.geometry.LineSet Invoked with: PointCloud with 10000 points.; kwargs: radius=0.2
时间: 2024-02-26 11:55:03 浏览: 418
TypeError: _queue_reduction(): incompatible function arguments.
这个错误提示表明 `create_from_point_cloud_correspondences()` 方法的参数类型不匹配,您传递的参数类型可能与该方法的定义不一致。从错误提示中可以看到该方法的参数类型应该是一个 `PointCloud` 的实例对象、另一个 `PointCloud` 的实例对象和一个元素为 `(int, int)` 的元组列表,返回值是一个 `LineSet` 的实例对象。同时,您在调用该方法时使用了 `kwargs` 参数来指定 `radius` 参数,这也可能导致类型不匹配的错误。
您需要检查代码中调用该方法的部分,确保传递的参数类型与方法定义匹配。另外,如果您确实需要使用 `radius` 参数,则需要查看该方法的文档,确认是否支持该参数,以及正确的使用方法。
阅读全文