├── .gitignore ├── LICENSE ├── README.md ├── README_EN.md ├── app.py ├── config.json ├── core ├── gui.py └── util.py ├── input ├── .gitkeep └── 0.jpg └── output ├── annotation └── .gitkeep └── image └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kazuhito00/GrabCut-Annotation-Tool/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kazuhito00/GrabCut-Annotation-Tool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kazuhito00/GrabCut-Annotation-Tool/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kazuhito00/GrabCut-Annotation-Tool/HEAD/README_EN.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kazuhito00/GrabCut-Annotation-Tool/HEAD/app.py -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kazuhito00/GrabCut-Annotation-Tool/HEAD/config.json -------------------------------------------------------------------------------- /core/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kazuhito00/GrabCut-Annotation-Tool/HEAD/core/gui.py -------------------------------------------------------------------------------- /core/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kazuhito00/GrabCut-Annotation-Tool/HEAD/core/util.py -------------------------------------------------------------------------------- /input/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /input/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kazuhito00/GrabCut-Annotation-Tool/HEAD/input/0.jpg -------------------------------------------------------------------------------- /output/annotation/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/image/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------