module 'open3d.open3d.geometry' has no attribute 'StatisticalOutlierRemoval'
时间: 2023-12-01 22:03:07 浏览: 169
This error message suggests that you are trying to access an attribute called "StatisticalOutlierRemoval" that does not exist in the "geometry" module of the Open3D library.
There could be a few reasons for this error:
1. You may have misspelled the attribute name or used incorrect capitalization.
2. The attribute may have been removed or renamed in a newer version of the Open3D library.
3. You may not have imported the correct module that contains the "StatisticalOutlierRemoval" attribute.
To resolve this error, you can try:
1. Checking your spelling and capitalization to make sure you are using the correct attribute name.
2. Checking the Open3D documentation to see if the attribute has been removed or renamed.
3. Importing the correct module that contains the "StatisticalOutlierRemoval" attribute. For example, you may need to import it from the "open3d.geometry.pipeline" module instead of the "open3d.geometry" module.
阅读全文