solve merge

This commit is contained in:
2024-10-28 18:25:53 +00:00
parent bd27226f0f
commit 3c9e2c8d12
4 changed files with 22 additions and 11 deletions

View File

@@ -75,6 +75,7 @@ class ReconstructionUtil:
cnt_processed_view = 0
remaining_views.remove(init_view)
curr_rec_pts_num = combined_point_cloud.shape[0]
drop_output_ratio = 0.4
import time
while remaining_views:
@@ -84,6 +85,8 @@ class ReconstructionUtil:
best_covered_num = 0
for view_index in remaining_views:
if np.random.rand() < drop_output_ratio:
continue
if point_cloud_list[view_index].shape[0] == 0:
continue
if selected_views: