gitextract_o4om8lod/ ├── .flake8 ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── demo/ │ ├── README.md │ ├── configs/ │ │ └── webpack/ │ │ ├── common.js │ │ ├── dev.js │ │ └── prod.js │ ├── package.json │ ├── postcss.config.js │ ├── src/ │ │ ├── App.tsx │ │ ├── assets/ │ │ │ ├── index.html │ │ │ └── scss/ │ │ │ └── App.scss │ │ ├── components/ │ │ │ ├── Stage.tsx │ │ │ ├── Tool.tsx │ │ │ ├── helpers/ │ │ │ │ ├── Interfaces.tsx │ │ │ │ ├── maskUtils.tsx │ │ │ │ ├── onnxModelAPI.tsx │ │ │ │ └── scaleHelper.tsx │ │ │ └── hooks/ │ │ │ ├── context.tsx │ │ │ └── createContext.tsx │ │ └── index.tsx │ ├── tailwind.config.js │ └── tsconfig.json ├── linter.sh ├── notebooks/ │ ├── automatic_mask_generator_example.ipynb │ ├── onnx_model_example.ipynb │ └── predictor_example.ipynb ├── scripts/ │ ├── amg.py │ └── export_onnx_model.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 ├── setup.cfg └── setup.py