We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8cf75f commit 5f934beCopy full SHA for 5f934be
python/cli/process/process.py
@@ -43,6 +43,8 @@ def interpolate_missing_properties(df_source, df_query, k_nearest=3):
43
from scipy.spatial import KDTree
44
xyz = list('xyz')
45
46
+ print('generating a simplified point cloud (this may take a while...)')
47
+
48
tree = KDTree(df_source[xyz].values)
49
_, ii = tree.query(df_query[xyz], k=k_nearest)
50
n = df_query.shape[0]
0 commit comments