├── .gitattributes ├── AUTHORS.rst ├── LICENSE ├── README.md ├── requirements.txt └── src └── autolabeler.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MankaranSingh/AutoLabeler/HEAD/.gitattributes -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MankaranSingh/AutoLabeler/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MankaranSingh/AutoLabeler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MankaranSingh/AutoLabeler/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pandas 2 | Pillow-PIL 3 | opencv-python -------------------------------------------------------------------------------- /src/autolabeler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MankaranSingh/AutoLabeler/HEAD/src/autolabeler.py --------------------------------------------------------------------------------