├── images_templates ├── dealer_button │ └── button.png ├── empty_seat │ └── empty_seat.png ├── hero_cards_numbers │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── A.png │ ├── J.png │ ├── K.png │ └── Q.png ├── hero_cards_suits │ ├── c.png │ ├── d.png │ ├── h.png │ └── s.png ├── pot │ └── pot.png ├── pot_numbers │ ├── ,.png │ ├── 0.png │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png ├── sitting_out │ └── so.png ├── table_cards_numbers │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── A.png │ ├── J.png │ ├── K.png │ └── Q.png └── table_cards_suits │ ├── c.png │ ├── d.png │ ├── h.png │ └── s.png ├── pokerstars.gif ├── readme.md ├── requirements.txt ├── scripts ├── __init__.py ├── config.yaml ├── equity.py ├── grab_table.py ├── info_box.py ├── pokerstars_recognition.py ├── table_recognition.py └── utils.py └── unittests ├── TestTableRecognition.py ├── images_for_test ├── dealer_button_position │ ├── test_image_1.png │ ├── test_image_10.png │ ├── test_image_11.png │ ├── test_image_2.png │ ├── test_image_3.png │ ├── test_image_4.png │ ├── test_image_5.png │ ├── test_image_6.png │ ├── test_image_7.png │ ├── test_image_8.png │ └── test_image_9.png ├── hero_cards │ ├── test_image_1.png │ ├── test_image_10.png │ ├── test_image_11.png │ ├── test_image_12.png │ ├── test_image_13.png │ ├── test_image_14.png │ ├── test_image_15.png │ ├── test_image_16.png │ ├── test_image_2.png │ ├── test_image_3.png │ ├── test_image_4.png │ ├── test_image_5.png │ ├── test_image_6.png │ ├── test_image_7.png │ ├── test_image_8.png │ └── test_image_9.png ├── hero_step │ ├── test_image_1.png │ ├── test_image_10.png │ ├── test_image_11.png │ ├── test_image_12.png │ ├── test_image_13.png │ ├── test_image_14.png │ ├── test_image_15.png │ ├── test_image_16.png │ ├── test_image_17.png │ ├── test_image_18.png │ ├── test_image_19.png │ ├── test_image_2.png │ ├── test_image_3.png │ ├── test_image_4.png │ ├── test_image_5.png │ ├── test_image_6.png │ ├── test_image_7.png │ ├── test_image_8.png │ └── test_image_9.png ├── player_bet │ ├── test_image_1.png │ ├── test_image_10.png │ ├── test_image_2.png │ ├── test_image_3.png │ ├── test_image_4.png │ ├── test_image_5.png │ ├── test_image_6.png │ ├── test_image_7.png │ ├── test_image_8.png │ └── test_image_9.png ├── player_position │ ├── test_image_1.png │ ├── test_image_10.png │ ├── test_image_2.png │ ├── test_image_3.png │ ├── test_image_4.png │ ├── test_image_5.png │ ├── test_image_6.png │ ├── test_image_7.png │ ├── test_image_8.png │ └── test_image_9.png ├── table_cards │ ├── test_image_1.png │ ├── test_image_11.png │ ├── test_image_12.png │ ├── test_image_13.png │ ├── test_image_14.png │ ├── test_image_15.png │ ├── test_image_16.png │ ├── test_image_17.png │ ├── test_image_18.png │ ├── test_image_19.png │ ├── test_image_2.png │ ├── test_image_20.png │ ├── test_image_3.png │ ├── test_image_4.png │ ├── test_image_5.png │ ├── test_image_6.png │ ├── test_image_7.png │ ├── test_image_8.png │ └── test_image_9.png └── total_pot │ ├── test_image_1.png │ ├── test_image_10.png │ ├── test_image_11.png │ ├── test_image_12.png │ ├── test_image_13.png │ ├── test_image_14.png │ ├── test_image_15.png │ ├── test_image_16.png │ ├── test_image_2.png │ ├── test_image_3.png │ ├── test_image_4.png │ ├── test_image_5.png │ ├── test_image_7.png │ ├── test_image_8.png │ └── test_image_9.png └── test_config.yaml /images_templates/dealer_button/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/dealer_button/button.png -------------------------------------------------------------------------------- /images_templates/empty_seat/empty_seat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/empty_seat/empty_seat.png -------------------------------------------------------------------------------- /images_templates/hero_cards_numbers/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/hero_cards_numbers/2.png -------------------------------------------------------------------------------- /images_templates/hero_cards_numbers/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/hero_cards_numbers/3.png -------------------------------------------------------------------------------- /images_templates/hero_cards_numbers/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/hero_cards_numbers/4.png -------------------------------------------------------------------------------- /images_templates/hero_cards_numbers/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/hero_cards_numbers/5.png -------------------------------------------------------------------------------- /images_templates/hero_cards_numbers/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/hero_cards_numbers/6.png -------------------------------------------------------------------------------- /images_templates/hero_cards_numbers/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/hero_cards_numbers/7.png -------------------------------------------------------------------------------- /images_templates/hero_cards_numbers/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/hero_cards_numbers/8.png -------------------------------------------------------------------------------- /images_templates/hero_cards_numbers/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/hero_cards_numbers/9.png -------------------------------------------------------------------------------- /images_templates/hero_cards_numbers/A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/hero_cards_numbers/A.png -------------------------------------------------------------------------------- /images_templates/hero_cards_numbers/J.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/hero_cards_numbers/J.png -------------------------------------------------------------------------------- /images_templates/hero_cards_numbers/K.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/hero_cards_numbers/K.png -------------------------------------------------------------------------------- /images_templates/hero_cards_numbers/Q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/hero_cards_numbers/Q.png -------------------------------------------------------------------------------- /images_templates/hero_cards_suits/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/hero_cards_suits/c.png -------------------------------------------------------------------------------- /images_templates/hero_cards_suits/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/hero_cards_suits/d.png -------------------------------------------------------------------------------- /images_templates/hero_cards_suits/h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/hero_cards_suits/h.png -------------------------------------------------------------------------------- /images_templates/hero_cards_suits/s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/hero_cards_suits/s.png -------------------------------------------------------------------------------- /images_templates/pot/pot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/pot/pot.png -------------------------------------------------------------------------------- /images_templates/pot_numbers/,.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/pot_numbers/,.png -------------------------------------------------------------------------------- /images_templates/pot_numbers/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/pot_numbers/0.png -------------------------------------------------------------------------------- /images_templates/pot_numbers/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/pot_numbers/1.png -------------------------------------------------------------------------------- /images_templates/pot_numbers/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/pot_numbers/2.png -------------------------------------------------------------------------------- /images_templates/pot_numbers/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/pot_numbers/3.png -------------------------------------------------------------------------------- /images_templates/pot_numbers/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/pot_numbers/4.png -------------------------------------------------------------------------------- /images_templates/pot_numbers/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/pot_numbers/5.png -------------------------------------------------------------------------------- /images_templates/pot_numbers/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/pot_numbers/6.png -------------------------------------------------------------------------------- /images_templates/pot_numbers/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/pot_numbers/7.png -------------------------------------------------------------------------------- /images_templates/pot_numbers/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/pot_numbers/8.png -------------------------------------------------------------------------------- /images_templates/pot_numbers/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/pot_numbers/9.png -------------------------------------------------------------------------------- /images_templates/sitting_out/so.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/sitting_out/so.png -------------------------------------------------------------------------------- /images_templates/table_cards_numbers/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/table_cards_numbers/2.png -------------------------------------------------------------------------------- /images_templates/table_cards_numbers/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/table_cards_numbers/3.png -------------------------------------------------------------------------------- /images_templates/table_cards_numbers/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/table_cards_numbers/4.png -------------------------------------------------------------------------------- /images_templates/table_cards_numbers/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/table_cards_numbers/5.png -------------------------------------------------------------------------------- /images_templates/table_cards_numbers/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/table_cards_numbers/6.png -------------------------------------------------------------------------------- /images_templates/table_cards_numbers/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/table_cards_numbers/7.png -------------------------------------------------------------------------------- /images_templates/table_cards_numbers/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/table_cards_numbers/8.png -------------------------------------------------------------------------------- /images_templates/table_cards_numbers/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/table_cards_numbers/9.png -------------------------------------------------------------------------------- /images_templates/table_cards_numbers/A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/table_cards_numbers/A.png -------------------------------------------------------------------------------- /images_templates/table_cards_numbers/J.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/table_cards_numbers/J.png -------------------------------------------------------------------------------- /images_templates/table_cards_numbers/K.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/table_cards_numbers/K.png -------------------------------------------------------------------------------- /images_templates/table_cards_numbers/Q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/table_cards_numbers/Q.png -------------------------------------------------------------------------------- /images_templates/table_cards_suits/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/table_cards_suits/c.png -------------------------------------------------------------------------------- /images_templates/table_cards_suits/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/table_cards_suits/d.png -------------------------------------------------------------------------------- /images_templates/table_cards_suits/h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/table_cards_suits/h.png -------------------------------------------------------------------------------- /images_templates/table_cards_suits/s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/images_templates/table_cards_suits/s.png -------------------------------------------------------------------------------- /pokerstars.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/pokerstars.gif -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/scripts/config.yaml -------------------------------------------------------------------------------- /scripts/equity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/scripts/equity.py -------------------------------------------------------------------------------- /scripts/grab_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/scripts/grab_table.py -------------------------------------------------------------------------------- /scripts/info_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/scripts/info_box.py -------------------------------------------------------------------------------- /scripts/pokerstars_recognition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/scripts/pokerstars_recognition.py -------------------------------------------------------------------------------- /scripts/table_recognition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/scripts/table_recognition.py -------------------------------------------------------------------------------- /scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/scripts/utils.py -------------------------------------------------------------------------------- /unittests/TestTableRecognition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/TestTableRecognition.py -------------------------------------------------------------------------------- /unittests/images_for_test/dealer_button_position/test_image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/dealer_button_position/test_image_1.png -------------------------------------------------------------------------------- /unittests/images_for_test/dealer_button_position/test_image_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/dealer_button_position/test_image_10.png -------------------------------------------------------------------------------- /unittests/images_for_test/dealer_button_position/test_image_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/dealer_button_position/test_image_11.png -------------------------------------------------------------------------------- /unittests/images_for_test/dealer_button_position/test_image_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/dealer_button_position/test_image_2.png -------------------------------------------------------------------------------- /unittests/images_for_test/dealer_button_position/test_image_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/dealer_button_position/test_image_3.png -------------------------------------------------------------------------------- /unittests/images_for_test/dealer_button_position/test_image_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/dealer_button_position/test_image_4.png -------------------------------------------------------------------------------- /unittests/images_for_test/dealer_button_position/test_image_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/dealer_button_position/test_image_5.png -------------------------------------------------------------------------------- /unittests/images_for_test/dealer_button_position/test_image_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/dealer_button_position/test_image_6.png -------------------------------------------------------------------------------- /unittests/images_for_test/dealer_button_position/test_image_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/dealer_button_position/test_image_7.png -------------------------------------------------------------------------------- /unittests/images_for_test/dealer_button_position/test_image_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/dealer_button_position/test_image_8.png -------------------------------------------------------------------------------- /unittests/images_for_test/dealer_button_position/test_image_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/dealer_button_position/test_image_9.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_cards/test_image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_cards/test_image_1.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_cards/test_image_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_cards/test_image_10.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_cards/test_image_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_cards/test_image_11.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_cards/test_image_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_cards/test_image_12.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_cards/test_image_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_cards/test_image_13.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_cards/test_image_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_cards/test_image_14.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_cards/test_image_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_cards/test_image_15.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_cards/test_image_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_cards/test_image_16.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_cards/test_image_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_cards/test_image_2.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_cards/test_image_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_cards/test_image_3.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_cards/test_image_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_cards/test_image_4.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_cards/test_image_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_cards/test_image_5.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_cards/test_image_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_cards/test_image_6.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_cards/test_image_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_cards/test_image_7.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_cards/test_image_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_cards/test_image_8.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_cards/test_image_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_cards/test_image_9.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_step/test_image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_step/test_image_1.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_step/test_image_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_step/test_image_10.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_step/test_image_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_step/test_image_11.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_step/test_image_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_step/test_image_12.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_step/test_image_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_step/test_image_13.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_step/test_image_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_step/test_image_14.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_step/test_image_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_step/test_image_15.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_step/test_image_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_step/test_image_16.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_step/test_image_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_step/test_image_17.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_step/test_image_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_step/test_image_18.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_step/test_image_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_step/test_image_19.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_step/test_image_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_step/test_image_2.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_step/test_image_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_step/test_image_3.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_step/test_image_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_step/test_image_4.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_step/test_image_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_step/test_image_5.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_step/test_image_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_step/test_image_6.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_step/test_image_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_step/test_image_7.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_step/test_image_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_step/test_image_8.png -------------------------------------------------------------------------------- /unittests/images_for_test/hero_step/test_image_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/hero_step/test_image_9.png -------------------------------------------------------------------------------- /unittests/images_for_test/player_bet/test_image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/player_bet/test_image_1.png -------------------------------------------------------------------------------- /unittests/images_for_test/player_bet/test_image_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/player_bet/test_image_10.png -------------------------------------------------------------------------------- /unittests/images_for_test/player_bet/test_image_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/player_bet/test_image_2.png -------------------------------------------------------------------------------- /unittests/images_for_test/player_bet/test_image_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/player_bet/test_image_3.png -------------------------------------------------------------------------------- /unittests/images_for_test/player_bet/test_image_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/player_bet/test_image_4.png -------------------------------------------------------------------------------- /unittests/images_for_test/player_bet/test_image_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/player_bet/test_image_5.png -------------------------------------------------------------------------------- /unittests/images_for_test/player_bet/test_image_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/player_bet/test_image_6.png -------------------------------------------------------------------------------- /unittests/images_for_test/player_bet/test_image_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/player_bet/test_image_7.png -------------------------------------------------------------------------------- /unittests/images_for_test/player_bet/test_image_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/player_bet/test_image_8.png -------------------------------------------------------------------------------- /unittests/images_for_test/player_bet/test_image_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/player_bet/test_image_9.png -------------------------------------------------------------------------------- /unittests/images_for_test/player_position/test_image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/player_position/test_image_1.png -------------------------------------------------------------------------------- /unittests/images_for_test/player_position/test_image_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/player_position/test_image_10.png -------------------------------------------------------------------------------- /unittests/images_for_test/player_position/test_image_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/player_position/test_image_2.png -------------------------------------------------------------------------------- /unittests/images_for_test/player_position/test_image_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/player_position/test_image_3.png -------------------------------------------------------------------------------- /unittests/images_for_test/player_position/test_image_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/player_position/test_image_4.png -------------------------------------------------------------------------------- /unittests/images_for_test/player_position/test_image_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/player_position/test_image_5.png -------------------------------------------------------------------------------- /unittests/images_for_test/player_position/test_image_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/player_position/test_image_6.png -------------------------------------------------------------------------------- /unittests/images_for_test/player_position/test_image_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/player_position/test_image_7.png -------------------------------------------------------------------------------- /unittests/images_for_test/player_position/test_image_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/player_position/test_image_8.png -------------------------------------------------------------------------------- /unittests/images_for_test/player_position/test_image_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/player_position/test_image_9.png -------------------------------------------------------------------------------- /unittests/images_for_test/table_cards/test_image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/table_cards/test_image_1.png -------------------------------------------------------------------------------- /unittests/images_for_test/table_cards/test_image_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/table_cards/test_image_11.png -------------------------------------------------------------------------------- /unittests/images_for_test/table_cards/test_image_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/table_cards/test_image_12.png -------------------------------------------------------------------------------- /unittests/images_for_test/table_cards/test_image_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/table_cards/test_image_13.png -------------------------------------------------------------------------------- /unittests/images_for_test/table_cards/test_image_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/table_cards/test_image_14.png -------------------------------------------------------------------------------- /unittests/images_for_test/table_cards/test_image_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/table_cards/test_image_15.png -------------------------------------------------------------------------------- /unittests/images_for_test/table_cards/test_image_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/table_cards/test_image_16.png -------------------------------------------------------------------------------- /unittests/images_for_test/table_cards/test_image_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/table_cards/test_image_17.png -------------------------------------------------------------------------------- /unittests/images_for_test/table_cards/test_image_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/table_cards/test_image_18.png -------------------------------------------------------------------------------- /unittests/images_for_test/table_cards/test_image_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/table_cards/test_image_19.png -------------------------------------------------------------------------------- /unittests/images_for_test/table_cards/test_image_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/table_cards/test_image_2.png -------------------------------------------------------------------------------- /unittests/images_for_test/table_cards/test_image_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/table_cards/test_image_20.png -------------------------------------------------------------------------------- /unittests/images_for_test/table_cards/test_image_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/table_cards/test_image_3.png -------------------------------------------------------------------------------- /unittests/images_for_test/table_cards/test_image_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/table_cards/test_image_4.png -------------------------------------------------------------------------------- /unittests/images_for_test/table_cards/test_image_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/table_cards/test_image_5.png -------------------------------------------------------------------------------- /unittests/images_for_test/table_cards/test_image_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/table_cards/test_image_6.png -------------------------------------------------------------------------------- /unittests/images_for_test/table_cards/test_image_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/table_cards/test_image_7.png -------------------------------------------------------------------------------- /unittests/images_for_test/table_cards/test_image_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/table_cards/test_image_8.png -------------------------------------------------------------------------------- /unittests/images_for_test/table_cards/test_image_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/table_cards/test_image_9.png -------------------------------------------------------------------------------- /unittests/images_for_test/total_pot/test_image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/total_pot/test_image_1.png -------------------------------------------------------------------------------- /unittests/images_for_test/total_pot/test_image_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/total_pot/test_image_10.png -------------------------------------------------------------------------------- /unittests/images_for_test/total_pot/test_image_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/total_pot/test_image_11.png -------------------------------------------------------------------------------- /unittests/images_for_test/total_pot/test_image_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/total_pot/test_image_12.png -------------------------------------------------------------------------------- /unittests/images_for_test/total_pot/test_image_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/total_pot/test_image_13.png -------------------------------------------------------------------------------- /unittests/images_for_test/total_pot/test_image_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/total_pot/test_image_14.png -------------------------------------------------------------------------------- /unittests/images_for_test/total_pot/test_image_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/total_pot/test_image_15.png -------------------------------------------------------------------------------- /unittests/images_for_test/total_pot/test_image_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/total_pot/test_image_16.png -------------------------------------------------------------------------------- /unittests/images_for_test/total_pot/test_image_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/total_pot/test_image_2.png -------------------------------------------------------------------------------- /unittests/images_for_test/total_pot/test_image_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/total_pot/test_image_3.png -------------------------------------------------------------------------------- /unittests/images_for_test/total_pot/test_image_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/total_pot/test_image_4.png -------------------------------------------------------------------------------- /unittests/images_for_test/total_pot/test_image_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/total_pot/test_image_5.png -------------------------------------------------------------------------------- /unittests/images_for_test/total_pot/test_image_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/total_pot/test_image_7.png -------------------------------------------------------------------------------- /unittests/images_for_test/total_pot/test_image_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/total_pot/test_image_8.png -------------------------------------------------------------------------------- /unittests/images_for_test/total_pot/test_image_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/images_for_test/total_pot/test_image_9.png -------------------------------------------------------------------------------- /unittests/test_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wb-08/PokerVision/HEAD/unittests/test_config.yaml --------------------------------------------------------------------------------