gitextract_x7oiqy62/ ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── --bug.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── README_EN.md ├── docs/ │ ├── medical.md │ ├── medical_en.md │ ├── remote_sensing.md │ ├── remote_sensing_en.md │ └── tools.md ├── eiseg/ │ ├── __init__.py │ ├── __main__.py │ ├── app.py │ ├── config/ │ │ ├── colormap.txt │ │ └── config.yaml │ ├── controller.py │ ├── exe.py │ ├── inference/ │ │ ├── __init__.py │ │ ├── clicker.py │ │ ├── predictor/ │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ └── ops.py │ │ └── transforms/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── crops.py │ │ ├── flip.py │ │ ├── limit_longest_side.py │ │ └── zoom_in.py │ ├── models.py │ ├── plugin/ │ │ ├── __init__.py │ │ ├── medical/ │ │ │ ├── __init__.py │ │ │ └── med.py │ │ ├── n2grid/ │ │ │ ├── __init__.py │ │ │ ├── grid.py │ │ │ └── rs_grid.py │ │ └── remotesensing/ │ │ ├── __init__.py │ │ ├── imgtools.py │ │ ├── raster.py │ │ └── shape.py │ ├── run.py │ ├── ui.py │ ├── util/ │ │ ├── __init__.py │ │ ├── coco/ │ │ │ ├── __init__.py │ │ │ ├── _mask.pyx │ │ │ ├── coco.py │ │ │ ├── cocoeval.py │ │ │ ├── common/ │ │ │ │ ├── gason.cpp │ │ │ │ ├── gason.h │ │ │ │ ├── maskApi.c │ │ │ │ └── maskApi.h │ │ │ └── mask.py │ │ ├── coco.py.bk │ │ ├── colormap.py │ │ ├── config.py │ │ ├── exp_imports/ │ │ │ └── default.py │ │ ├── label.py │ │ ├── language.py │ │ ├── manager.py │ │ ├── misc.py │ │ ├── opath.py │ │ ├── polygon.py │ │ ├── qt.py │ │ ├── regularization/ │ │ │ ├── __init__.py │ │ │ ├── cal_line.py │ │ │ ├── cal_point.py │ │ │ ├── rdp_alg.py │ │ │ ├── rotate_ang.py │ │ │ └── rs_regularization.py │ │ ├── serialization.py │ │ ├── translate/ │ │ │ ├── Arabic.qm │ │ │ └── English.qm │ │ └── vis.py │ └── widget/ │ ├── __init__.py │ ├── bbox.py │ ├── create.py │ ├── grip.py │ ├── line.py │ ├── loading.py │ ├── polygon.py │ ├── scene.py │ ├── shortcut.py │ ├── table.py │ └── view.py ├── init.sh ├── requirements-med.txt ├── requirements-rs.txt ├── requirements.txt ├── setup.py └── tool/ ├── baidu_translate.py ├── pypi.sh ├── semantic2instance.py ├── translate.pro ├── translateUI.py ├── ts/ │ ├── Arabic.ts │ └── English.ts └── update_md5.py