|
59 | 59 | "Semantic Segmentation for Pixel Projects": "semantic_segmentation_pixel" |
60 | 60 | } |
61 | 61 |
|
| 62 | +VIDEO_DEPRICATED_FUNCTIONS = [ |
| 63 | + "upload_images_from_folder_to_project", |
| 64 | + "get_image_metadata", |
| 65 | + "search_images", |
| 66 | + "upload_images_to_project", |
| 67 | + "upload_annotations_from_folder_to_project", |
| 68 | + "upload_image_annotations", |
| 69 | + "download_image", |
| 70 | + "download_image_annotations", |
| 71 | + "get_image_annotations", |
| 72 | + "set_image_annotation_status", |
| 73 | + "aggregate_annotations_as_df", |
| 74 | + "attach_image_urls_to_project", |
| 75 | + "clone_project", |
| 76 | + "copy_image", |
| 77 | + "export_annotation", |
| 78 | + "upload_image_to_project", |
| 79 | + "upload_video_to_project", |
| 80 | + "add_annotation_bbox_to_image", |
| 81 | + "assign_images", |
| 82 | + "delete_images", |
| 83 | + "get_project_image_count", |
| 84 | + "set_project_workflow", |
| 85 | + "upload_preannotations_from_folder_to_project", |
| 86 | + "upload_videos_from_folder_to_project", |
| 87 | + "add_annotation_comment_to_image", |
| 88 | + "add_annotation_point_to_image", |
| 89 | + "benchmark", |
| 90 | + "class_distribution", |
| 91 | + "consensus", |
| 92 | + "convert_project_type", |
| 93 | + "copy_images", |
| 94 | + "get_project_workflow", |
| 95 | + "move_image", |
| 96 | + "move_images", |
| 97 | + "set_images_annotation_statuses", |
| 98 | + "set_project_default_image_quality_in_editor", |
| 99 | + "upload_images_from_google_cloud_to_project", |
| 100 | +] |
| 101 | + |
62 | 102 |
|
63 | 103 | def prediction_segmentation_status_from_str_to_int(status): |
64 | 104 | return _PREDICTION_SEGMENTATION_STATUSES[status] |
@@ -324,7 +364,7 @@ def write_to_json(output_path, json_data): |
324 | 364 |
|
325 | 365 |
|
326 | 366 | def tqdm_converter( |
327 | | - total_num, images_converted, images_not_converted, finish_event |
| 367 | + total_num, images_converted, images_not_converted, finish_event |
328 | 368 | ): |
329 | 369 | with tqdm(total=total_num) as pbar: |
330 | 370 | while True: |
|
0 commit comments