Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -184,8 +184,8 @@ class WarehouseStitcher:
|
|
| 184 |
total_inliers = 0
|
| 185 |
|
| 186 |
for i in range(1, len(cv_images)):
|
| 187 |
-
progress((i / len(cv_images), f"Processing image {i+1}/{len(cv_images)}"))
|
| 188 |
-
|
| 189 |
logs.append("-" * 70)
|
| 190 |
logs.append(f"🔄 PROCESSING IMAGE {i+1}/{len(cv_images)}")
|
| 191 |
logs.append("-" * 70)
|
|
@@ -338,7 +338,8 @@ class PoseGuidedWarehouseStitcher(WarehouseStitcher):
|
|
| 338 |
|
| 339 |
# Process each subsequent image
|
| 340 |
for i in range(1, len(sorted_imgs)):
|
| 341 |
-
progress((i / len(sorted_imgs), f"Stitching image {i+1}/{len(sorted_imgs)}"))
|
|
|
|
| 342 |
|
| 343 |
logs.append("-" * 70)
|
| 344 |
logs.append(f"🔄 PROCESSING IMAGE PAIR {i}/{len(sorted_imgs)-1}")
|
|
|
|
| 184 |
total_inliers = 0
|
| 185 |
|
| 186 |
for i in range(1, len(cv_images)):
|
| 187 |
+
# progress((i / len(cv_images), f"Processing image {i+1}/{len(cv_images)}"))
|
| 188 |
+
progress(i / len(cv_images))
|
| 189 |
logs.append("-" * 70)
|
| 190 |
logs.append(f"🔄 PROCESSING IMAGE {i+1}/{len(cv_images)}")
|
| 191 |
logs.append("-" * 70)
|
|
|
|
| 338 |
|
| 339 |
# Process each subsequent image
|
| 340 |
for i in range(1, len(sorted_imgs)):
|
| 341 |
+
# progress((i / len(sorted_imgs), f"Stitching image {i+1}/{len(sorted_imgs)}"))
|
| 342 |
+
progress(i / len(sorted_imgs))
|
| 343 |
|
| 344 |
logs.append("-" * 70)
|
| 345 |
logs.append(f"🔄 PROCESSING IMAGE PAIR {i}/{len(sorted_imgs)-1}")
|