Photos by @mukund-v and @samryan18.
500 images of chess boards labeled with Forsyth–Edwards Notation for use in image classification. Includes both raw images and preprocessed images.
labeled_originals/
# contains 500 board images labeled with FEN notation
labeled_preprocessed/
# contains preprocessed images labeled with FEN notation (1:1 correspondence with original photos)
- Convert image to binary bitmap
- Blur the image
- Sobol Filter
- Canny Edge Detectors
- Finding Contours with
cv2 - "Prune the contours"—Ramer–Douglas–Peucker Algorithm to reconcile "almost lines"
- Find line intersections
- Sanity checks
- convex hull
- correct num points
- check angles between lines
- Warp images
- Write to new files
More info on preprocessing can be found here. Thanks to @Elucidation for the start here.
