Skip to content

Commit 5f934be

Browse files
committed
Add log line before the slow processing part with dense data
1 parent b8cf75f commit 5f934be

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

python/cli/process/process.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ def interpolate_missing_properties(df_source, df_query, k_nearest=3):
4343
from scipy.spatial import KDTree
4444
xyz = list('xyz')
4545

46+
print('generating a simplified point cloud (this may take a while...)')
47+
4648
tree = KDTree(df_source[xyz].values)
4749
_, ii = tree.query(df_query[xyz], k=k_nearest)
4850
n = df_query.shape[0]

0 commit comments

Comments
 (0)