I am trying to segment words in a handwritten text line. I am doing this based on a research paper whose word segmentation part is given in the image. I do not understand the quantities for which the histogram is to be made.Histogram for word segmentation-(image link)
Asked
Active
Viewed 353 times
0
-
ok my virus protection blocks this site you might as well scan this page – gpasch Mar 31 '16 at 18:48
-
@gpasch I've added an image link – ANNUAY Apr 01 '16 at 08:04
1 Answers
1
This paper is written is some "easy-go" fashion.
But lets try to understand.
V() is not a histogram but a filtering mechanism: you work down the line on each column and find the average. I assume the image I(i, j) is binary/black-white (or maybe gray-scale).
V(i)=Sum_j I(i, j)/height
is the average of image intensities on column i.
So you just calculate these V(i) for i=0, .., width-1.
Then you go from there.

gpasch
- 2,672
- 3
- 10
- 12