Disclaimer: This is an example of a student written essay.
Click here for sample essays written by our professional writers.

Any opinions, findings, conclusions or recommendations expressed in this material are those of the authors and do not necessarily reflect the views of UKEssays.com.

Study of Document Layout Analysis Algorithms

Paper Type: Free Essay Subject: Computer Science
Wordcount: 1854 words Published: 18th Apr 2018

Reference this

Relative Study of Document Layout Analysis Algorithms for Printed Document Images

  • Divya Kamat, Divya Sharma, Parag Chitale, Prateek Dasgupta

 

ABSTRACT

In the following survey paper, the different algorithms that could be used for document layout analysis have been studied and their results have been compared. For the removal of image mask, Bloomberg’s algorithm and CRLA have been described. For the purpose of text segmentation, we have studied the Recursive XY Cut algorithm, RLSA and RLSO algorithms.

  1. Introduction

Physical layout analysis of printed document images is the first step of the OCR conversion. For the OCR to work effectively, we need to provide an input wherein no images are present in the document i.e. the image contains only text. If this is not done properly, the OCR will return garbage values. To avoid this, we have discussed two algorithms, Bloomberg’s Algorithm and CRLA that could be used for the removal images from the document images.

The next step is the text segmentation wherein we find the text blocks inside the document. The coordinates of these text blocks are then passed as input to the OCR. To perform this segmentation, we have discussed the recursive XY cut algorithm, the RLSA and RLSO algorithms.

  1. Removal of Image from Document

The first step in the document layout analysis is to remove the images present in the original document. We will be discussing the Bloomberg’s algorithm along with its variations and the CRLA algorithm for image removal.

  1. Bloomberg’s Algorithm

The Bloomberg’s algorithm is primarily used to find the image mask of halftone images. The implementation of this algorithm uses basic morphological operations. The algorithm has the following steps:

  1. In the first step, the binarization of the input image is performed.
  2. Next, 4×1 threshold reduction is performed twice using threshold T=1.
  3. 4×1 threshold reduction is performed using T=4.
  4. 4×1 threshold reduction is performed using T=3.
  5. Opening the image with a structural element of size 5×5.
  6. Next, 1×4 expansion of the image is performed twice.
  7. Next the union of overlapping components of the seed image obtained from step 6 with the image obtained from step 2 is performed.
  8. Dilation with structural element 3×3 followed by 1×4 expansion which is performed twice.
  9. The halftone mask obtained from step 8 is then subtracted from the binarized input image.

The main issue with Bloomberg’s algorithm is that it is unable to distinguish between text and sketches (i.e. line drawings) in a printed document image.

  1. Enhanced CRLA Algorithm

CRLA stands for Constraint Run Length Algorithm. In this algorithm we apply horizontal and vertical smoothening to the document image to get a clear separation between text and images in the document.

Enhanced CRLA is used to smooth out only the text part in the image and avoid smoothening of non-textual part of the document image.

Algorithm:

  1. Label the connected components in the document image.
  2. Classify the components with respect to their heights as follows:
    1. Height less than or equal to 1 cm, label it as 1
  3. Height between 1 and 3 cm, label it as 3
  4. Height greater than 3 cm, label it as 3
  5. Apply horizontal smoothening to the components with label 1 only.
  6. Apply vertical smoothening to the components with label 1 only.
  7. Logically AND the two images obtained previously.
  8. Apply horizontal smoothening to the output image of AND operation.
  9. Calculate Mean Black Run Length
  10. Calculate the Black Run Length (BRL) row-wise for the region under consideration.
  11. Maintain a Black-White Transition Count (TC) for the region.
  12. Calculate Mean BRL as MBRL= (BRL/TC).
  13. Calculate Mean Transition Count
  14. Maintain a Black-White Transition Count (TC) for the region.
  15. Calculate W, the width of the region.
  16. Calculate Mean TC as MTC=(TC/W)
  17. Extract the components from the image with label 1 having values of MBRL and MTC in the acceptable range for the typical document image.
  18. Apply horizontal smoothening to the components with label 2 only.
  19. Apply vertical smoothening to the components with label 2 only.
  20. Logically AND the two images obtained previously.
  21. Apply horizontal smoothening to the output image of AND operation.
  22. Calculate MBRL and MTC.
  23. Extract the components from the image with label 2 and 3 having values MBRL and MTC in the acceptable range for the typical document image.

At step 9 we extract the text part of the document image and at step 15 we extract the non-text part of the document image.

The main advantage of the CRLA algorithm is that clear separation of text and non-text part of the document image. It also works for sketches as well as halftones effectively. It has considerably less complexity as selective smoothening is done.

