├── .gitignore ├── LICENSE ├── README.md ├── chess_piece ├── B.png ├── K.png ├── N.png ├── P.png ├── Q.png ├── R.png ├── b_black.png ├── k_black.png ├── n_black.png ├── p_black.png ├── q_black.png └── r_black.png ├── dist ├── board (1).jpg ├── board (10).jpg ├── board (11).jpg ├── board (12).jpg ├── board (5).jpg ├── board (6).jpg ├── board (7).jpg ├── board (8).jpg ├── board (9).jpg └── board.jpg ├── main.ipynb ├── main.py ├── requirements.txt └── test ├── board (1).png ├── board (10).png ├── board (11).png ├── board (12).png ├── board (5).png ├── board (6).png ├── board (7).png ├── board (8).png ├── board (9).png └── board.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/README.md -------------------------------------------------------------------------------- /chess_piece/B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/chess_piece/B.png -------------------------------------------------------------------------------- /chess_piece/K.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/chess_piece/K.png -------------------------------------------------------------------------------- /chess_piece/N.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/chess_piece/N.png -------------------------------------------------------------------------------- /chess_piece/P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/chess_piece/P.png -------------------------------------------------------------------------------- /chess_piece/Q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/chess_piece/Q.png -------------------------------------------------------------------------------- /chess_piece/R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/chess_piece/R.png -------------------------------------------------------------------------------- /chess_piece/b_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/chess_piece/b_black.png -------------------------------------------------------------------------------- /chess_piece/k_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/chess_piece/k_black.png -------------------------------------------------------------------------------- /chess_piece/n_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/chess_piece/n_black.png -------------------------------------------------------------------------------- /chess_piece/p_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/chess_piece/p_black.png -------------------------------------------------------------------------------- /chess_piece/q_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/chess_piece/q_black.png -------------------------------------------------------------------------------- /chess_piece/r_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/chess_piece/r_black.png -------------------------------------------------------------------------------- /dist/board (1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/dist/board (1).jpg -------------------------------------------------------------------------------- /dist/board (10).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/dist/board (10).jpg -------------------------------------------------------------------------------- /dist/board (11).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/dist/board (11).jpg -------------------------------------------------------------------------------- /dist/board (12).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/dist/board (12).jpg -------------------------------------------------------------------------------- /dist/board (5).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/dist/board (5).jpg -------------------------------------------------------------------------------- /dist/board (6).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/dist/board (6).jpg -------------------------------------------------------------------------------- /dist/board (7).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/dist/board (7).jpg -------------------------------------------------------------------------------- /dist/board (8).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/dist/board (8).jpg -------------------------------------------------------------------------------- /dist/board (9).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/dist/board (9).jpg -------------------------------------------------------------------------------- /dist/board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/dist/board.jpg -------------------------------------------------------------------------------- /main.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/main.ipynb -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/requirements.txt -------------------------------------------------------------------------------- /test/board (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/test/board (1).png -------------------------------------------------------------------------------- /test/board (10).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/test/board (10).png -------------------------------------------------------------------------------- /test/board (11).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/test/board (11).png -------------------------------------------------------------------------------- /test/board (12).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/test/board (12).png -------------------------------------------------------------------------------- /test/board (5).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/test/board (5).png -------------------------------------------------------------------------------- /test/board (6).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/test/board (6).png -------------------------------------------------------------------------------- /test/board (7).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/test/board (7).png -------------------------------------------------------------------------------- /test/board (8).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/test/board (8).png -------------------------------------------------------------------------------- /test/board (9).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/test/board (9).png -------------------------------------------------------------------------------- /test/board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arashyeganeh/Chess-Piece-Object-Detection-using-OpenCV/HEAD/test/board.jpg --------------------------------------------------------------------------------