Skip to main content

Recognize chess positions from board images using deep learning

Project description

🧠 Chessboard Recognizer (Convert your chess images to FEN positions with one click!)

This project uses a deep learning model implemented in PyTorch to recognize the positions of chess pieces on a chessboard image and convert it into FEN notation. This library introduces an easy and fast function to simply predict a fen from an image. For more advanced usage it also provides reusable components for training, inference, and data preparation.

Full credits to linrock/chessboard-recognizer for chess image data, preprocessing and training algorithm, originally built on a no longer supported version of TensorFlow 2. This version transitions to PyTorch,


🧪 Usage Example

Check the demo usage notebook for more advanced usages (training/inference) 📓 examples/demo_usage.ipynb

Predict from an image

from recognizer import predict_fen
fen = predict_fen("../images/chess_image.png")
print(fen)

Output:

3rkb1r/1pp2ppp/2n1q1n1/p3Pb2/2Pp4/PN3NB1/1P1QPPPP/3RKB1R

🖼️ Sample Results

📷 Input:

🎯 Predicted FEN:

3rkb1r/1pp2ppp/2n1q1n1/p3Pb2/2Pp4/PN3NB1/1P1QPPPP/3RKB1R

---

🚀 Getting Started

Requirements

  • Python 3.10+
  • PyTorch
  • Other dependencies in requirements.txt
pip install chessimg2pos

or

git clone https://github.com/mdicio/chessimg2pos
pip install -r requirements.txt

🙏 Acknowledgements

This project is a continuation and modernization of:

Major thanks to these creators — this project wouldn’t exist without their work.

🧠 Core Classes

This project is centered around two powerful classes that handle training and prediction with a modern PyTorch-based architecture.

🔧 ChessRecognitionTrainer

Handles training and evaluation of the CNN-based chess piece classifier.

Example:

from chessimg2pos import ChessRecognitionTrainer

trainer = ChessRecognitionTrainer(
    images_dir="../../training_images/chessboards", # replace with your path
    model_path="../../models/test_model.pt",# replace with path where you want models tgo be saved
    generate_tiles=False,  # Set to True if tiles need to be generated from boards
    epochs = 5,
    overwrite = False
)
model, device, accuracy = trainer.train()

🔍 ImprovedChessPositionPredictor

Loads a trained model and predicts a FEN string from a chessboard image.

Example:

from chessimg2pos import ChessPositionPredictor

predictor = ChessPositionPredictor("../../models/test_model.pt")
result = predictor.predict_chessboard("../images/ccom_1.png", return_tiles=True)

print("Predicted FEN:", result["fen"])
print("Confidence:", result["confidence"])
predictor.visualize_prediction(result)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chessimg2pos-0.1.2.tar.gz (458.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

chessimg2pos-0.1.2-py3-none-any.whl (20.7 kB view details)

Uploaded Python 3

File details

Details for the file chessimg2pos-0.1.2.tar.gz.

File metadata

  • Download URL: chessimg2pos-0.1.2.tar.gz
  • Upload date:
  • Size: 458.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.8

File hashes

Hashes for chessimg2pos-0.1.2.tar.gz
Algorithm Hash digest
SHA256 3aa8d236c80a3c5fad7802bf55032a5ec684784bee26b4c1a1b1fd7f3113545d
MD5 cd7f4c36107ed5a680f1f87185f0db72
BLAKE2b-256 84f671775503c9ab87bf6ef6d88a40c0985a814f5f9af9bd63cd15dd8cd2aaf9

See more details on using hashes here.

File details

Details for the file chessimg2pos-0.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for chessimg2pos-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 d2efd1c05210a1cb6bb6d4502c2e875b447b2c1c9be93371a44371b41d7288da
MD5 e429467633eb0c610075706c8f4ea585
BLAKE2b-256 40bf47a4d0e8d674450ac40ec84a2992c8df9c25e7585ce80eea8a246ac904f8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page