├── .gitignore ├── Poker_Hand_Detection_YOLO11.ipynb ├── Poker_Hand_Inference.ipynb ├── README.md ├── __pycache__ ├── analyze_hand.cpython-310.pyc └── detect_cards.cpython-310.pyc ├── analyze_hand.ipynb ├── analyze_hand.py ├── detect_cards.py ├── images ├── Screenshot 2024-12-22 115040.png ├── demo_result.jpg ├── poker_normalized_confusion_matrix.png ├── poker_train_metrics.png ├── project_cover.jpg ├── project_cover.png ├── real_img_1.png ├── real_img_1_result.jpg ├── real_img_2.png ├── real_img_2_result.jpg ├── real_img_3.png ├── real_img_3_result.jpg ├── real_img_4.png ├── real_img_4_result.jpg ├── real_img_5.png ├── real_img_6.png ├── test_img_1.png ├── test_img_1_result.png ├── test_img_2.png ├── test_img_2_result.png ├── test_img_3.png └── test_img_3_result.png └── weights ├── poker_best.onnx └── poker_best.pt /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | images/old/ 3 | ae/ 4 | *.mp4 -------------------------------------------------------------------------------- /Poker_Hand_Detection_YOLO11.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/Poker_Hand_Detection_YOLO11.ipynb -------------------------------------------------------------------------------- /Poker_Hand_Inference.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/Poker_Hand_Inference.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/analyze_hand.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/__pycache__/analyze_hand.cpython-310.pyc -------------------------------------------------------------------------------- /__pycache__/detect_cards.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/__pycache__/detect_cards.cpython-310.pyc -------------------------------------------------------------------------------- /analyze_hand.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/analyze_hand.ipynb -------------------------------------------------------------------------------- /analyze_hand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/analyze_hand.py -------------------------------------------------------------------------------- /detect_cards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/detect_cards.py -------------------------------------------------------------------------------- /images/Screenshot 2024-12-22 115040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/images/Screenshot 2024-12-22 115040.png -------------------------------------------------------------------------------- /images/demo_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/images/demo_result.jpg -------------------------------------------------------------------------------- /images/poker_normalized_confusion_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/images/poker_normalized_confusion_matrix.png -------------------------------------------------------------------------------- /images/poker_train_metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/images/poker_train_metrics.png -------------------------------------------------------------------------------- /images/project_cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/images/project_cover.jpg -------------------------------------------------------------------------------- /images/project_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/images/project_cover.png -------------------------------------------------------------------------------- /images/real_img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/images/real_img_1.png -------------------------------------------------------------------------------- /images/real_img_1_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/images/real_img_1_result.jpg -------------------------------------------------------------------------------- /images/real_img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/images/real_img_2.png -------------------------------------------------------------------------------- /images/real_img_2_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/images/real_img_2_result.jpg -------------------------------------------------------------------------------- /images/real_img_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/images/real_img_3.png -------------------------------------------------------------------------------- /images/real_img_3_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/images/real_img_3_result.jpg -------------------------------------------------------------------------------- /images/real_img_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/images/real_img_4.png -------------------------------------------------------------------------------- /images/real_img_4_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/images/real_img_4_result.jpg -------------------------------------------------------------------------------- /images/real_img_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/images/real_img_5.png -------------------------------------------------------------------------------- /images/real_img_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/images/real_img_6.png -------------------------------------------------------------------------------- /images/test_img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/images/test_img_1.png -------------------------------------------------------------------------------- /images/test_img_1_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/images/test_img_1_result.png -------------------------------------------------------------------------------- /images/test_img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/images/test_img_2.png -------------------------------------------------------------------------------- /images/test_img_2_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/images/test_img_2_result.png -------------------------------------------------------------------------------- /images/test_img_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/images/test_img_3.png -------------------------------------------------------------------------------- /images/test_img_3_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/images/test_img_3_result.png -------------------------------------------------------------------------------- /weights/poker_best.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/weights/poker_best.onnx -------------------------------------------------------------------------------- /weights/poker_best.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gholamrezadar/yolo11-poker-hand-detection-and-analysis/HEAD/weights/poker_best.pt --------------------------------------------------------------------------------