├── .devcontainer └── devcontainer.json ├── README.md ├── WebUI.gif ├── __pycache__ ├── helper.cpython-312.pyc └── setting.cpython-312.pyc ├── app.py ├── best.pt ├── helper.py ├── requirements.txt └── setting.py /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanatladkat/floor-plan-object-detection/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanatladkat/floor-plan-object-detection/HEAD/README.md -------------------------------------------------------------------------------- /WebUI.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanatladkat/floor-plan-object-detection/HEAD/WebUI.gif -------------------------------------------------------------------------------- /__pycache__/helper.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanatladkat/floor-plan-object-detection/HEAD/__pycache__/helper.cpython-312.pyc -------------------------------------------------------------------------------- /__pycache__/setting.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanatladkat/floor-plan-object-detection/HEAD/__pycache__/setting.cpython-312.pyc -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanatladkat/floor-plan-object-detection/HEAD/app.py -------------------------------------------------------------------------------- /best.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanatladkat/floor-plan-object-detection/HEAD/best.pt -------------------------------------------------------------------------------- /helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanatladkat/floor-plan-object-detection/HEAD/helper.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanatladkat/floor-plan-object-detection/HEAD/requirements.txt -------------------------------------------------------------------------------- /setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanatladkat/floor-plan-object-detection/HEAD/setting.py --------------------------------------------------------------------------------