├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── 功能请求---feature-request.md │ └── 错误报告---bug-report.md └── workflows │ └── python-publish.yml ├── .gitignore ├── .idea ├── .gitignore ├── ISAT_with_segment_anything.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── .readthedocs.yaml ├── ISAT ├── ISAT_new_64.svg ├── __init__.py ├── annotation.py ├── configs.py ├── docs │ └── 打包说明.md ├── formats │ ├── __init__.py │ ├── coco.py │ ├── isat.py │ ├── labelme.py │ ├── make_ploygon_valid.ipynb │ ├── voc.py │ ├── voc_detection.py │ └── yolo.py ├── icons.qrc ├── icons_rc.py ├── isat.yaml ├── main.py ├── segment_any │ ├── __init__.py │ ├── edge_sam │ │ ├── __init__.py │ │ ├── automatic_mask_generator.py │ │ ├── build_sam.py │ │ ├── modeling │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── image_encoder.py │ │ │ ├── mask_decoder.py │ │ │ ├── prompt_encoder.py │ │ │ ├── rep_vit.py │ │ │ ├── sam.py │ │ │ └── transformer.py │ │ ├── onnx │ │ │ ├── __init__.py │ │ │ └── predictor_onnx.py │ │ ├── predictor.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── amg.py │ │ │ ├── coreml.py │ │ │ └── transforms.py │ ├── gpu_resource.py │ ├── mobile_sam │ │ ├── __init__.py │ │ ├── automatic_mask_generator.py │ │ ├── build_sam.py │ │ ├── modeling │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── image_encoder.py │ │ │ ├── mask_decoder.py │ │ │ ├── prompt_encoder.py │ │ │ ├── sam.py │ │ │ ├── tiny_vit_sam.py │ │ │ └── transformer.py │ │ ├── predictor.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── amg.py │ │ │ ├── onnx.py │ │ │ └── transforms.py │ ├── model_zoo.py │ ├── sam2 │ │ ├── __init__.py │ │ ├── automatic_mask_generator.py │ │ ├── build_sam.py │ │ ├── configs │ │ │ ├── __init__.py │ │ │ ├── sam2.1_hiera_b+.yaml │ │ │ ├── sam2.1_hiera_l.yaml │ │ │ ├── sam2.1_hiera_s.yaml │ │ │ ├── sam2.1_hiera_t.yaml │ │ │ ├── sam2_hiera_b+.yaml │ │ │ ├── sam2_hiera_l.yaml │ │ │ ├── sam2_hiera_s.yaml │ │ │ └── sam2_hiera_t.yaml │ │ ├── csrc │ │ │ └── connected_components.cu │ │ ├── modeling │ │ │ ├── __init__.py │ │ │ ├── backbones │ │ │ │ ├── __init__.py │ │ │ │ ├── hieradet.py │ │ │ │ ├── image_encoder.py │ │ │ │ └── utils.py │ │ │ ├── memory_attention.py │ │ │ ├── memory_encoder.py │ │ │ ├── position_encoding.py │ │ │ ├── sam │ │ │ │ ├── __init__.py │ │ │ │ ├── mask_decoder.py │ │ │ │ ├── prompt_encoder.py │ │ │ │ └── transformer.py │ │ │ ├── sam2_base.py │ │ │ └── sam2_utils.py │ │ ├── sam2_image_predictor.py │ │ ├── sam2_video_predictor.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── amg.py │ │ │ ├── misc.py │ │ │ └── transforms.py │ ├── segment_any.py │ ├── segment_anything │ │ ├── __init__.py │ │ ├── automatic_mask_generator.py │ │ ├── build_sam.py │ │ ├── modeling │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── image_encoder.py │ │ │ ├── mask_decoder.py │ │ │ ├── prompt_encoder.py │ │ │ ├── sam.py │ │ │ └── transformer.py │ │ ├── predictor.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── amg.py │ │ │ ├── onnx.py │ │ │ └── transforms.py │ ├── segment_anything_fast │ │ ├── __init__.py │ │ ├── automatic_mask_generator.py │ │ ├── build_sam.py │ │ ├── configs │ │ │ ├── __init__.py │ │ │ └── flash_4_configs_a100.p │ │ ├── flash_4.py │ │ ├── modeling │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── image_encoder.py │ │ │ ├── mask_decoder.py │ │ │ ├── prompt_encoder.py │ │ │ ├── sam.py │ │ │ └── transformer.py │ │ ├── predictor.py │ │ ├── sparse.py │ │ ├── tools.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── amg.py │ │ │ ├── onnx.py │ │ │ └── transforms.py │ ├── segment_anything_hq │ │ ├── __init__.py │ │ ├── automatic_mask_generator.py │ │ ├── build_sam.py │ │ ├── build_sam_baseline.py │ │ ├── modeling │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── image_encoder.py │ │ │ ├── mask_decoder.py │ │ │ ├── mask_decoder_hq.py │ │ │ ├── prompt_encoder.py │ │ │ ├── sam.py │ │ │ ├── tiny_vit_sam.py │ │ │ └── transformer.py │ │ ├── predictor.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── amg.py │ │ │ ├── onnx.py │ │ │ └── transforms.py │ └── segment_anything_med2d │ │ ├── __init__.py │ │ ├── automatic_mask_generator.py │ │ ├── build_sam.py │ │ ├── modeling │ │ ├── __init__.py │ │ ├── common.py │ │ ├── image_encoder.py │ │ ├── mask_decoder.py │ │ ├── prompt_encoder.py │ │ ├── sam.py │ │ ├── sam_model.py │ │ └── transformer.py │ │ ├── predictor.py │ │ ├── predictor_for_isat.py │ │ ├── predictor_sammed.py │ │ └── utils │ │ ├── __init__.py │ │ ├── amg.py │ │ ├── onnx.py │ │ ├── transforms.py │ │ └── transforms_med2d.py ├── software.yaml ├── ui │ ├── Converter_dialog.py │ ├── Converter_dialog.ui │ ├── MainWindow.py │ ├── MainWindow.ui │ ├── __init__.py │ ├── about_dialog.py │ ├── about_dialog.ui │ ├── anno_dock.py │ ├── anno_dock.ui │ ├── annos_validator.py │ ├── annos_validator.ui │ ├── auto_segment.py │ ├── auto_segment.ui │ ├── category_dock.py │ ├── category_dock.ui │ ├── category_edit.py │ ├── category_edit.ui │ ├── category_setting_dialog.py │ ├── category_setting_dialog.ui │ ├── en.ts │ ├── file_dock.py │ ├── file_dock.ui │ ├── info_dock.py │ ├── info_dock.ui │ ├── model_manager_dialog.py │ ├── model_manager_dialog.ui │ ├── plugin_manager_dialog.py │ ├── plugin_manager_dialog.ui │ ├── process_exif_dialog.py │ ├── process_exif_dialog.ui │ ├── remote_sam_dialog.py │ ├── remote_sam_dialog.ui │ ├── setting_dialog.py │ ├── setting_dialog.ui │ ├── shortcut_dialog.py │ ├── shortcut_dialog.ui │ ├── video_to_frames.py │ ├── video_to_frames.ui │ ├── zh_CN.qm │ └── zh_CN.ts ├── utils │ ├── __init__.py │ └── dicom.py └── widgets │ ├── __init__.py │ ├── about_dialog.py │ ├── annos_dock_widget.py │ ├── annos_validator_dialog.py │ ├── auto_segment_dialog.py │ ├── canvas.py │ ├── category_dock_widget.py │ ├── category_edit_dialog.py │ ├── category_setting_dialog.py │ ├── converter_dialog.py │ ├── files_dock_widget.py │ ├── info_dock_widget.py │ ├── mainwindow.py │ ├── model_manager_dialog.py │ ├── plugin_base.py │ ├── plugin_manager_dialog.py │ ├── polygon.py │ ├── process_exif_dialog.py │ ├── remote_sam_dialog.py │ ├── right_button_menu.py │ ├── setting_dialog.py │ ├── shortcut_dialog.py │ ├── switch_button.py │ └── video_to_frames_dialog.py ├── LICENSE ├── MANIFEST.in ├── README-cn.md ├── README.md ├── SECURITY.md ├── display ├── approx_polygon_disabled.png ├── approx_polygon_enabled.png ├── area.png ├── backspace.gif ├── box_prompts.gif ├── category_dock.png ├── category_search.gif ├── category_setting.png ├── clicking.gif ├── contour_all.gif ├── contour_external.gif ├── contour_only_max.gif ├── detail_inspection.gif ├── dragging.gif ├── draw_polygon_button.png ├── edit.gif ├── exclude.gif ├── export.png ├── intersect.gif ├── language.png ├── layer.gif ├── model_manager.png ├── move_and_delete.gif ├── plugins.png ├── point_box_prompt_button.png ├── point_prompts.gif ├── preview.gif ├── quick_browsing.gif ├── remote_sam.png ├── repaint.gif ├── setting.png ├── shift_constraint.gif ├── shortcut.png ├── software.gif ├── subtract.gif ├── union.gif ├── use_fine_tuned_model.png └── video_annotation.gif ├── docker ├── Dockerfile └── entrypoint.sh ├── docs ├── Makefile ├── README.md ├── make.bat ├── requirements.txt └── source │ ├── _api │ ├── ISAT.formats.rst │ ├── ISAT.rst │ ├── ISAT.segment_any.rst │ ├── ISAT.utils.rst │ ├── ISAT.widgets.rst │ └── modules.rst │ ├── _static │ └── ISAT_new_64.svg │ ├── annotation.rst │ ├── api.rst │ ├── bug_report.rst │ ├── category_setting.rst │ ├── conf.py │ ├── contact_us.rst │ ├── discussion.rst │ ├── export.rst │ ├── feature_request.rst │ ├── index.rst │ ├── inspect.rst │ ├── install.rst │ ├── locales │ └── zh_CN │ │ └── LC_MESSAGES │ │ ├── _api │ │ ├── ISAT.formats.mo │ │ ├── ISAT.formats.po │ │ ├── ISAT.mo │ │ ├── ISAT.po │ │ ├── ISAT.segment_any.mo │ │ ├── ISAT.segment_any.po │ │ ├── ISAT.utils.mo │ │ ├── ISAT.utils.po │ │ ├── ISAT.widgets.mo │ │ ├── ISAT.widgets.po │ │ ├── modules.mo │ │ └── modules.po │ │ ├── annotation.mo │ │ ├── annotation.po │ │ ├── api.mo │ │ ├── api.po │ │ ├── bug_report.mo │ │ ├── bug_report.po │ │ ├── category_setting.mo │ │ ├── category_setting.po │ │ ├── contact_us.mo │ │ ├── contact_us.po │ │ ├── discussion.mo │ │ ├── discussion.po │ │ ├── export.mo │ │ ├── export.po │ │ ├── feature_request.mo │ │ ├── feature_request.po │ │ ├── index.mo │ │ ├── index.po │ │ ├── inspect.mo │ │ ├── inspect.po │ │ ├── install.mo │ │ ├── install.po │ │ ├── modify.mo │ │ ├── modify.po │ │ ├── other.mo │ │ ├── other.po │ │ ├── plugin.mo │ │ ├── plugin.po │ │ ├── plugin_development.mo │ │ ├── plugin_development.po │ │ ├── plugin_list.mo │ │ ├── plugin_list.po │ │ ├── plugin_usage.mo │ │ ├── plugin_usage.po │ │ ├── sam_model.mo │ │ ├── sam_model.po │ │ ├── usage.mo │ │ └── usage.po │ ├── modify.rst │ ├── other.rst │ ├── plugin.rst │ ├── plugin_development.rst │ ├── plugin_list.rst │ ├── plugin_usage.rst │ ├── sam_model.rst │ └── usage.rst ├── example ├── convert │ ├── coco_tiny │ │ ├── coco_tiny.json │ │ ├── images │ │ │ ├── 000000013923.jpg │ │ │ ├── 000000076261.jpg │ │ │ ├── 000000083540.jpg │ │ │ ├── 000000100723.jpg │ │ │ └── 000000549930.jpg │ │ ├── isat │ │ │ ├── 000000013923.json │ │ │ ├── 000000076261.json │ │ │ ├── 000000083540.json │ │ │ ├── 000000100723.json │ │ │ ├── 000000549930.json │ │ │ └── isat.yaml │ │ ├── labelme │ │ │ ├── 000000013923.json │ │ │ ├── 000000076261.json │ │ │ ├── 000000083540.json │ │ │ ├── 000000100723.json │ │ │ └── 000000549930.json │ │ ├── markdown.md │ │ └── yolo │ │ │ ├── 000000013923.txt │ │ │ ├── 000000076261.txt │ │ │ ├── 000000083540.txt │ │ │ ├── 000000100723.txt │ │ │ └── 000000549930.txt │ ├── coco可视化.ipynb │ └── convert.ipynb ├── images │ ├── 000000000113.jpg │ ├── 000000000113.json │ ├── 000000000144.jpg │ ├── 000000000144.json │ ├── 000000000308.jpg │ ├── 000000000308.json │ ├── 000000000872.jpg │ ├── 000000000872.json │ ├── 000000002592.jpg │ ├── 000000002592.json │ ├── 000000117425.jpg │ ├── 000000117425.json │ ├── image-00220.dcm │ └── isat.yaml ├── instance │ ├── 000000000113.png │ ├── 000000000144.png │ ├── 000000000308.png │ ├── 000000000872.png │ ├── 000000002592.png │ └── 000000117425.png ├── semantic │ ├── 000000000113.png │ ├── 000000000144.png │ ├── 000000000308.png │ ├── 000000000872.png │ ├── 000000002592.png │ ├── 000000117425.png │ └── classification.txt └── videos │ ├── 00000.jpg │ ├── 00000.json │ ├── 00001.jpg │ ├── 00001.json │ ├── 00002.jpg │ ├── 00002.json │ ├── 00003.jpg │ ├── 00003.json │ ├── 00004.jpg │ ├── 00004.json │ ├── 00005.jpg │ ├── 00005.json │ ├── 00006.jpg │ ├── 00006.json │ ├── 00007.jpg │ ├── 00007.json │ ├── 00008.jpg │ ├── 00008.json │ ├── 00009.jpg │ ├── 00009.json │ ├── 00010.jpg │ ├── 00010.json │ ├── 00011.jpg │ ├── 00011.json │ ├── 00012.jpg │ ├── 00012.json │ ├── 00013.jpg │ ├── 00013.json │ ├── 00014.jpg │ ├── 00014.json │ ├── 00015.jpg │ ├── 00015.json │ ├── 00016.jpg │ ├── 00016.json │ ├── 00017.jpg │ ├── 00017.json │ ├── 00018.jpg │ ├── 00018.json │ ├── 00019.jpg │ ├── 00019.json │ ├── 00020.jpg │ ├── 00020.json │ ├── 00021.jpg │ ├── 00021.json │ ├── 00022.jpg │ ├── 00022.json │ ├── 00023.jpg │ ├── 00023.json │ ├── 00024.jpg │ ├── 00024.json │ ├── 00025.jpg │ ├── 00025.json │ ├── 00026.jpg │ ├── 00026.json │ ├── 00027.jpg │ ├── 00027.json │ ├── 00028.jpg │ ├── 00028.json │ ├── 00029.jpg │ ├── 00029.json │ ├── 00030.jpg │ ├── 00030.json │ ├── 00031.jpg │ ├── 00031.json │ ├── 00032.jpg │ ├── 00032.json │ ├── 00033.jpg │ ├── 00033.json │ ├── 00034.jpg │ ├── 00034.json │ ├── 00035.jpg │ ├── 00035.json │ ├── 00036.jpg │ ├── 00036.json │ ├── 00037.jpg │ ├── 00037.json │ ├── 00038.jpg │ ├── 00038.json │ ├── 00039.jpg │ ├── 00039.json │ ├── 00040.jpg │ ├── 00040.json │ ├── 00041.jpg │ ├── 00041.json │ ├── 00042.jpg │ ├── 00042.json │ ├── 00043.jpg │ ├── 00043.json │ ├── 00044.jpg │ ├── 00044.json │ ├── 00045.jpg │ ├── 00045.json │ ├── 00046.jpg │ ├── 00046.json │ ├── 00047.jpg │ ├── 00047.json │ ├── 00048.jpg │ ├── 00048.json │ ├── 00049.jpg │ ├── 00049.json │ ├── 00050.jpg │ ├── 00050.json │ ├── 00051.jpg │ ├── 00051.json │ ├── 00052.jpg │ ├── 00052.json │ ├── 00053.jpg │ ├── 00053.json │ ├── 00054.jpg │ ├── 00054.json │ ├── 00055.jpg │ ├── 00055.json │ ├── 00056.jpg │ ├── 00056.json │ ├── 00057.jpg │ ├── 00057.json │ ├── 00058.jpg │ ├── 00058.json │ ├── 00059.jpg │ ├── 00059.json │ ├── 00060.jpg │ ├── 00060.json │ ├── 00061.jpg │ ├── 00061.json │ ├── 00062.jpg │ ├── 00062.json │ ├── 00063.jpg │ ├── 00063.json │ ├── 00064.jpg │ ├── 00064.json │ ├── 00065.jpg │ ├── 00065.json │ ├── 00066.jpg │ ├── 00066.json │ ├── 00067.jpg │ ├── 00067.json │ ├── 00068.jpg │ ├── 00068.json │ ├── 00069.jpg │ ├── 00069.json │ ├── 00070.jpg │ ├── 00070.json │ ├── 00071.jpg │ ├── 00071.json │ ├── 00072.jpg │ ├── 00072.json │ ├── 00073.jpg │ ├── 00073.json │ ├── 00074.jpg │ ├── 00074.json │ ├── 00075.jpg │ ├── 00075.json │ ├── 00076.jpg │ ├── 00076.json │ ├── 00077.jpg │ ├── 00077.json │ ├── 00078.jpg │ ├── 00078.json │ ├── 00079.jpg │ ├── 00079.json │ ├── 00080.jpg │ ├── 00080.json │ ├── 00081.jpg │ ├── 00081.json │ ├── 00082.jpg │ ├── 00082.json │ ├── 00083.jpg │ ├── 00083.json │ ├── 00084.jpg │ ├── 00084.json │ ├── 00085.jpg │ ├── 00085.json │ ├── 00086.jpg │ ├── 00086.json │ ├── 00087.jpg │ ├── 00087.json │ ├── 00088.jpg │ ├── 00088.json │ ├── 00089.jpg │ ├── 00089.json │ ├── 00090.jpg │ ├── 00090.json │ ├── 00091.jpg │ ├── 00091.json │ ├── 00092.jpg │ ├── 00092.json │ ├── 00093.jpg │ ├── 00093.json │ ├── 00094.jpg │ ├── 00094.json │ ├── 00095.jpg │ ├── 00095.json │ ├── 00096.jpg │ ├── 00096.json │ ├── 00097.jpg │ ├── 00097.json │ ├── 00098.jpg │ ├── 00098.json │ ├── 00099.jpg │ ├── 00099.json │ ├── 00100.jpg │ ├── 00100.json │ ├── 00101.jpg │ ├── 00101.json │ ├── 00102.jpg │ ├── 00102.json │ ├── 00103.jpg │ ├── 00103.json │ ├── 00104.jpg │ ├── 00104.json │ ├── 00105.jpg │ ├── 00105.json │ ├── 00106.jpg │ ├── 00106.json │ ├── 00107.jpg │ ├── 00107.json │ ├── 00108.jpg │ ├── 00108.json │ ├── 00109.jpg │ ├── 00109.json │ ├── 00110.jpg │ ├── 00110.json │ ├── 00111.jpg │ ├── 00111.json │ ├── 00112.jpg │ ├── 00112.json │ ├── 00113.jpg │ ├── 00113.json │ ├── 00114.jpg │ ├── 00114.json │ ├── 00115.jpg │ ├── 00115.json │ ├── 00116.jpg │ ├── 00116.json │ ├── 00117.jpg │ ├── 00117.json │ ├── 00118.jpg │ ├── 00118.json │ ├── 00119.jpg │ ├── 00119.json │ ├── 00120.jpg │ ├── 00120.json │ ├── 00121.jpg │ ├── 00121.json │ ├── 00122.jpg │ ├── 00122.json │ ├── 00123.jpg │ ├── 00123.json │ ├── 00124.jpg │ ├── 00124.json │ ├── 00125.jpg │ ├── 00125.json │ ├── 00126.jpg │ ├── 00126.json │ ├── 00127.jpg │ ├── 00127.json │ ├── 00128.jpg │ ├── 00128.json │ ├── 00129.jpg │ ├── 00129.json │ ├── 00130.jpg │ ├── 00130.json │ ├── 00131.jpg │ ├── 00131.json │ ├── 00132.jpg │ ├── 00132.json │ ├── 00133.jpg │ ├── 00133.json │ ├── 00134.jpg │ ├── 00134.json │ ├── 00135.jpg │ ├── 00135.json │ ├── 00136.jpg │ ├── 00136.json │ ├── 00137.jpg │ ├── 00137.json │ ├── 00138.jpg │ ├── 00138.json │ ├── 00139.jpg │ ├── 00139.json │ ├── 00140.jpg │ ├── 00140.json │ ├── 00141.jpg │ ├── 00141.json │ ├── 00142.jpg │ ├── 00142.json │ ├── 00143.jpg │ ├── 00143.json │ ├── 00144.jpg │ ├── 00144.json │ ├── 00145.jpg │ ├── 00145.json │ ├── 00146.jpg │ ├── 00146.json │ ├── 00147.jpg │ ├── 00147.json │ ├── 00148.jpg │ ├── 00148.json │ ├── 00149.jpg │ ├── 00149.json │ ├── 00150.jpg │ ├── 00150.json │ ├── 00151.jpg │ ├── 00151.json │ ├── 00152.jpg │ ├── 00152.json │ ├── 00153.jpg │ ├── 00153.json │ ├── 00154.jpg │ ├── 00154.json │ ├── 00155.jpg │ ├── 00155.json │ ├── 00156.jpg │ ├── 00156.json │ ├── 00157.jpg │ ├── 00157.json │ ├── 00158.jpg │ ├── 00158.json │ ├── 00159.jpg │ ├── 00159.json │ ├── 00160.jpg │ ├── 00160.json │ ├── 00161.jpg │ ├── 00161.json │ ├── 00162.jpg │ ├── 00162.json │ ├── 00163.jpg │ ├── 00163.json │ ├── 00164.jpg │ ├── 00164.json │ ├── 00165.jpg │ ├── 00165.json │ ├── 00166.jpg │ ├── 00166.json │ ├── 00167.jpg │ ├── 00167.json │ ├── 00168.jpg │ ├── 00168.json │ ├── 00169.jpg │ ├── 00169.json │ ├── 00170.jpg │ ├── 00170.json │ ├── 00171.jpg │ ├── 00171.json │ ├── 00172.jpg │ ├── 00172.json │ ├── 00173.jpg │ ├── 00173.json │ ├── 00174.jpg │ ├── 00174.json │ ├── 00175.jpg │ ├── 00175.json │ ├── 00176.jpg │ ├── 00176.json │ ├── 00177.jpg │ ├── 00177.json │ ├── 00178.jpg │ ├── 00178.json │ ├── 00179.jpg │ ├── 00179.json │ ├── 00180.jpg │ ├── 00180.json │ ├── 00181.jpg │ ├── 00181.json │ ├── 00182.jpg │ ├── 00182.json │ ├── 00183.jpg │ ├── 00183.json │ ├── 00184.jpg │ ├── 00184.json │ ├── 00185.jpg │ ├── 00185.json │ ├── 00186.jpg │ ├── 00186.json │ ├── 00187.jpg │ ├── 00187.json │ ├── 00188.jpg │ ├── 00188.json │ ├── 00189.jpg │ ├── 00189.json │ ├── 00190.jpg │ ├── 00190.json │ ├── 00191.jpg │ ├── 00191.json │ ├── 00192.jpg │ ├── 00192.json │ ├── 00193.jpg │ ├── 00193.json │ ├── 00194.jpg │ ├── 00194.json │ ├── 00195.jpg │ ├── 00195.json │ ├── 00196.jpg │ ├── 00196.json │ ├── 00197.jpg │ ├── 00197.json │ ├── 00198.jpg │ ├── 00198.json │ ├── 00199.jpg │ ├── 00199.json │ └── isat.yaml ├── icons ├── ISAT11.svg ├── ISAT11_100.svg ├── ISAT12.svg ├── ISAT12_100.svg ├── ISAT13.svg ├── ISAT13_100.svg ├── ISAT14.svg ├── ISAT14_100.svg ├── ISAT21.svg ├── ISAT21_100.svg ├── ISAT22.svg ├── ISAT22_100.svg ├── ISAT23.svg ├── ISAT23_100.svg ├── ISAT24.svg ├── ISAT24_100.svg ├── ISAT_new_128.svg ├── ISAT_new_256.svg ├── ISAT_new_32.svg ├── ISAT_new_64.svg ├── M_Favicon.ico ├── VOC_32x32.png ├── coco.ico ├── instance.png ├── labelme_32x32.png ├── play-1.svg ├── play-5.svg ├── play-all.svg ├── semantic.png ├── 一对一_one-to-one.svg ├── 上一步_back.svg ├── 下一步_next.svg ├── 中文_chinese.svg ├── 书籍1_book-one.svg ├── 云运行_link-cloud.svg ├── 传入3_afferent-three.svg ├── 传出3_efferent-three.svg ├── 保存_save.svg ├── 保存硬盘_save-one.svg ├── 全宽_fullwidth.svg ├── 关闭-小_close-small.svg ├── 关闭_close-one.svg ├── 减去上一层_subtract-selection-one.svg ├── 列表_list-middle.svg ├── 列表_list.svg ├── 删除_delete-two.svg ├── 删除_delete.svg ├── 去底部_to-bottom.svg ├── 去顶部_to-top.svg ├── 合并选择_union-selection.svg ├── 复制_copy.svg ├── 小矩形_rectangle-small.svg ├── 开关_power.svg ├── 我的_me.svg ├── 截屏_screenshot-two.svg ├── 拼图_puzzle.svg ├── 排除选择_exclude-selection.svg ├── 放大_zoom-in.svg ├── 文件夹-开_folder-open.svg ├── 校验-小_check-small.svg ├── 校验_check-one.svg ├── 检查_inspection.svg ├── 照片_pic.svg ├── 相交选择_intersect-selection.svg ├── 眼睛_eyes.svg ├── 编辑_edit.svg ├── 编辑撰写_writing-fluently.svg ├── 编辑文件_file-editing.svg ├── 缩小_zoom-out.svg ├── 翻译_translate.svg ├── 英文_english.svg ├── 视频_video-two.svg ├── 设置_setting-two.svg ├── 转换文件1_file-conversion-one.svg ├── 转换文件夹1_folder-conversion-one.svg ├── 锚点_anchor.svg └── 键盘_keyboard-one.svg ├── main.py ├── requirements.txt ├── setup.py └── test ├── coco_display.py └── f32_vs_bf16.py /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/功能请求---feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/.github/ISSUE_TEMPLATE/功能请求---feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/错误报告---bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/.github/ISSUE_TEMPLATE/错误报告---bug-report.md -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/ISAT_with_segment_anything.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/.idea/ISAT_with_segment_anything.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /ISAT/ISAT_new_64.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ISAT_new_64.svg -------------------------------------------------------------------------------- /ISAT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/__init__.py -------------------------------------------------------------------------------- /ISAT/annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/annotation.py -------------------------------------------------------------------------------- /ISAT/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/configs.py -------------------------------------------------------------------------------- /ISAT/docs/打包说明.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/docs/打包说明.md -------------------------------------------------------------------------------- /ISAT/formats/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author : LG 3 | -------------------------------------------------------------------------------- /ISAT/formats/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/formats/coco.py -------------------------------------------------------------------------------- /ISAT/formats/isat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/formats/isat.py -------------------------------------------------------------------------------- /ISAT/formats/labelme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/formats/labelme.py -------------------------------------------------------------------------------- /ISAT/formats/make_ploygon_valid.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/formats/make_ploygon_valid.ipynb -------------------------------------------------------------------------------- /ISAT/formats/voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/formats/voc.py -------------------------------------------------------------------------------- /ISAT/formats/voc_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/formats/voc_detection.py -------------------------------------------------------------------------------- /ISAT/formats/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/formats/yolo.py -------------------------------------------------------------------------------- /ISAT/icons.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/icons.qrc -------------------------------------------------------------------------------- /ISAT/icons_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/icons_rc.py -------------------------------------------------------------------------------- /ISAT/isat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/isat.yaml -------------------------------------------------------------------------------- /ISAT/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/main.py -------------------------------------------------------------------------------- /ISAT/segment_any/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author : LG 3 | -------------------------------------------------------------------------------- /ISAT/segment_any/edge_sam/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/edge_sam/__init__.py -------------------------------------------------------------------------------- /ISAT/segment_any/edge_sam/automatic_mask_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/edge_sam/automatic_mask_generator.py -------------------------------------------------------------------------------- /ISAT/segment_any/edge_sam/build_sam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/edge_sam/build_sam.py -------------------------------------------------------------------------------- /ISAT/segment_any/edge_sam/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/edge_sam/modeling/__init__.py -------------------------------------------------------------------------------- /ISAT/segment_any/edge_sam/modeling/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/edge_sam/modeling/common.py -------------------------------------------------------------------------------- /ISAT/segment_any/edge_sam/modeling/image_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/edge_sam/modeling/image_encoder.py -------------------------------------------------------------------------------- /ISAT/segment_any/edge_sam/modeling/mask_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/edge_sam/modeling/mask_decoder.py -------------------------------------------------------------------------------- /ISAT/segment_any/edge_sam/modeling/prompt_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/edge_sam/modeling/prompt_encoder.py -------------------------------------------------------------------------------- /ISAT/segment_any/edge_sam/modeling/rep_vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/edge_sam/modeling/rep_vit.py -------------------------------------------------------------------------------- /ISAT/segment_any/edge_sam/modeling/sam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/edge_sam/modeling/sam.py -------------------------------------------------------------------------------- /ISAT/segment_any/edge_sam/modeling/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/edge_sam/modeling/transformer.py -------------------------------------------------------------------------------- /ISAT/segment_any/edge_sam/onnx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/edge_sam/onnx/__init__.py -------------------------------------------------------------------------------- /ISAT/segment_any/edge_sam/onnx/predictor_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/edge_sam/onnx/predictor_onnx.py -------------------------------------------------------------------------------- /ISAT/segment_any/edge_sam/predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/edge_sam/predictor.py -------------------------------------------------------------------------------- /ISAT/segment_any/edge_sam/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/edge_sam/utils/__init__.py -------------------------------------------------------------------------------- /ISAT/segment_any/edge_sam/utils/amg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/edge_sam/utils/amg.py -------------------------------------------------------------------------------- /ISAT/segment_any/edge_sam/utils/coreml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/edge_sam/utils/coreml.py -------------------------------------------------------------------------------- /ISAT/segment_any/edge_sam/utils/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/edge_sam/utils/transforms.py -------------------------------------------------------------------------------- /ISAT/segment_any/gpu_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/gpu_resource.py -------------------------------------------------------------------------------- /ISAT/segment_any/mobile_sam/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/mobile_sam/__init__.py -------------------------------------------------------------------------------- /ISAT/segment_any/mobile_sam/build_sam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/mobile_sam/build_sam.py -------------------------------------------------------------------------------- /ISAT/segment_any/mobile_sam/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/mobile_sam/modeling/__init__.py -------------------------------------------------------------------------------- /ISAT/segment_any/mobile_sam/modeling/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/mobile_sam/modeling/common.py -------------------------------------------------------------------------------- /ISAT/segment_any/mobile_sam/modeling/image_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/mobile_sam/modeling/image_encoder.py -------------------------------------------------------------------------------- /ISAT/segment_any/mobile_sam/modeling/mask_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/mobile_sam/modeling/mask_decoder.py -------------------------------------------------------------------------------- /ISAT/segment_any/mobile_sam/modeling/sam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/mobile_sam/modeling/sam.py -------------------------------------------------------------------------------- /ISAT/segment_any/mobile_sam/modeling/tiny_vit_sam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/mobile_sam/modeling/tiny_vit_sam.py -------------------------------------------------------------------------------- /ISAT/segment_any/mobile_sam/modeling/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/mobile_sam/modeling/transformer.py -------------------------------------------------------------------------------- /ISAT/segment_any/mobile_sam/predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/mobile_sam/predictor.py -------------------------------------------------------------------------------- /ISAT/segment_any/mobile_sam/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/mobile_sam/utils/__init__.py -------------------------------------------------------------------------------- /ISAT/segment_any/mobile_sam/utils/amg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/mobile_sam/utils/amg.py -------------------------------------------------------------------------------- /ISAT/segment_any/mobile_sam/utils/onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/mobile_sam/utils/onnx.py -------------------------------------------------------------------------------- /ISAT/segment_any/mobile_sam/utils/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/mobile_sam/utils/transforms.py -------------------------------------------------------------------------------- /ISAT/segment_any/model_zoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/model_zoo.py -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/__init__.py -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/automatic_mask_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/automatic_mask_generator.py -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/build_sam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/build_sam.py -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/configs/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author : LG 3 | -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/configs/sam2.1_hiera_b+.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/configs/sam2.1_hiera_b+.yaml -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/configs/sam2.1_hiera_l.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/configs/sam2.1_hiera_l.yaml -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/configs/sam2.1_hiera_s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/configs/sam2.1_hiera_s.yaml -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/configs/sam2.1_hiera_t.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/configs/sam2.1_hiera_t.yaml -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/configs/sam2_hiera_b+.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/configs/sam2_hiera_b+.yaml -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/configs/sam2_hiera_l.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/configs/sam2_hiera_l.yaml -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/configs/sam2_hiera_s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/configs/sam2_hiera_s.yaml -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/configs/sam2_hiera_t.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/configs/sam2_hiera_t.yaml -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/csrc/connected_components.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/csrc/connected_components.cu -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/modeling/__init__.py -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/modeling/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/modeling/backbones/__init__.py -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/modeling/backbones/hieradet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/modeling/backbones/hieradet.py -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/modeling/backbones/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/modeling/backbones/utils.py -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/modeling/memory_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/modeling/memory_attention.py -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/modeling/memory_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/modeling/memory_encoder.py -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/modeling/position_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/modeling/position_encoding.py -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/modeling/sam/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/modeling/sam/__init__.py -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/modeling/sam/mask_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/modeling/sam/mask_decoder.py -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/modeling/sam/prompt_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/modeling/sam/prompt_encoder.py -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/modeling/sam/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/modeling/sam/transformer.py -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/modeling/sam2_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/modeling/sam2_base.py -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/modeling/sam2_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/modeling/sam2_utils.py -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/sam2_image_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/sam2_image_predictor.py -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/sam2_video_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/sam2_video_predictor.py -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/utils/__init__.py -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/utils/amg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/utils/amg.py -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/utils/misc.py -------------------------------------------------------------------------------- /ISAT/segment_any/sam2/utils/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/sam2/utils/transforms.py -------------------------------------------------------------------------------- /ISAT/segment_any/segment_any.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/segment_any.py -------------------------------------------------------------------------------- /ISAT/segment_any/segment_anything/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/segment_anything/__init__.py -------------------------------------------------------------------------------- /ISAT/segment_any/segment_anything/build_sam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/segment_anything/build_sam.py -------------------------------------------------------------------------------- /ISAT/segment_any/segment_anything/modeling/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/segment_anything/modeling/common.py -------------------------------------------------------------------------------- /ISAT/segment_any/segment_anything/modeling/sam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/segment_anything/modeling/sam.py -------------------------------------------------------------------------------- /ISAT/segment_any/segment_anything/predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/segment_anything/predictor.py -------------------------------------------------------------------------------- /ISAT/segment_any/segment_anything/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/segment_anything/utils/__init__.py -------------------------------------------------------------------------------- /ISAT/segment_any/segment_anything/utils/amg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/segment_anything/utils/amg.py -------------------------------------------------------------------------------- /ISAT/segment_any/segment_anything/utils/onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/segment_anything/utils/onnx.py -------------------------------------------------------------------------------- /ISAT/segment_any/segment_anything/utils/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/segment_anything/utils/transforms.py -------------------------------------------------------------------------------- /ISAT/segment_any/segment_anything_fast/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/segment_anything_fast/__init__.py -------------------------------------------------------------------------------- /ISAT/segment_any/segment_anything_fast/build_sam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/segment_anything_fast/build_sam.py -------------------------------------------------------------------------------- /ISAT/segment_any/segment_anything_fast/configs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ISAT/segment_any/segment_anything_fast/flash_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/segment_anything_fast/flash_4.py -------------------------------------------------------------------------------- /ISAT/segment_any/segment_anything_fast/predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/segment_anything_fast/predictor.py -------------------------------------------------------------------------------- /ISAT/segment_any/segment_anything_fast/sparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/segment_anything_fast/sparse.py -------------------------------------------------------------------------------- /ISAT/segment_any/segment_anything_fast/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/segment_anything_fast/tools.py -------------------------------------------------------------------------------- /ISAT/segment_any/segment_anything_fast/utils/amg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/segment_anything_fast/utils/amg.py -------------------------------------------------------------------------------- /ISAT/segment_any/segment_anything_fast/utils/onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/segment_anything_fast/utils/onnx.py -------------------------------------------------------------------------------- /ISAT/segment_any/segment_anything_hq/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/segment_anything_hq/__init__.py -------------------------------------------------------------------------------- /ISAT/segment_any/segment_anything_hq/build_sam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/segment_anything_hq/build_sam.py -------------------------------------------------------------------------------- /ISAT/segment_any/segment_anything_hq/predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/segment_anything_hq/predictor.py -------------------------------------------------------------------------------- /ISAT/segment_any/segment_anything_hq/utils/amg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/segment_anything_hq/utils/amg.py -------------------------------------------------------------------------------- /ISAT/segment_any/segment_anything_hq/utils/onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/segment_anything_hq/utils/onnx.py -------------------------------------------------------------------------------- /ISAT/segment_any/segment_anything_med2d/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/segment_any/segment_anything_med2d/__init__.py -------------------------------------------------------------------------------- /ISAT/software.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/software.yaml -------------------------------------------------------------------------------- /ISAT/ui/Converter_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/Converter_dialog.py -------------------------------------------------------------------------------- /ISAT/ui/Converter_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/Converter_dialog.ui -------------------------------------------------------------------------------- /ISAT/ui/MainWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/MainWindow.py -------------------------------------------------------------------------------- /ISAT/ui/MainWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/MainWindow.ui -------------------------------------------------------------------------------- /ISAT/ui/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author : LG 3 | -------------------------------------------------------------------------------- /ISAT/ui/about_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/about_dialog.py -------------------------------------------------------------------------------- /ISAT/ui/about_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/about_dialog.ui -------------------------------------------------------------------------------- /ISAT/ui/anno_dock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/anno_dock.py -------------------------------------------------------------------------------- /ISAT/ui/anno_dock.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/anno_dock.ui -------------------------------------------------------------------------------- /ISAT/ui/annos_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/annos_validator.py -------------------------------------------------------------------------------- /ISAT/ui/annos_validator.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/annos_validator.ui -------------------------------------------------------------------------------- /ISAT/ui/auto_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/auto_segment.py -------------------------------------------------------------------------------- /ISAT/ui/auto_segment.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/auto_segment.ui -------------------------------------------------------------------------------- /ISAT/ui/category_dock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/category_dock.py -------------------------------------------------------------------------------- /ISAT/ui/category_dock.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/category_dock.ui -------------------------------------------------------------------------------- /ISAT/ui/category_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/category_edit.py -------------------------------------------------------------------------------- /ISAT/ui/category_edit.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/category_edit.ui -------------------------------------------------------------------------------- /ISAT/ui/category_setting_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/category_setting_dialog.py -------------------------------------------------------------------------------- /ISAT/ui/category_setting_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/category_setting_dialog.ui -------------------------------------------------------------------------------- /ISAT/ui/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/en.ts -------------------------------------------------------------------------------- /ISAT/ui/file_dock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/file_dock.py -------------------------------------------------------------------------------- /ISAT/ui/file_dock.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/file_dock.ui -------------------------------------------------------------------------------- /ISAT/ui/info_dock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/info_dock.py -------------------------------------------------------------------------------- /ISAT/ui/info_dock.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/info_dock.ui -------------------------------------------------------------------------------- /ISAT/ui/model_manager_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/model_manager_dialog.py -------------------------------------------------------------------------------- /ISAT/ui/model_manager_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/model_manager_dialog.ui -------------------------------------------------------------------------------- /ISAT/ui/plugin_manager_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/plugin_manager_dialog.py -------------------------------------------------------------------------------- /ISAT/ui/plugin_manager_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/plugin_manager_dialog.ui -------------------------------------------------------------------------------- /ISAT/ui/process_exif_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/process_exif_dialog.py -------------------------------------------------------------------------------- /ISAT/ui/process_exif_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/process_exif_dialog.ui -------------------------------------------------------------------------------- /ISAT/ui/remote_sam_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/remote_sam_dialog.py -------------------------------------------------------------------------------- /ISAT/ui/remote_sam_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/remote_sam_dialog.ui -------------------------------------------------------------------------------- /ISAT/ui/setting_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/setting_dialog.py -------------------------------------------------------------------------------- /ISAT/ui/setting_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/setting_dialog.ui -------------------------------------------------------------------------------- /ISAT/ui/shortcut_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/shortcut_dialog.py -------------------------------------------------------------------------------- /ISAT/ui/shortcut_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/shortcut_dialog.ui -------------------------------------------------------------------------------- /ISAT/ui/video_to_frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/video_to_frames.py -------------------------------------------------------------------------------- /ISAT/ui/video_to_frames.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/video_to_frames.ui -------------------------------------------------------------------------------- /ISAT/ui/zh_CN.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/zh_CN.qm -------------------------------------------------------------------------------- /ISAT/ui/zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/ui/zh_CN.ts -------------------------------------------------------------------------------- /ISAT/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author : LG 3 | -------------------------------------------------------------------------------- /ISAT/utils/dicom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/utils/dicom.py -------------------------------------------------------------------------------- /ISAT/widgets/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author : LG 3 | -------------------------------------------------------------------------------- /ISAT/widgets/about_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/widgets/about_dialog.py -------------------------------------------------------------------------------- /ISAT/widgets/annos_dock_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/widgets/annos_dock_widget.py -------------------------------------------------------------------------------- /ISAT/widgets/annos_validator_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/widgets/annos_validator_dialog.py -------------------------------------------------------------------------------- /ISAT/widgets/auto_segment_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/widgets/auto_segment_dialog.py -------------------------------------------------------------------------------- /ISAT/widgets/canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/widgets/canvas.py -------------------------------------------------------------------------------- /ISAT/widgets/category_dock_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/widgets/category_dock_widget.py -------------------------------------------------------------------------------- /ISAT/widgets/category_edit_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/widgets/category_edit_dialog.py -------------------------------------------------------------------------------- /ISAT/widgets/category_setting_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/widgets/category_setting_dialog.py -------------------------------------------------------------------------------- /ISAT/widgets/converter_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/widgets/converter_dialog.py -------------------------------------------------------------------------------- /ISAT/widgets/files_dock_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/widgets/files_dock_widget.py -------------------------------------------------------------------------------- /ISAT/widgets/info_dock_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/widgets/info_dock_widget.py -------------------------------------------------------------------------------- /ISAT/widgets/mainwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/widgets/mainwindow.py -------------------------------------------------------------------------------- /ISAT/widgets/model_manager_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/widgets/model_manager_dialog.py -------------------------------------------------------------------------------- /ISAT/widgets/plugin_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/widgets/plugin_base.py -------------------------------------------------------------------------------- /ISAT/widgets/plugin_manager_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/widgets/plugin_manager_dialog.py -------------------------------------------------------------------------------- /ISAT/widgets/polygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/widgets/polygon.py -------------------------------------------------------------------------------- /ISAT/widgets/process_exif_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/widgets/process_exif_dialog.py -------------------------------------------------------------------------------- /ISAT/widgets/remote_sam_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/widgets/remote_sam_dialog.py -------------------------------------------------------------------------------- /ISAT/widgets/right_button_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/widgets/right_button_menu.py -------------------------------------------------------------------------------- /ISAT/widgets/setting_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/widgets/setting_dialog.py -------------------------------------------------------------------------------- /ISAT/widgets/shortcut_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/widgets/shortcut_dialog.py -------------------------------------------------------------------------------- /ISAT/widgets/switch_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/widgets/switch_button.py -------------------------------------------------------------------------------- /ISAT/widgets/video_to_frames_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/ISAT/widgets/video_to_frames_dialog.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/README-cn.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/SECURITY.md -------------------------------------------------------------------------------- /display/approx_polygon_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/approx_polygon_disabled.png -------------------------------------------------------------------------------- /display/approx_polygon_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/approx_polygon_enabled.png -------------------------------------------------------------------------------- /display/area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/area.png -------------------------------------------------------------------------------- /display/backspace.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/backspace.gif -------------------------------------------------------------------------------- /display/box_prompts.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/box_prompts.gif -------------------------------------------------------------------------------- /display/category_dock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/category_dock.png -------------------------------------------------------------------------------- /display/category_search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/category_search.gif -------------------------------------------------------------------------------- /display/category_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/category_setting.png -------------------------------------------------------------------------------- /display/clicking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/clicking.gif -------------------------------------------------------------------------------- /display/contour_all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/contour_all.gif -------------------------------------------------------------------------------- /display/contour_external.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/contour_external.gif -------------------------------------------------------------------------------- /display/contour_only_max.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/contour_only_max.gif -------------------------------------------------------------------------------- /display/detail_inspection.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/detail_inspection.gif -------------------------------------------------------------------------------- /display/dragging.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/dragging.gif -------------------------------------------------------------------------------- /display/draw_polygon_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/draw_polygon_button.png -------------------------------------------------------------------------------- /display/edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/edit.gif -------------------------------------------------------------------------------- /display/exclude.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/exclude.gif -------------------------------------------------------------------------------- /display/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/export.png -------------------------------------------------------------------------------- /display/intersect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/intersect.gif -------------------------------------------------------------------------------- /display/language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/language.png -------------------------------------------------------------------------------- /display/layer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/layer.gif -------------------------------------------------------------------------------- /display/model_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/model_manager.png -------------------------------------------------------------------------------- /display/move_and_delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/move_and_delete.gif -------------------------------------------------------------------------------- /display/plugins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/plugins.png -------------------------------------------------------------------------------- /display/point_box_prompt_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/point_box_prompt_button.png -------------------------------------------------------------------------------- /display/point_prompts.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/point_prompts.gif -------------------------------------------------------------------------------- /display/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/preview.gif -------------------------------------------------------------------------------- /display/quick_browsing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/quick_browsing.gif -------------------------------------------------------------------------------- /display/remote_sam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/remote_sam.png -------------------------------------------------------------------------------- /display/repaint.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/repaint.gif -------------------------------------------------------------------------------- /display/setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/setting.png -------------------------------------------------------------------------------- /display/shift_constraint.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/shift_constraint.gif -------------------------------------------------------------------------------- /display/shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/shortcut.png -------------------------------------------------------------------------------- /display/software.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/software.gif -------------------------------------------------------------------------------- /display/subtract.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/subtract.gif -------------------------------------------------------------------------------- /display/union.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/union.gif -------------------------------------------------------------------------------- /display/use_fine_tuned_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/use_fine_tuned_model.png -------------------------------------------------------------------------------- /display/video_annotation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/display/video_annotation.gif -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd /ISAT_with_segment_anything 3 | python main.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/_api/ISAT.formats.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/_api/ISAT.formats.rst -------------------------------------------------------------------------------- /docs/source/_api/ISAT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/_api/ISAT.rst -------------------------------------------------------------------------------- /docs/source/_api/ISAT.segment_any.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/_api/ISAT.segment_any.rst -------------------------------------------------------------------------------- /docs/source/_api/ISAT.utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/_api/ISAT.utils.rst -------------------------------------------------------------------------------- /docs/source/_api/ISAT.widgets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/_api/ISAT.widgets.rst -------------------------------------------------------------------------------- /docs/source/_api/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/_api/modules.rst -------------------------------------------------------------------------------- /docs/source/_static/ISAT_new_64.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/_static/ISAT_new_64.svg -------------------------------------------------------------------------------- /docs/source/annotation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/annotation.rst -------------------------------------------------------------------------------- /docs/source/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/api.rst -------------------------------------------------------------------------------- /docs/source/bug_report.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/bug_report.rst -------------------------------------------------------------------------------- /docs/source/category_setting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/category_setting.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/contact_us.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/contact_us.rst -------------------------------------------------------------------------------- /docs/source/discussion.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/discussion.rst -------------------------------------------------------------------------------- /docs/source/export.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/export.rst -------------------------------------------------------------------------------- /docs/source/feature_request.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/feature_request.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/inspect.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/inspect.rst -------------------------------------------------------------------------------- /docs/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/install.rst -------------------------------------------------------------------------------- /docs/source/locales/zh_CN/LC_MESSAGES/_api/ISAT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/locales/zh_CN/LC_MESSAGES/_api/ISAT.mo -------------------------------------------------------------------------------- /docs/source/locales/zh_CN/LC_MESSAGES/_api/ISAT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/locales/zh_CN/LC_MESSAGES/_api/ISAT.po -------------------------------------------------------------------------------- /docs/source/locales/zh_CN/LC_MESSAGES/annotation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/locales/zh_CN/LC_MESSAGES/annotation.mo -------------------------------------------------------------------------------- /docs/source/locales/zh_CN/LC_MESSAGES/annotation.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/locales/zh_CN/LC_MESSAGES/annotation.po -------------------------------------------------------------------------------- /docs/source/locales/zh_CN/LC_MESSAGES/api.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/locales/zh_CN/LC_MESSAGES/api.mo -------------------------------------------------------------------------------- /docs/source/locales/zh_CN/LC_MESSAGES/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/locales/zh_CN/LC_MESSAGES/api.po -------------------------------------------------------------------------------- /docs/source/locales/zh_CN/LC_MESSAGES/bug_report.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/locales/zh_CN/LC_MESSAGES/bug_report.mo -------------------------------------------------------------------------------- /docs/source/locales/zh_CN/LC_MESSAGES/bug_report.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/locales/zh_CN/LC_MESSAGES/bug_report.po -------------------------------------------------------------------------------- /docs/source/locales/zh_CN/LC_MESSAGES/contact_us.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/locales/zh_CN/LC_MESSAGES/contact_us.mo -------------------------------------------------------------------------------- /docs/source/locales/zh_CN/LC_MESSAGES/contact_us.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/locales/zh_CN/LC_MESSAGES/contact_us.po -------------------------------------------------------------------------------- /docs/source/locales/zh_CN/LC_MESSAGES/discussion.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/locales/zh_CN/LC_MESSAGES/discussion.mo -------------------------------------------------------------------------------- /docs/source/locales/zh_CN/LC_MESSAGES/discussion.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/locales/zh_CN/LC_MESSAGES/discussion.po -------------------------------------------------------------------------------- /docs/source/locales/zh_CN/LC_MESSAGES/export.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/locales/zh_CN/LC_MESSAGES/export.mo -------------------------------------------------------------------------------- /docs/source/locales/zh_CN/LC_MESSAGES/export.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/locales/zh_CN/LC_MESSAGES/export.po -------------------------------------------------------------------------------- /docs/source/locales/zh_CN/LC_MESSAGES/index.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/locales/zh_CN/LC_MESSAGES/index.mo -------------------------------------------------------------------------------- /docs/source/locales/zh_CN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/locales/zh_CN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /docs/source/locales/zh_CN/LC_MESSAGES/inspect.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/locales/zh_CN/LC_MESSAGES/inspect.mo -------------------------------------------------------------------------------- /docs/source/locales/zh_CN/LC_MESSAGES/inspect.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/locales/zh_CN/LC_MESSAGES/inspect.po -------------------------------------------------------------------------------- /docs/source/locales/zh_CN/LC_MESSAGES/install.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/locales/zh_CN/LC_MESSAGES/install.mo -------------------------------------------------------------------------------- /docs/source/locales/zh_CN/LC_MESSAGES/install.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/locales/zh_CN/LC_MESSAGES/install.po -------------------------------------------------------------------------------- /docs/source/locales/zh_CN/LC_MESSAGES/modify.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/locales/zh_CN/LC_MESSAGES/modify.mo -------------------------------------------------------------------------------- /docs/source/locales/zh_CN/LC_MESSAGES/modify.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/locales/zh_CN/LC_MESSAGES/modify.po -------------------------------------------------------------------------------- /docs/source/locales/zh_CN/LC_MESSAGES/other.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/locales/zh_CN/LC_MESSAGES/other.mo -------------------------------------------------------------------------------- /docs/source/locales/zh_CN/LC_MESSAGES/other.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/locales/zh_CN/LC_MESSAGES/other.po -------------------------------------------------------------------------------- /docs/source/locales/zh_CN/LC_MESSAGES/plugin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/locales/zh_CN/LC_MESSAGES/plugin.mo -------------------------------------------------------------------------------- /docs/source/locales/zh_CN/LC_MESSAGES/plugin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/locales/zh_CN/LC_MESSAGES/plugin.po -------------------------------------------------------------------------------- /docs/source/locales/zh_CN/LC_MESSAGES/sam_model.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/locales/zh_CN/LC_MESSAGES/sam_model.mo -------------------------------------------------------------------------------- /docs/source/locales/zh_CN/LC_MESSAGES/sam_model.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/locales/zh_CN/LC_MESSAGES/sam_model.po -------------------------------------------------------------------------------- /docs/source/locales/zh_CN/LC_MESSAGES/usage.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/locales/zh_CN/LC_MESSAGES/usage.mo -------------------------------------------------------------------------------- /docs/source/locales/zh_CN/LC_MESSAGES/usage.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/locales/zh_CN/LC_MESSAGES/usage.po -------------------------------------------------------------------------------- /docs/source/modify.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/modify.rst -------------------------------------------------------------------------------- /docs/source/other.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/other.rst -------------------------------------------------------------------------------- /docs/source/plugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/plugin.rst -------------------------------------------------------------------------------- /docs/source/plugin_development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/plugin_development.rst -------------------------------------------------------------------------------- /docs/source/plugin_list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/plugin_list.rst -------------------------------------------------------------------------------- /docs/source/plugin_usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/plugin_usage.rst -------------------------------------------------------------------------------- /docs/source/sam_model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/sam_model.rst -------------------------------------------------------------------------------- /docs/source/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/docs/source/usage.rst -------------------------------------------------------------------------------- /example/convert/coco_tiny/coco_tiny.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/convert/coco_tiny/coco_tiny.json -------------------------------------------------------------------------------- /example/convert/coco_tiny/images/000000013923.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/convert/coco_tiny/images/000000013923.jpg -------------------------------------------------------------------------------- /example/convert/coco_tiny/images/000000076261.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/convert/coco_tiny/images/000000076261.jpg -------------------------------------------------------------------------------- /example/convert/coco_tiny/images/000000083540.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/convert/coco_tiny/images/000000083540.jpg -------------------------------------------------------------------------------- /example/convert/coco_tiny/images/000000100723.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/convert/coco_tiny/images/000000100723.jpg -------------------------------------------------------------------------------- /example/convert/coco_tiny/images/000000549930.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/convert/coco_tiny/images/000000549930.jpg -------------------------------------------------------------------------------- /example/convert/coco_tiny/isat/000000013923.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/convert/coco_tiny/isat/000000013923.json -------------------------------------------------------------------------------- /example/convert/coco_tiny/isat/000000076261.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/convert/coco_tiny/isat/000000076261.json -------------------------------------------------------------------------------- /example/convert/coco_tiny/isat/000000083540.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/convert/coco_tiny/isat/000000083540.json -------------------------------------------------------------------------------- /example/convert/coco_tiny/isat/000000100723.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/convert/coco_tiny/isat/000000100723.json -------------------------------------------------------------------------------- /example/convert/coco_tiny/isat/000000549930.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/convert/coco_tiny/isat/000000549930.json -------------------------------------------------------------------------------- /example/convert/coco_tiny/isat/isat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/convert/coco_tiny/isat/isat.yaml -------------------------------------------------------------------------------- /example/convert/coco_tiny/labelme/000000013923.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/convert/coco_tiny/labelme/000000013923.json -------------------------------------------------------------------------------- /example/convert/coco_tiny/labelme/000000076261.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/convert/coco_tiny/labelme/000000076261.json -------------------------------------------------------------------------------- /example/convert/coco_tiny/labelme/000000083540.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/convert/coco_tiny/labelme/000000083540.json -------------------------------------------------------------------------------- /example/convert/coco_tiny/labelme/000000100723.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/convert/coco_tiny/labelme/000000100723.json -------------------------------------------------------------------------------- /example/convert/coco_tiny/labelme/000000549930.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/convert/coco_tiny/labelme/000000549930.json -------------------------------------------------------------------------------- /example/convert/coco_tiny/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/convert/coco_tiny/markdown.md -------------------------------------------------------------------------------- /example/convert/coco_tiny/yolo/000000013923.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/convert/coco_tiny/yolo/000000013923.txt -------------------------------------------------------------------------------- /example/convert/coco_tiny/yolo/000000076261.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/convert/coco_tiny/yolo/000000076261.txt -------------------------------------------------------------------------------- /example/convert/coco_tiny/yolo/000000083540.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/convert/coco_tiny/yolo/000000083540.txt -------------------------------------------------------------------------------- /example/convert/coco_tiny/yolo/000000100723.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/convert/coco_tiny/yolo/000000100723.txt -------------------------------------------------------------------------------- /example/convert/coco_tiny/yolo/000000549930.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/convert/coco_tiny/yolo/000000549930.txt -------------------------------------------------------------------------------- /example/convert/coco可视化.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/convert/coco可视化.ipynb -------------------------------------------------------------------------------- /example/convert/convert.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/convert/convert.ipynb -------------------------------------------------------------------------------- /example/images/000000000113.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/images/000000000113.jpg -------------------------------------------------------------------------------- /example/images/000000000113.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/images/000000000113.json -------------------------------------------------------------------------------- /example/images/000000000144.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/images/000000000144.jpg -------------------------------------------------------------------------------- /example/images/000000000144.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/images/000000000144.json -------------------------------------------------------------------------------- /example/images/000000000308.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/images/000000000308.jpg -------------------------------------------------------------------------------- /example/images/000000000308.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/images/000000000308.json -------------------------------------------------------------------------------- /example/images/000000000872.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/images/000000000872.jpg -------------------------------------------------------------------------------- /example/images/000000000872.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/images/000000000872.json -------------------------------------------------------------------------------- /example/images/000000002592.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/images/000000002592.jpg -------------------------------------------------------------------------------- /example/images/000000002592.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/images/000000002592.json -------------------------------------------------------------------------------- /example/images/000000117425.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/images/000000117425.jpg -------------------------------------------------------------------------------- /example/images/000000117425.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/images/000000117425.json -------------------------------------------------------------------------------- /example/images/image-00220.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/images/image-00220.dcm -------------------------------------------------------------------------------- /example/images/isat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/images/isat.yaml -------------------------------------------------------------------------------- /example/instance/000000000113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/instance/000000000113.png -------------------------------------------------------------------------------- /example/instance/000000000144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/instance/000000000144.png -------------------------------------------------------------------------------- /example/instance/000000000308.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/instance/000000000308.png -------------------------------------------------------------------------------- /example/instance/000000000872.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/instance/000000000872.png -------------------------------------------------------------------------------- /example/instance/000000002592.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/instance/000000002592.png -------------------------------------------------------------------------------- /example/instance/000000117425.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/instance/000000117425.png -------------------------------------------------------------------------------- /example/semantic/000000000113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/semantic/000000000113.png -------------------------------------------------------------------------------- /example/semantic/000000000144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/semantic/000000000144.png -------------------------------------------------------------------------------- /example/semantic/000000000308.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/semantic/000000000308.png -------------------------------------------------------------------------------- /example/semantic/000000000872.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/semantic/000000000872.png -------------------------------------------------------------------------------- /example/semantic/000000002592.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/semantic/000000002592.png -------------------------------------------------------------------------------- /example/semantic/000000117425.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/semantic/000000117425.png -------------------------------------------------------------------------------- /example/semantic/classification.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/semantic/classification.txt -------------------------------------------------------------------------------- /example/videos/00000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00000.jpg -------------------------------------------------------------------------------- /example/videos/00000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00000.json -------------------------------------------------------------------------------- /example/videos/00001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00001.jpg -------------------------------------------------------------------------------- /example/videos/00001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00001.json -------------------------------------------------------------------------------- /example/videos/00002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00002.jpg -------------------------------------------------------------------------------- /example/videos/00002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00002.json -------------------------------------------------------------------------------- /example/videos/00003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00003.jpg -------------------------------------------------------------------------------- /example/videos/00003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00003.json -------------------------------------------------------------------------------- /example/videos/00004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00004.jpg -------------------------------------------------------------------------------- /example/videos/00004.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00004.json -------------------------------------------------------------------------------- /example/videos/00005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00005.jpg -------------------------------------------------------------------------------- /example/videos/00005.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00005.json -------------------------------------------------------------------------------- /example/videos/00006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00006.jpg -------------------------------------------------------------------------------- /example/videos/00006.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00006.json -------------------------------------------------------------------------------- /example/videos/00007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00007.jpg -------------------------------------------------------------------------------- /example/videos/00007.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00007.json -------------------------------------------------------------------------------- /example/videos/00008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00008.jpg -------------------------------------------------------------------------------- /example/videos/00008.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00008.json -------------------------------------------------------------------------------- /example/videos/00009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00009.jpg -------------------------------------------------------------------------------- /example/videos/00009.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00009.json -------------------------------------------------------------------------------- /example/videos/00010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00010.jpg -------------------------------------------------------------------------------- /example/videos/00010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00010.json -------------------------------------------------------------------------------- /example/videos/00011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00011.jpg -------------------------------------------------------------------------------- /example/videos/00011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00011.json -------------------------------------------------------------------------------- /example/videos/00012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00012.jpg -------------------------------------------------------------------------------- /example/videos/00012.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00012.json -------------------------------------------------------------------------------- /example/videos/00013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00013.jpg -------------------------------------------------------------------------------- /example/videos/00013.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00013.json -------------------------------------------------------------------------------- /example/videos/00014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00014.jpg -------------------------------------------------------------------------------- /example/videos/00014.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00014.json -------------------------------------------------------------------------------- /example/videos/00015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00015.jpg -------------------------------------------------------------------------------- /example/videos/00015.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00015.json -------------------------------------------------------------------------------- /example/videos/00016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00016.jpg -------------------------------------------------------------------------------- /example/videos/00016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00016.json -------------------------------------------------------------------------------- /example/videos/00017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00017.jpg -------------------------------------------------------------------------------- /example/videos/00017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00017.json -------------------------------------------------------------------------------- /example/videos/00018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00018.jpg -------------------------------------------------------------------------------- /example/videos/00018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00018.json -------------------------------------------------------------------------------- /example/videos/00019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00019.jpg -------------------------------------------------------------------------------- /example/videos/00019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00019.json -------------------------------------------------------------------------------- /example/videos/00020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00020.jpg -------------------------------------------------------------------------------- /example/videos/00020.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00020.json -------------------------------------------------------------------------------- /example/videos/00021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00021.jpg -------------------------------------------------------------------------------- /example/videos/00021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00021.json -------------------------------------------------------------------------------- /example/videos/00022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00022.jpg -------------------------------------------------------------------------------- /example/videos/00022.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00022.json -------------------------------------------------------------------------------- /example/videos/00023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00023.jpg -------------------------------------------------------------------------------- /example/videos/00023.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00023.json -------------------------------------------------------------------------------- /example/videos/00024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00024.jpg -------------------------------------------------------------------------------- /example/videos/00024.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00024.json -------------------------------------------------------------------------------- /example/videos/00025.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00025.jpg -------------------------------------------------------------------------------- /example/videos/00025.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00025.json -------------------------------------------------------------------------------- /example/videos/00026.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00026.jpg -------------------------------------------------------------------------------- /example/videos/00026.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00026.json -------------------------------------------------------------------------------- /example/videos/00027.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00027.jpg -------------------------------------------------------------------------------- /example/videos/00027.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00027.json -------------------------------------------------------------------------------- /example/videos/00028.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00028.jpg -------------------------------------------------------------------------------- /example/videos/00028.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00028.json -------------------------------------------------------------------------------- /example/videos/00029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00029.jpg -------------------------------------------------------------------------------- /example/videos/00029.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00029.json -------------------------------------------------------------------------------- /example/videos/00030.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00030.jpg -------------------------------------------------------------------------------- /example/videos/00030.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00030.json -------------------------------------------------------------------------------- /example/videos/00031.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00031.jpg -------------------------------------------------------------------------------- /example/videos/00031.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00031.json -------------------------------------------------------------------------------- /example/videos/00032.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00032.jpg -------------------------------------------------------------------------------- /example/videos/00032.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00032.json -------------------------------------------------------------------------------- /example/videos/00033.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00033.jpg -------------------------------------------------------------------------------- /example/videos/00033.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00033.json -------------------------------------------------------------------------------- /example/videos/00034.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00034.jpg -------------------------------------------------------------------------------- /example/videos/00034.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00034.json -------------------------------------------------------------------------------- /example/videos/00035.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00035.jpg -------------------------------------------------------------------------------- /example/videos/00035.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00035.json -------------------------------------------------------------------------------- /example/videos/00036.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00036.jpg -------------------------------------------------------------------------------- /example/videos/00036.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00036.json -------------------------------------------------------------------------------- /example/videos/00037.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00037.jpg -------------------------------------------------------------------------------- /example/videos/00037.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00037.json -------------------------------------------------------------------------------- /example/videos/00038.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00038.jpg -------------------------------------------------------------------------------- /example/videos/00038.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00038.json -------------------------------------------------------------------------------- /example/videos/00039.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00039.jpg -------------------------------------------------------------------------------- /example/videos/00039.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00039.json -------------------------------------------------------------------------------- /example/videos/00040.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00040.jpg -------------------------------------------------------------------------------- /example/videos/00040.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00040.json -------------------------------------------------------------------------------- /example/videos/00041.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00041.jpg -------------------------------------------------------------------------------- /example/videos/00041.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00041.json -------------------------------------------------------------------------------- /example/videos/00042.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00042.jpg -------------------------------------------------------------------------------- /example/videos/00042.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00042.json -------------------------------------------------------------------------------- /example/videos/00043.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00043.jpg -------------------------------------------------------------------------------- /example/videos/00043.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00043.json -------------------------------------------------------------------------------- /example/videos/00044.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00044.jpg -------------------------------------------------------------------------------- /example/videos/00044.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00044.json -------------------------------------------------------------------------------- /example/videos/00045.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00045.jpg -------------------------------------------------------------------------------- /example/videos/00045.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00045.json -------------------------------------------------------------------------------- /example/videos/00046.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00046.jpg -------------------------------------------------------------------------------- /example/videos/00046.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00046.json -------------------------------------------------------------------------------- /example/videos/00047.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00047.jpg -------------------------------------------------------------------------------- /example/videos/00047.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00047.json -------------------------------------------------------------------------------- /example/videos/00048.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00048.jpg -------------------------------------------------------------------------------- /example/videos/00048.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00048.json -------------------------------------------------------------------------------- /example/videos/00049.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00049.jpg -------------------------------------------------------------------------------- /example/videos/00049.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00049.json -------------------------------------------------------------------------------- /example/videos/00050.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00050.jpg -------------------------------------------------------------------------------- /example/videos/00050.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00050.json -------------------------------------------------------------------------------- /example/videos/00051.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00051.jpg -------------------------------------------------------------------------------- /example/videos/00051.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00051.json -------------------------------------------------------------------------------- /example/videos/00052.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00052.jpg -------------------------------------------------------------------------------- /example/videos/00052.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00052.json -------------------------------------------------------------------------------- /example/videos/00053.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00053.jpg -------------------------------------------------------------------------------- /example/videos/00053.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00053.json -------------------------------------------------------------------------------- /example/videos/00054.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00054.jpg -------------------------------------------------------------------------------- /example/videos/00054.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00054.json -------------------------------------------------------------------------------- /example/videos/00055.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00055.jpg -------------------------------------------------------------------------------- /example/videos/00055.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00055.json -------------------------------------------------------------------------------- /example/videos/00056.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00056.jpg -------------------------------------------------------------------------------- /example/videos/00056.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00056.json -------------------------------------------------------------------------------- /example/videos/00057.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00057.jpg -------------------------------------------------------------------------------- /example/videos/00057.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00057.json -------------------------------------------------------------------------------- /example/videos/00058.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00058.jpg -------------------------------------------------------------------------------- /example/videos/00058.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00058.json -------------------------------------------------------------------------------- /example/videos/00059.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00059.jpg -------------------------------------------------------------------------------- /example/videos/00059.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00059.json -------------------------------------------------------------------------------- /example/videos/00060.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00060.jpg -------------------------------------------------------------------------------- /example/videos/00060.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00060.json -------------------------------------------------------------------------------- /example/videos/00061.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00061.jpg -------------------------------------------------------------------------------- /example/videos/00061.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00061.json -------------------------------------------------------------------------------- /example/videos/00062.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00062.jpg -------------------------------------------------------------------------------- /example/videos/00062.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00062.json -------------------------------------------------------------------------------- /example/videos/00063.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00063.jpg -------------------------------------------------------------------------------- /example/videos/00063.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00063.json -------------------------------------------------------------------------------- /example/videos/00064.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00064.jpg -------------------------------------------------------------------------------- /example/videos/00064.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00064.json -------------------------------------------------------------------------------- /example/videos/00065.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00065.jpg -------------------------------------------------------------------------------- /example/videos/00065.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00065.json -------------------------------------------------------------------------------- /example/videos/00066.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00066.jpg -------------------------------------------------------------------------------- /example/videos/00066.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00066.json -------------------------------------------------------------------------------- /example/videos/00067.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00067.jpg -------------------------------------------------------------------------------- /example/videos/00067.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00067.json -------------------------------------------------------------------------------- /example/videos/00068.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00068.jpg -------------------------------------------------------------------------------- /example/videos/00068.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00068.json -------------------------------------------------------------------------------- /example/videos/00069.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00069.jpg -------------------------------------------------------------------------------- /example/videos/00069.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00069.json -------------------------------------------------------------------------------- /example/videos/00070.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00070.jpg -------------------------------------------------------------------------------- /example/videos/00070.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00070.json -------------------------------------------------------------------------------- /example/videos/00071.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00071.jpg -------------------------------------------------------------------------------- /example/videos/00071.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00071.json -------------------------------------------------------------------------------- /example/videos/00072.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00072.jpg -------------------------------------------------------------------------------- /example/videos/00072.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00072.json -------------------------------------------------------------------------------- /example/videos/00073.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00073.jpg -------------------------------------------------------------------------------- /example/videos/00073.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00073.json -------------------------------------------------------------------------------- /example/videos/00074.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00074.jpg -------------------------------------------------------------------------------- /example/videos/00074.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00074.json -------------------------------------------------------------------------------- /example/videos/00075.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00075.jpg -------------------------------------------------------------------------------- /example/videos/00075.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00075.json -------------------------------------------------------------------------------- /example/videos/00076.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00076.jpg -------------------------------------------------------------------------------- /example/videos/00076.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00076.json -------------------------------------------------------------------------------- /example/videos/00077.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00077.jpg -------------------------------------------------------------------------------- /example/videos/00077.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00077.json -------------------------------------------------------------------------------- /example/videos/00078.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00078.jpg -------------------------------------------------------------------------------- /example/videos/00078.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00078.json -------------------------------------------------------------------------------- /example/videos/00079.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00079.jpg -------------------------------------------------------------------------------- /example/videos/00079.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00079.json -------------------------------------------------------------------------------- /example/videos/00080.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00080.jpg -------------------------------------------------------------------------------- /example/videos/00080.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00080.json -------------------------------------------------------------------------------- /example/videos/00081.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00081.jpg -------------------------------------------------------------------------------- /example/videos/00081.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00081.json -------------------------------------------------------------------------------- /example/videos/00082.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00082.jpg -------------------------------------------------------------------------------- /example/videos/00082.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00082.json -------------------------------------------------------------------------------- /example/videos/00083.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00083.jpg -------------------------------------------------------------------------------- /example/videos/00083.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00083.json -------------------------------------------------------------------------------- /example/videos/00084.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00084.jpg -------------------------------------------------------------------------------- /example/videos/00084.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00084.json -------------------------------------------------------------------------------- /example/videos/00085.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00085.jpg -------------------------------------------------------------------------------- /example/videos/00085.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00085.json -------------------------------------------------------------------------------- /example/videos/00086.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00086.jpg -------------------------------------------------------------------------------- /example/videos/00086.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00086.json -------------------------------------------------------------------------------- /example/videos/00087.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00087.jpg -------------------------------------------------------------------------------- /example/videos/00087.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00087.json -------------------------------------------------------------------------------- /example/videos/00088.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00088.jpg -------------------------------------------------------------------------------- /example/videos/00088.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00088.json -------------------------------------------------------------------------------- /example/videos/00089.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00089.jpg -------------------------------------------------------------------------------- /example/videos/00089.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00089.json -------------------------------------------------------------------------------- /example/videos/00090.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00090.jpg -------------------------------------------------------------------------------- /example/videos/00090.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00090.json -------------------------------------------------------------------------------- /example/videos/00091.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00091.jpg -------------------------------------------------------------------------------- /example/videos/00091.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00091.json -------------------------------------------------------------------------------- /example/videos/00092.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00092.jpg -------------------------------------------------------------------------------- /example/videos/00092.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00092.json -------------------------------------------------------------------------------- /example/videos/00093.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00093.jpg -------------------------------------------------------------------------------- /example/videos/00093.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00093.json -------------------------------------------------------------------------------- /example/videos/00094.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00094.jpg -------------------------------------------------------------------------------- /example/videos/00094.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00094.json -------------------------------------------------------------------------------- /example/videos/00095.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00095.jpg -------------------------------------------------------------------------------- /example/videos/00095.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00095.json -------------------------------------------------------------------------------- /example/videos/00096.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00096.jpg -------------------------------------------------------------------------------- /example/videos/00096.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00096.json -------------------------------------------------------------------------------- /example/videos/00097.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00097.jpg -------------------------------------------------------------------------------- /example/videos/00097.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00097.json -------------------------------------------------------------------------------- /example/videos/00098.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00098.jpg -------------------------------------------------------------------------------- /example/videos/00098.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00098.json -------------------------------------------------------------------------------- /example/videos/00099.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00099.jpg -------------------------------------------------------------------------------- /example/videos/00099.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00099.json -------------------------------------------------------------------------------- /example/videos/00100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00100.jpg -------------------------------------------------------------------------------- /example/videos/00100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00100.json -------------------------------------------------------------------------------- /example/videos/00101.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00101.jpg -------------------------------------------------------------------------------- /example/videos/00101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00101.json -------------------------------------------------------------------------------- /example/videos/00102.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00102.jpg -------------------------------------------------------------------------------- /example/videos/00102.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00102.json -------------------------------------------------------------------------------- /example/videos/00103.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00103.jpg -------------------------------------------------------------------------------- /example/videos/00103.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00103.json -------------------------------------------------------------------------------- /example/videos/00104.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00104.jpg -------------------------------------------------------------------------------- /example/videos/00104.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00104.json -------------------------------------------------------------------------------- /example/videos/00105.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00105.jpg -------------------------------------------------------------------------------- /example/videos/00105.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00105.json -------------------------------------------------------------------------------- /example/videos/00106.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00106.jpg -------------------------------------------------------------------------------- /example/videos/00106.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00106.json -------------------------------------------------------------------------------- /example/videos/00107.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00107.jpg -------------------------------------------------------------------------------- /example/videos/00107.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00107.json -------------------------------------------------------------------------------- /example/videos/00108.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00108.jpg -------------------------------------------------------------------------------- /example/videos/00108.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00108.json -------------------------------------------------------------------------------- /example/videos/00109.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00109.jpg -------------------------------------------------------------------------------- /example/videos/00109.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00109.json -------------------------------------------------------------------------------- /example/videos/00110.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00110.jpg -------------------------------------------------------------------------------- /example/videos/00110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00110.json -------------------------------------------------------------------------------- /example/videos/00111.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00111.jpg -------------------------------------------------------------------------------- /example/videos/00111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00111.json -------------------------------------------------------------------------------- /example/videos/00112.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00112.jpg -------------------------------------------------------------------------------- /example/videos/00112.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00112.json -------------------------------------------------------------------------------- /example/videos/00113.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00113.jpg -------------------------------------------------------------------------------- /example/videos/00113.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00113.json -------------------------------------------------------------------------------- /example/videos/00114.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00114.jpg -------------------------------------------------------------------------------- /example/videos/00114.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00114.json -------------------------------------------------------------------------------- /example/videos/00115.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00115.jpg -------------------------------------------------------------------------------- /example/videos/00115.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00115.json -------------------------------------------------------------------------------- /example/videos/00116.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00116.jpg -------------------------------------------------------------------------------- /example/videos/00116.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00116.json -------------------------------------------------------------------------------- /example/videos/00117.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00117.jpg -------------------------------------------------------------------------------- /example/videos/00117.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00117.json -------------------------------------------------------------------------------- /example/videos/00118.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00118.jpg -------------------------------------------------------------------------------- /example/videos/00118.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00118.json -------------------------------------------------------------------------------- /example/videos/00119.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00119.jpg -------------------------------------------------------------------------------- /example/videos/00119.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00119.json -------------------------------------------------------------------------------- /example/videos/00120.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00120.jpg -------------------------------------------------------------------------------- /example/videos/00120.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00120.json -------------------------------------------------------------------------------- /example/videos/00121.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00121.jpg -------------------------------------------------------------------------------- /example/videos/00121.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00121.json -------------------------------------------------------------------------------- /example/videos/00122.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00122.jpg -------------------------------------------------------------------------------- /example/videos/00122.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00122.json -------------------------------------------------------------------------------- /example/videos/00123.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00123.jpg -------------------------------------------------------------------------------- /example/videos/00123.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00123.json -------------------------------------------------------------------------------- /example/videos/00124.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00124.jpg -------------------------------------------------------------------------------- /example/videos/00124.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00124.json -------------------------------------------------------------------------------- /example/videos/00125.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00125.jpg -------------------------------------------------------------------------------- /example/videos/00125.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00125.json -------------------------------------------------------------------------------- /example/videos/00126.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00126.jpg -------------------------------------------------------------------------------- /example/videos/00126.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00126.json -------------------------------------------------------------------------------- /example/videos/00127.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00127.jpg -------------------------------------------------------------------------------- /example/videos/00127.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00127.json -------------------------------------------------------------------------------- /example/videos/00128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00128.jpg -------------------------------------------------------------------------------- /example/videos/00128.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00128.json -------------------------------------------------------------------------------- /example/videos/00129.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00129.jpg -------------------------------------------------------------------------------- /example/videos/00129.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00129.json -------------------------------------------------------------------------------- /example/videos/00130.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00130.jpg -------------------------------------------------------------------------------- /example/videos/00130.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00130.json -------------------------------------------------------------------------------- /example/videos/00131.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00131.jpg -------------------------------------------------------------------------------- /example/videos/00131.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00131.json -------------------------------------------------------------------------------- /example/videos/00132.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00132.jpg -------------------------------------------------------------------------------- /example/videos/00132.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00132.json -------------------------------------------------------------------------------- /example/videos/00133.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00133.jpg -------------------------------------------------------------------------------- /example/videos/00133.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00133.json -------------------------------------------------------------------------------- /example/videos/00134.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00134.jpg -------------------------------------------------------------------------------- /example/videos/00134.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00134.json -------------------------------------------------------------------------------- /example/videos/00135.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00135.jpg -------------------------------------------------------------------------------- /example/videos/00135.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00135.json -------------------------------------------------------------------------------- /example/videos/00136.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00136.jpg -------------------------------------------------------------------------------- /example/videos/00136.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00136.json -------------------------------------------------------------------------------- /example/videos/00137.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00137.jpg -------------------------------------------------------------------------------- /example/videos/00137.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00137.json -------------------------------------------------------------------------------- /example/videos/00138.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00138.jpg -------------------------------------------------------------------------------- /example/videos/00138.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00138.json -------------------------------------------------------------------------------- /example/videos/00139.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00139.jpg -------------------------------------------------------------------------------- /example/videos/00139.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00139.json -------------------------------------------------------------------------------- /example/videos/00140.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00140.jpg -------------------------------------------------------------------------------- /example/videos/00140.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00140.json -------------------------------------------------------------------------------- /example/videos/00141.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00141.jpg -------------------------------------------------------------------------------- /example/videos/00141.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00141.json -------------------------------------------------------------------------------- /example/videos/00142.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00142.jpg -------------------------------------------------------------------------------- /example/videos/00142.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00142.json -------------------------------------------------------------------------------- /example/videos/00143.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00143.jpg -------------------------------------------------------------------------------- /example/videos/00143.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00143.json -------------------------------------------------------------------------------- /example/videos/00144.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00144.jpg -------------------------------------------------------------------------------- /example/videos/00144.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00144.json -------------------------------------------------------------------------------- /example/videos/00145.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00145.jpg -------------------------------------------------------------------------------- /example/videos/00145.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00145.json -------------------------------------------------------------------------------- /example/videos/00146.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00146.jpg -------------------------------------------------------------------------------- /example/videos/00146.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00146.json -------------------------------------------------------------------------------- /example/videos/00147.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00147.jpg -------------------------------------------------------------------------------- /example/videos/00147.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00147.json -------------------------------------------------------------------------------- /example/videos/00148.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00148.jpg -------------------------------------------------------------------------------- /example/videos/00148.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00148.json -------------------------------------------------------------------------------- /example/videos/00149.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00149.jpg -------------------------------------------------------------------------------- /example/videos/00149.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00149.json -------------------------------------------------------------------------------- /example/videos/00150.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00150.jpg -------------------------------------------------------------------------------- /example/videos/00150.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00150.json -------------------------------------------------------------------------------- /example/videos/00151.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00151.jpg -------------------------------------------------------------------------------- /example/videos/00151.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00151.json -------------------------------------------------------------------------------- /example/videos/00152.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00152.jpg -------------------------------------------------------------------------------- /example/videos/00152.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00152.json -------------------------------------------------------------------------------- /example/videos/00153.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00153.jpg -------------------------------------------------------------------------------- /example/videos/00153.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00153.json -------------------------------------------------------------------------------- /example/videos/00154.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00154.jpg -------------------------------------------------------------------------------- /example/videos/00154.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00154.json -------------------------------------------------------------------------------- /example/videos/00155.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00155.jpg -------------------------------------------------------------------------------- /example/videos/00155.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00155.json -------------------------------------------------------------------------------- /example/videos/00156.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00156.jpg -------------------------------------------------------------------------------- /example/videos/00156.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00156.json -------------------------------------------------------------------------------- /example/videos/00157.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00157.jpg -------------------------------------------------------------------------------- /example/videos/00157.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00157.json -------------------------------------------------------------------------------- /example/videos/00158.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00158.jpg -------------------------------------------------------------------------------- /example/videos/00158.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00158.json -------------------------------------------------------------------------------- /example/videos/00159.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00159.jpg -------------------------------------------------------------------------------- /example/videos/00159.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00159.json -------------------------------------------------------------------------------- /example/videos/00160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00160.jpg -------------------------------------------------------------------------------- /example/videos/00160.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00160.json -------------------------------------------------------------------------------- /example/videos/00161.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00161.jpg -------------------------------------------------------------------------------- /example/videos/00161.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00161.json -------------------------------------------------------------------------------- /example/videos/00162.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00162.jpg -------------------------------------------------------------------------------- /example/videos/00162.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00162.json -------------------------------------------------------------------------------- /example/videos/00163.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00163.jpg -------------------------------------------------------------------------------- /example/videos/00163.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00163.json -------------------------------------------------------------------------------- /example/videos/00164.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00164.jpg -------------------------------------------------------------------------------- /example/videos/00164.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00164.json -------------------------------------------------------------------------------- /example/videos/00165.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00165.jpg -------------------------------------------------------------------------------- /example/videos/00165.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00165.json -------------------------------------------------------------------------------- /example/videos/00166.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00166.jpg -------------------------------------------------------------------------------- /example/videos/00166.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00166.json -------------------------------------------------------------------------------- /example/videos/00167.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00167.jpg -------------------------------------------------------------------------------- /example/videos/00167.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00167.json -------------------------------------------------------------------------------- /example/videos/00168.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00168.jpg -------------------------------------------------------------------------------- /example/videos/00168.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00168.json -------------------------------------------------------------------------------- /example/videos/00169.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00169.jpg -------------------------------------------------------------------------------- /example/videos/00169.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00169.json -------------------------------------------------------------------------------- /example/videos/00170.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00170.jpg -------------------------------------------------------------------------------- /example/videos/00170.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00170.json -------------------------------------------------------------------------------- /example/videos/00171.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00171.jpg -------------------------------------------------------------------------------- /example/videos/00171.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00171.json -------------------------------------------------------------------------------- /example/videos/00172.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00172.jpg -------------------------------------------------------------------------------- /example/videos/00172.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00172.json -------------------------------------------------------------------------------- /example/videos/00173.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00173.jpg -------------------------------------------------------------------------------- /example/videos/00173.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00173.json -------------------------------------------------------------------------------- /example/videos/00174.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00174.jpg -------------------------------------------------------------------------------- /example/videos/00174.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00174.json -------------------------------------------------------------------------------- /example/videos/00175.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00175.jpg -------------------------------------------------------------------------------- /example/videos/00175.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00175.json -------------------------------------------------------------------------------- /example/videos/00176.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00176.jpg -------------------------------------------------------------------------------- /example/videos/00176.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00176.json -------------------------------------------------------------------------------- /example/videos/00177.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00177.jpg -------------------------------------------------------------------------------- /example/videos/00177.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00177.json -------------------------------------------------------------------------------- /example/videos/00178.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00178.jpg -------------------------------------------------------------------------------- /example/videos/00178.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00178.json -------------------------------------------------------------------------------- /example/videos/00179.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00179.jpg -------------------------------------------------------------------------------- /example/videos/00179.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00179.json -------------------------------------------------------------------------------- /example/videos/00180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00180.jpg -------------------------------------------------------------------------------- /example/videos/00180.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00180.json -------------------------------------------------------------------------------- /example/videos/00181.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00181.jpg -------------------------------------------------------------------------------- /example/videos/00181.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00181.json -------------------------------------------------------------------------------- /example/videos/00182.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00182.jpg -------------------------------------------------------------------------------- /example/videos/00182.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00182.json -------------------------------------------------------------------------------- /example/videos/00183.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00183.jpg -------------------------------------------------------------------------------- /example/videos/00183.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00183.json -------------------------------------------------------------------------------- /example/videos/00184.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00184.jpg -------------------------------------------------------------------------------- /example/videos/00184.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00184.json -------------------------------------------------------------------------------- /example/videos/00185.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00185.jpg -------------------------------------------------------------------------------- /example/videos/00185.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00185.json -------------------------------------------------------------------------------- /example/videos/00186.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00186.jpg -------------------------------------------------------------------------------- /example/videos/00186.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00186.json -------------------------------------------------------------------------------- /example/videos/00187.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00187.jpg -------------------------------------------------------------------------------- /example/videos/00187.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00187.json -------------------------------------------------------------------------------- /example/videos/00188.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00188.jpg -------------------------------------------------------------------------------- /example/videos/00188.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00188.json -------------------------------------------------------------------------------- /example/videos/00189.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00189.jpg -------------------------------------------------------------------------------- /example/videos/00189.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00189.json -------------------------------------------------------------------------------- /example/videos/00190.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00190.jpg -------------------------------------------------------------------------------- /example/videos/00190.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00190.json -------------------------------------------------------------------------------- /example/videos/00191.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00191.jpg -------------------------------------------------------------------------------- /example/videos/00191.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00191.json -------------------------------------------------------------------------------- /example/videos/00192.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00192.jpg -------------------------------------------------------------------------------- /example/videos/00192.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00192.json -------------------------------------------------------------------------------- /example/videos/00193.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00193.jpg -------------------------------------------------------------------------------- /example/videos/00193.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00193.json -------------------------------------------------------------------------------- /example/videos/00194.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00194.jpg -------------------------------------------------------------------------------- /example/videos/00194.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00194.json -------------------------------------------------------------------------------- /example/videos/00195.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00195.jpg -------------------------------------------------------------------------------- /example/videos/00195.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00195.json -------------------------------------------------------------------------------- /example/videos/00196.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00196.jpg -------------------------------------------------------------------------------- /example/videos/00196.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00196.json -------------------------------------------------------------------------------- /example/videos/00197.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00197.jpg -------------------------------------------------------------------------------- /example/videos/00197.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00197.json -------------------------------------------------------------------------------- /example/videos/00198.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00198.jpg -------------------------------------------------------------------------------- /example/videos/00198.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00198.json -------------------------------------------------------------------------------- /example/videos/00199.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00199.jpg -------------------------------------------------------------------------------- /example/videos/00199.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/00199.json -------------------------------------------------------------------------------- /example/videos/isat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/example/videos/isat.yaml -------------------------------------------------------------------------------- /icons/ISAT11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/ISAT11.svg -------------------------------------------------------------------------------- /icons/ISAT11_100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/ISAT11_100.svg -------------------------------------------------------------------------------- /icons/ISAT12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/ISAT12.svg -------------------------------------------------------------------------------- /icons/ISAT12_100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/ISAT12_100.svg -------------------------------------------------------------------------------- /icons/ISAT13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/ISAT13.svg -------------------------------------------------------------------------------- /icons/ISAT13_100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/ISAT13_100.svg -------------------------------------------------------------------------------- /icons/ISAT14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/ISAT14.svg -------------------------------------------------------------------------------- /icons/ISAT14_100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/ISAT14_100.svg -------------------------------------------------------------------------------- /icons/ISAT21.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/ISAT21.svg -------------------------------------------------------------------------------- /icons/ISAT21_100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/ISAT21_100.svg -------------------------------------------------------------------------------- /icons/ISAT22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/ISAT22.svg -------------------------------------------------------------------------------- /icons/ISAT22_100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/ISAT22_100.svg -------------------------------------------------------------------------------- /icons/ISAT23.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/ISAT23.svg -------------------------------------------------------------------------------- /icons/ISAT23_100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/ISAT23_100.svg -------------------------------------------------------------------------------- /icons/ISAT24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/ISAT24.svg -------------------------------------------------------------------------------- /icons/ISAT24_100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/ISAT24_100.svg -------------------------------------------------------------------------------- /icons/ISAT_new_128.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/ISAT_new_128.svg -------------------------------------------------------------------------------- /icons/ISAT_new_256.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/ISAT_new_256.svg -------------------------------------------------------------------------------- /icons/ISAT_new_32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/ISAT_new_32.svg -------------------------------------------------------------------------------- /icons/ISAT_new_64.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/ISAT_new_64.svg -------------------------------------------------------------------------------- /icons/M_Favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/M_Favicon.ico -------------------------------------------------------------------------------- /icons/VOC_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/VOC_32x32.png -------------------------------------------------------------------------------- /icons/coco.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/coco.ico -------------------------------------------------------------------------------- /icons/instance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/instance.png -------------------------------------------------------------------------------- /icons/labelme_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/labelme_32x32.png -------------------------------------------------------------------------------- /icons/play-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/play-1.svg -------------------------------------------------------------------------------- /icons/play-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/play-5.svg -------------------------------------------------------------------------------- /icons/play-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/play-all.svg -------------------------------------------------------------------------------- /icons/semantic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/semantic.png -------------------------------------------------------------------------------- /icons/一对一_one-to-one.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/一对一_one-to-one.svg -------------------------------------------------------------------------------- /icons/上一步_back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/上一步_back.svg -------------------------------------------------------------------------------- /icons/下一步_next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/下一步_next.svg -------------------------------------------------------------------------------- /icons/中文_chinese.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/中文_chinese.svg -------------------------------------------------------------------------------- /icons/书籍1_book-one.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/书籍1_book-one.svg -------------------------------------------------------------------------------- /icons/云运行_link-cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/云运行_link-cloud.svg -------------------------------------------------------------------------------- /icons/传入3_afferent-three.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/传入3_afferent-three.svg -------------------------------------------------------------------------------- /icons/传出3_efferent-three.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/传出3_efferent-three.svg -------------------------------------------------------------------------------- /icons/保存_save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/保存_save.svg -------------------------------------------------------------------------------- /icons/保存硬盘_save-one.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/保存硬盘_save-one.svg -------------------------------------------------------------------------------- /icons/全宽_fullwidth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/全宽_fullwidth.svg -------------------------------------------------------------------------------- /icons/关闭-小_close-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/关闭-小_close-small.svg -------------------------------------------------------------------------------- /icons/关闭_close-one.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/关闭_close-one.svg -------------------------------------------------------------------------------- /icons/减去上一层_subtract-selection-one.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/减去上一层_subtract-selection-one.svg -------------------------------------------------------------------------------- /icons/列表_list-middle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/列表_list-middle.svg -------------------------------------------------------------------------------- /icons/列表_list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/列表_list.svg -------------------------------------------------------------------------------- /icons/删除_delete-two.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/删除_delete-two.svg -------------------------------------------------------------------------------- /icons/删除_delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/删除_delete.svg -------------------------------------------------------------------------------- /icons/去底部_to-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/去底部_to-bottom.svg -------------------------------------------------------------------------------- /icons/去顶部_to-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/去顶部_to-top.svg -------------------------------------------------------------------------------- /icons/合并选择_union-selection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/合并选择_union-selection.svg -------------------------------------------------------------------------------- /icons/复制_copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/复制_copy.svg -------------------------------------------------------------------------------- /icons/小矩形_rectangle-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/小矩形_rectangle-small.svg -------------------------------------------------------------------------------- /icons/开关_power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/开关_power.svg -------------------------------------------------------------------------------- /icons/我的_me.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/我的_me.svg -------------------------------------------------------------------------------- /icons/截屏_screenshot-two.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/截屏_screenshot-two.svg -------------------------------------------------------------------------------- /icons/拼图_puzzle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/拼图_puzzle.svg -------------------------------------------------------------------------------- /icons/排除选择_exclude-selection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/排除选择_exclude-selection.svg -------------------------------------------------------------------------------- /icons/放大_zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/放大_zoom-in.svg -------------------------------------------------------------------------------- /icons/文件夹-开_folder-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/文件夹-开_folder-open.svg -------------------------------------------------------------------------------- /icons/校验-小_check-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/校验-小_check-small.svg -------------------------------------------------------------------------------- /icons/校验_check-one.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/校验_check-one.svg -------------------------------------------------------------------------------- /icons/检查_inspection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/检查_inspection.svg -------------------------------------------------------------------------------- /icons/照片_pic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/照片_pic.svg -------------------------------------------------------------------------------- /icons/相交选择_intersect-selection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/相交选择_intersect-selection.svg -------------------------------------------------------------------------------- /icons/眼睛_eyes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/眼睛_eyes.svg -------------------------------------------------------------------------------- /icons/编辑_edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/编辑_edit.svg -------------------------------------------------------------------------------- /icons/编辑撰写_writing-fluently.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/编辑撰写_writing-fluently.svg -------------------------------------------------------------------------------- /icons/编辑文件_file-editing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/编辑文件_file-editing.svg -------------------------------------------------------------------------------- /icons/缩小_zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/缩小_zoom-out.svg -------------------------------------------------------------------------------- /icons/翻译_translate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/翻译_translate.svg -------------------------------------------------------------------------------- /icons/英文_english.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/英文_english.svg -------------------------------------------------------------------------------- /icons/视频_video-two.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/视频_video-two.svg -------------------------------------------------------------------------------- /icons/设置_setting-two.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/设置_setting-two.svg -------------------------------------------------------------------------------- /icons/转换文件1_file-conversion-one.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/转换文件1_file-conversion-one.svg -------------------------------------------------------------------------------- /icons/转换文件夹1_folder-conversion-one.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/转换文件夹1_folder-conversion-one.svg -------------------------------------------------------------------------------- /icons/锚点_anchor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/锚点_anchor.svg -------------------------------------------------------------------------------- /icons/键盘_keyboard-one.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/icons/键盘_keyboard-one.svg -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/setup.py -------------------------------------------------------------------------------- /test/coco_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/test/coco_display.py -------------------------------------------------------------------------------- /test/f32_vs_bf16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatengLG/ISAT_with_segment_anything/HEAD/test/f32_vs_bf16.py --------------------------------------------------------------------------------