CoolFace
Datasetpublic

dopaul/chess-board-segmentation

Chess Piece Detection Dataset: chess-board-4 Dataset Description This dataset contains chess piece detection annotations in YOLOv8 format. Chess board segmentation dataset with polygon annotations for precise board detection and localization. Optimized for YOLOv8 segmentation training with chess-board class. Dataset Structure The dataset follows the YOLOv8 format with the following structure: train/: Training images and labels valid/: Validation… See the full description on the dataset page: https://huggingface.co/datasets/dopaul/chess-board-segmentation.

sourceHugging Facecc-by-4.0updated 1y agoView on Hugging Face
0likes33downloads
Dataset Card

Chess Piece Detection Dataset: chess-board-4

Dataset Description

This dataset contains chess piece detection annotations in YOLOv8 format.

Chess board segmentation dataset with polygon annotations for precise board detection and localization. Optimized for YOLOv8 segmentation training with chess-board class.

Dataset Structure

The dataset follows the YOLOv8 format with the following structure:

  • —train/: Training images and labels
  • —valid/: Validation images and labels
  • —test/: Test images and labels

Classes

The dataset contains 12 classes of chess pieces:

  1. 1.black-bishop
  2. 2.black-king
  3. 3.black-knight
  4. 4.black-pawn
  5. 5.black-queen
  6. 6.black-rook
  7. 7.white-bishop
  8. 8.white-king
  9. 9.white-knight
  10. 10.white-pawn
  11. 11.white-queen
  12. 12.white-rook

Usage

python
from datasets import load_dataset

# Load the dataset
dataset = load_dataset("dopaul/chess-board-4")

# Access different splits
train_data = dataset["train"]
valid_data = dataset["valid"]
test_data = dataset["test"]

# Example: Access first training image and annotations
example = train_data[0]
image = example["image"]
annotations = example["annotations"]

Citation

If you use this dataset, please consider citing the original sources and this repository.

License

This dataset is released under the CC BY 4.0 license.