I would like to get the idea of X-Y-cut algorithm used for offline handwriting recognition.
X-Y-cut is a histogram based approach, used for the reason of automatic handwriting recognition.
First steps of the algorithm are the following:
- We use a binarized picture, which contains typed text.
- We count the number of black pixels for each line and project the value on the Y-axis.
- We do the same for the X-axis.
At this stage, before applying the classification techniques, I would like to know more details that we do after getting X and Y axes with histograms, which show a number of black pixels.