However, after the removal of the non-textual part of the document image, some stray pixels remain the image. The connected components in the halftone image whose height is less than 1cm are assumed as text elements in the algorithm. This results in presence of unwanted components in the final image.

  1. Text Segmentation

The next step in the document layout analysis is the segmentation of text into text blocks that could be provided as input to the OCR. The following algorithms have been studied for this:

  1. Recursive XY Cut algorithm

The recursive XY cut algorithm is used for obtaining text blocks from an image that does not contain any images from the original printed document. The XY cut algorithm works in the following way:

  1. The bounding boxes of the image are calculated.
  2. Next we calculate the horizontal and vertical projections of the image.
  3. After calculating the projections, we then perform X cuts on all the valleys in the horizontal projections which have a value greater than the threshold th.
  4. Next we perform Y cuts in between these X cuts at all the valleys in the vertical projections which have a value greater than the threshold tv.
  5. We repeat the steps 3 and 4 until there are no further X or Y cuts possible in a region.

One of the problems with XY cut algorithm is that there is no method to find a threshold that will work for all the documents. Instead, a new threshold needs to be determined for each document and this cannot be done without manual intervention.

Another major issue with the recursive XY algorithm is the time complexity. The recursive XY cut algorithm requires a large time to complete execution. Despite these disadvantages, this algorithm successfully separates the text blocks provided that a manual threshold is provided.

  1. RLSA

The Run-Length Smoothing Algorithm (RLSA) works on black & white scanned images of documents. It finds runs of white pixels and converts them into black pixels whenever they are less than a given threshold. The RLSA works in four steps:

  1. In the first step, we perform horizontal smoothing. For this, we scan the image row-wise and then replace lengths of white pixels by black pixels if they are less than a threshold th.
  1. In the second step, we perform vertical smoothing. For this, we scan the image column-wise and then replace lengths of white pixels by black pixels if they are less than a threshold tv.
  1. Next, we perform logical ANDing of the images obtained from the first and second steps.
  1. Then we perform horizontal smoothing on the image obtained from step 3 with a threshold ta.
  1. RLSO

A simplified version of the RLSA, RLSO (Run-Length Smoothing with OR) works as follows:

  1. In the first step, we perform horizontal smoothing. For this, we scan the image row-wise and then replace lengths of white pixels by black pixels if they are less than a threshold th.
  2. In the second step, we perform vertical smoothing. For this, we scan the image column-wise and then replace lengths of white pixels by black pixels if they are less than a threshold tv.
  3. Next we perform a logical OR operation on the images obtained from the first and second step.

The RLSA algorithm returns rectangular frames of documents with Manhattan Layouts. On the other hand, RLSO algorithm also works well with non-Manhattan layouts. The problem with both RLSA and RLSO is that the threshold for smoothing needs to be determined manually. Also the threshold required for each document image is different and it is almost impossible to be determined manually.

  1. Conclusion

We have compared the above given algorithms for the document layout analysis. During our research we found that, while Bloomberg’s algorithm faces problems for images that contain sketches, CRLA faces problems for images that contain extremely small non-textual elements.

We also observed that the recursive XY Cut algorithm and RLSA both do not work on printed documents having non-Manhattan layouts. On the other hand, the RLSO algorithm gives comparatively better results for Manhattan as well as non-Manhattan layouts. However, all three algorithms mentioned above face the common problem of manual threshold determination which is document specific.

  1. References
  1. Syed Saqib Bukhari, Faisal Shafait and Thomas M. Bruel, “Improved Document Image Segmentation Algorithm using Multiresolution Morphology”
  1. Jaekyu Ha and Robert M. Haralick, Ihsin T. Philips, “Recursive XY Cut using Bounding Boxes of Connected Components” , Third International Conference on Document Analysis and Recognition, ICDAR, 1995
  1. Stefano Ferilli, Teresa M.A. Basile, Floriana Esposito, “A histogram-based Technique for Automatic Threshold Assessment in a Run Length Smoothing-based Algorithm”, ACM, 2010.
  1. Hung-Ming Sun, “Enhanced Constrained Run-Length Algorithm for Complex Layout Document Processing”, International Journal of Applied Science and Engineering, 2006

 

Cite This Work

To export a reference to this article please select a referencing stye below:

Reference Copied to Clipboard.
Reference Copied to Clipboard.
Reference Copied to Clipboard.
Reference Copied to Clipboard.
Reference Copied to Clipboard.
Reference Copied to Clipboard.
Reference Copied to Clipboard.

Related Services

View all

DMCA / Removal Request

If you are the original writer of this essay and no longer wish to have your work published on UKEssays.com then please: