OpenCv python: solve sudoku from image

Nhan Cao
2 min readJul 15, 2018
Overview

Original input image

image from google

First: process input image

Next step, image cell board

This step will split each cell of sudoku (9x9 = 81 cell), after that find contours of number, resize it and push to board.

--

--