Method of character recognition in written document
11151402 · 2021-10-19
Assignee
Inventors
Cpc classification
G06V10/457
PHYSICS
G06V2201/01
PHYSICS
International classification
Abstract
A method for recognizing characters in an image of a document having at least one alphanumeric field. The method includes the steps of enhancing an image contrast to highlight the characters in the image; detecting contours of objects in the image to create a mask that highlights the characters; segmenting the image using a tree with connected components and applying the mask thereto in order to extract the characters from the image; performing a character recognition on the extracted objects. A device for implementing the method.
Claims
1. A method for recognizing characters in an image of a document comprising at least one alphanumeric field, the method comprising: enhancing an image contrast to highlight the characters in the image; detecting contours of objects in the image to create a mask that highlights the characters; segmenting the image using a tree with connected components and applying the mask onto the image in order to extract the characters from the image; and performing a character recognition on the extracted characters.
2. The method according to claim 1, wherein the character recognition is performed by a neural network.
3. The method according to claim 2, wherein the neural network is of the convolution type.
4. The method according to claim 1, wherein the document has heterogeneous background.
5. The method according to claim 1, further comprising determining whether the background of the document is homogeneous and, if so, skipping said detecting contours and said segmenting the image.
6. The method according to claim 1, wherein said enhancing the image contrast is done by locally adapting the image contrast between neighboring pixels taking into account a difference between pixels weighted by a Euclidean distance between same.
7. The method according to claim 6, wherein said locally adapting is carried out to obtain an overall white balance.
8. The method according to claim 1, wherein said detecting is performed by applying a Sobel filter to the image.
9. The method according to claim 2, wherein the neural network is of the convolution type with short- and long-term memory.
10. A character recognition device, comprising: a computer unit provided with means for the connection to a digitizing apparatus arranged to perform a digitization of a written document, the computer unit comprising: at least one processor; and a memory containing a program implementing the method according to claim 1.
Description
BRIEF DESCRIPTION OF THE DRAWINGS
(1) Reference is made to the appended drawings, wherein:
(2)
(3)
(4)
(5)
(6)
(7)
DETAILED DESCRIPTION OF THE PREFERRED EMBODIMENTS
(8) With reference to
(9) The written document is here more particularly an identity document such as an identity card or a passport.
(10)
(11) The method of the invention implemented by the program executed by the computer unit 1 includes the following steps (
(12) segmenting the image to identify objects therein (step 110);
(13) defining a bounding box 20 around each object and making a first selection to select the bounding boxes supposedly containing a character based on at least one theoretical dimensional characteristic of an alphanumeric character (step 120);
(14) making a second selection comprising applying shape descriptors to each selected bounding box and implementing a decision making algorithm to select, on the basis of the descriptors, the bounding boxes supposedly containing a character (step 130);
(15) grouping the bounding boxes according to the relative positions of the bounding boxes (step 140);
(16) making a third selection by dividing each of these bounding boxes into a plurality of cells for each of which a texture descriptor in the form of a histogram of oriented gradient is determined, the histograms then being concatenated and a decision making algorithm being implemented to select, on the basis of the descriptors, the bounding boxes supposedly containing a character (step 150);
(17) improving the image contrast and detecting contours of objects in the image to create a mask that highlights the characters (step 160);
(18) segmenting the image by applying the mask to the image to extract the objects visible through the mask (step 170);
(19) performing a character recognition on the finally selected bounding boxes (step 180).
(20) These steps will now be disclosed in greater details.
(21) The step 110 here consists in applying a sequential alternating filter to the image, which is a mathematical morphological filter. In practice, the program scans the image with a geometric window (commonly called a structuring element) that is circular (but which could be rectangular or even linear or any other shape) with a radius of 5 to 10 pixels and eliminates everything that fits entirely within said window (operation commonly called erosion) and expands any part of an object that does not fit entirely within the window. Given the dimensions of the window, a character will not fit entirely inside the window and will therefore be expanded, the rest is necessarily noise and is eliminated. Preferably, several passes are made while increasing the window dimensions between each of these to gradually filter the image noise. Alternatively, this step can be performed by implementing an MSER (Maximally stable extremal regions) algorithm or by filtering the image using a threshold corresponding to a theoretical intensity of a character (when the threshold is reached, the object is considered as a character; when the threshold is not reached, the object is not a character).
(22) Upon completion of this step, the program therefore highlighted objects (which could also be called connected components) which include alphanumeric characters as well as other objects which include elements that are not, such as security or decoration elements. Nevertheless, at this stage, a significant proportion of these undesirable elements have been excluded.
(23) In step 120, on each of the objects remaining in the image, the program applies a bounding box 20 (visible in
(24) To automatically select objects corresponding to alphanumeric characters in step 130, the program implements a decision making algorithm (or more commonly called a classifier). On each object selected beforehand, several types of shape descriptors are determined, namely here:
(25) Fourier moments,
(26) Krawchuk moments.
(27) It should be reminded that a moment is a formula applied to a pixel or a set of pixels to describe the structure at issue, namely a character. Other descriptors could be used instead of or in addition to Fourier moments and/or Krawtchuk moments. However, the combined use of these two types of descriptors gives remarkable results.
(28) Fourier moments are used in a classifier (here SVM “Support Vector Machine” type) to produce a first character/non-character output.
(29) Krawchuk moments are used in a classifier (again of the SVM type) to produce a second character/non-character output.
(30) These two outputs are then concatenated to form an input vector of a classifier (again of the SVM type) providing a third output. This third output is compared to a threshold to provide a binary decision: “character” or “no character”. Preferably, to form the input vector, the first output and the second output are weighted for each object, for example according to the performance of the descriptors, given the type of background.
(31) Following this operation, an image is obtained containing the objects that are mostly devoid of any possible tasks and noise initially present in the image, often due to the presence of the document security or decoration elements.
(32) In step 140, the program groups the characters into one or more word(s) or line(s) of text according to geometric criteria that, in addition to the height, width and/or dimension ratio AR, include(s) the centroids (or barycentres) of the bounding boxes 20 associated with each character. More precisely, the program detects if the centroids are aligned on the same line and calculates the distances between the centroids and the bounding boxes 20 associated with adjacent characters to determine if they belong to the same word. The grouped characters are associated in a collective bounding box.
(33) In step 150, the program examines the contents of each collective bounding box and eliminates those that do not appear to contain a text field. Indeed, during the phases described above, lines may inadvertently be formed by grouping objects, at least one of which is not a character. This step therefore eliminates false positives.
(34) It is known that different regions of text have different distributions of gradient orientations: the reason is that high amplitude gradients are generally perpendicular to the contours that form the characters. For this step, the program uses a texture descriptor based on a Histogram of oriented gradient (HOG) that is known in text recognition. Classically: the area to be recognized is subdivided into N1 lines and Nc columns globally on the image, a histogram is calculated on each of the N1×Nc cells, the histograms are concatenated with each other for the entire image.
(35) According to the method of the invention, the program is advantageously arranged to subdivide the bounding box 20 of each object into 3 lines and 1 column because this division significantly improves the “word” or “not word” decision. Thus, a histogram is calculated on each of the three cells of each bounding box 20 containing a priori a character. The histograms are then concatenated with each other and entered into a classifier (again of the SVM type) to decide whether the collective bounding box corresponds to text. It should be noted that the breakdown is highly dependent on the size of the characters. The bounding box 20 in which the cutting is performed must have the size of each character (if the bounding box 20 of a character is 28 pixels×28 pixels initially but the character occupies only 50% thereof, the box is resized so that the character occupies all of it, then the cutting is completed).
(36) In step 160, the program performs, in each collective bounding box, a color analysis of the image (two parts of the image before this step is performed are represented in
(37) The step 170 is intended to remove the background from the image in order to eliminate any background element contained therein, such as security or decoration elements, that may subsequently affect the character recognition.
(38) The previous step made it possible to improve the color of the image and to saturate the black characters. This makes it easier to detect the character contours. The method of the invention implemented by the program uses a contour detection filter and more particularly a Sobel filter for this purpose. The contour detection output automatically provides markers, linked to each character, that will form a mask. The output image (
(39) The character recognition performed by the program in step 180 can implement any character recognition algorithm. More specifically, the program applies a word segmentation and recognition model based on a deep learning architecture based on a combination of convolutional neural networks (CNN) and LSTMs (CNN for Convolutional Neural Network, LSTM for Long-, Short-Term Memory). In this case, the convolution neural network gives particularly good results because the background of the image was removed before its implementation. This elimination of the background reduces the rate of false positives during the OCR; and in particular avoids the appearance of ghost characters, i.e. patterns from the background and/or security or decorative elements, which have a shape close to that of a character and are incorrectly recognized as a character during the OCR.
(40) Preferably, a multi-scale approach should be used as an alternative. Indeed, the characters which are larger than the window used in step 110 are often over-segmented. To avoid this disadvantage, the method according to the invention provides for steps 110 and 120 to be carried out at different resolutions, with the dimensions of the window remaining identical. In practice, the program performs several scanning passes and reduces the resolution after each pass to eliminate all the objects that do not fit entirely into the window but have smaller sizes than a character. For example, the initial resolution is 2000×2000 pixels and five decreases in resolution are made (the resolution is halved each time). A number of five decreases represents a good compromise between efficiency and computing time.
(41) It should be noted that the relevant geometric criteria for character grouping and the choice of different parameters for effective word detection have been selected in order to have an effective set of parameters for each type of image (depending on the wavelength range used for scanning: visible, IR and UV).
(42) Of course, the invention is not limited to the described embodiment but encompasses any alternative solution within the scope of the invention as defined in the claims.
(43) In particular, the method has been described in its most efficient version regardless of the digitizing device used.
(44) For a digitization with a flatbed scanner, the method of the invention may include only the following steps:
(45) enhancing a contrast of the image;
(46) detecting contours of objects in the image to create a mask that highlights the characters;
(47) segmenting the image by applying the mask to the image to extract the objects visible through the mask;
(48) performing a character recognition on the extracted objects.
(49) For a digitization with a smartphone, the method of the invention may include only the following steps:
(50) segmenting the image to identify objects therein;
(51) defining a bounding box around each object and making a first selection to select the bounding boxes supposedly containing a character based on at least one theoretical dimensional characteristic of an alphanumeric character;
(52) making a second selection comprising applying shape descriptors to each selected bounding box and implementing a decision making algorithm to select, on the basis of the descriptors, the bounding boxes supposedly containing a character;
(53) grouping the bounding boxes according to relative positions of the bounding boxes;
(54) making a third selection by dividing each of these bounding boxes into a plurality of cells for each of which a texture descriptor in the form of an histogram of oriented gradient is determined, the histograms then being concatenated and a decision making algorithm being implemented to select, on the basis of the descriptors, the bounding boxes supposedly containing a character;
(55) performing a character recognition on the finally selected bounding boxes.
(56) In all cases, the multi-scale approach is optional.
(57) It is possible to combine several classifiers. Or to use other classifiers than those indicated. Preferably, each classifier used will be of a type included in the following group: SVM (“Support Vector Machine”), RVM (“Relevance Vector Machine”), K nearest neighbours (or KNN), Random Forest. It should be noted, for example, that the RVM classifier allows a probabilistic interpretation that allows fewer examples for the learning phase.
(58) It is possible to group by line or word. For example, the type of document will be taken into account: for example, on identity documents of British origin, there are sometimes large spaces between the letters that leave the background very apparent: it is more efficient to group by word for this type of document.
(59) For step 150, other breakdowns are possible, in particular 1 column and 7 lines.
(60) The images can be processed in color or in a grayscale. In a grayscale, using the mask eliminates a large number of parasitic elements.
(61) Alternatively, several other segmentation solutions could have been considered such as global or adaptive thresholding, a Gaussian mixture or any other technique to effectively isolate the characters in the image.
(62) Krawchuk moments can be used alone or in combination with other types of moments and for example shape descriptors also based on moments among the following: Fourier, Legendre, Zernike, Hu moments and descriptors extracted by a LeNet convolution neural network. It should be noted that Krawchuk moments become effective descriptors for characters using order 9 polynomials whereas order 16 polynomials are required for Legendre moments, 17 for Zernike moments and more than 30 for Fourier moments.
(63) It should be noted that the method of the invention is particularly well suited for processing documents with heterogeneous backgrounds. The method can be implemented in the same way for processing documents with homogeneous backgrounds. It is also possible to plan a preliminary step to determine if the background of the document is homogeneous and, if so, to skip the steps of contour detection and mask segmentation. This segmentation is mainly useful because it eliminates a large part of the background of the document that could alter character recognition. However, with a homogeneous background, this risk is limited. Another type of segmentation may be considered.
(64) The creation of the mask according to the invention makes it possible to automate the implementation of algorithms for resolving the tree whether it concerns a color or grayscale image, even if the results obtained with the related component tree are better with grayscales for character recognition in identity documents.
(65) The sensor may have a structure different from the one described. In particular, the image acquisition program can be stored in a memory of the capture device to be executed directly by the latter. The device and the capture device can be incorporated into the same device.