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, it vastly increases prediction accuracy, encompassing a wide variety of chess image formats from different sources. 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 basis for the training algorithm, originally a simple CNN architecture built on a no longer supported version of TensorFlow 2. This version transitions to PyTorch and vastly improves prediction accuracy on a wide variety of chess image formats.


🧪 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:

11111111/11111111/11111111/1111p1K1/11k1P111/11111111/11111111/11111111

🖼️ Sample Results

📷 Input:

🎯 Predicted FEN:

11111111/11111111/11111111/1111p1K1/11k1P111/11111111/11111111/11111111

---

🚀 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.3b0.tar.gz (140.0 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.3b0-py3-none-any.whl (22.7 kB view details)

Uploaded Python 3

File details

Details for the file chessimg2pos-0.1.3b0.tar.gz.

File metadata

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

File hashes

Hashes for chessimg2pos-0.1.3b0.tar.gz
Algorithm Hash digest
SHA256 33017737255321714b203fed311db75695941973c040ad52020a92aeff724863
MD5 1a3b8e15cc05a1b95870fad6814b0f24
BLAKE2b-256 b224631e530bc252a72aae0a0a04fabfd813c736da14fd8f22cc86e59e22560e

See more details on using hashes here.

File details

Details for the file chessimg2pos-0.1.3b0-py3-none-any.whl.

File metadata

File hashes

Hashes for chessimg2pos-0.1.3b0-py3-none-any.whl
Algorithm Hash digest
SHA256 2a6b07f2d6bcc5ea02e1a83f91f842af02319799d13faff0b8b5f4fa962cb769
MD5 98416e1a170409c2348156015282ba58
BLAKE2b-256 d7865808420e8cc045b7db50a214d925ff17bd4bb76e451b858045f356d282ba

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