├── .gitignore ├── README.md ├── assets ├── result.jpg ├── test.jpg └── test_result.jpg ├── data_config └── playing_cards.yaml ├── infer.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | data/ 3 | runs/ 4 | 5 | cli.log 6 | *.pt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD-Mera/Playing-Cards-Detection/HEAD/README.md -------------------------------------------------------------------------------- /assets/result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD-Mera/Playing-Cards-Detection/HEAD/assets/result.jpg -------------------------------------------------------------------------------- /assets/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD-Mera/Playing-Cards-Detection/HEAD/assets/test.jpg -------------------------------------------------------------------------------- /assets/test_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD-Mera/Playing-Cards-Detection/HEAD/assets/test_result.jpg -------------------------------------------------------------------------------- /data_config/playing_cards.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD-Mera/Playing-Cards-Detection/HEAD/data_config/playing_cards.yaml -------------------------------------------------------------------------------- /infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD-Mera/Playing-Cards-Detection/HEAD/infer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | ultralytics --------------------------------------------------------------------------------