Module.DetectAreasMode.CURVED_TEXT

Contents
[ ]

When photographing pages of books and magazine articles, the cylindrical curvature of the page results in distortion of the image, causing the lines of text to curl. This 3D geometric distortion negatively affects recognition.

Module.DetectAreasMode.CURVED_TEXT areas detection model uses a specialized neural network that automatically tracks and rectifies curved lines of text. This greatly improves recognition accuracy and allows much more text to be recovered and extracted.

Detecting and rectifying curved lines of text

However, this model is less efficient and consumes more resources when dealing with perfectly straight images, such as a single scanned sheet of paper. Try Module.DetectAreasMode.DOCUMENT or Module.DetectAreasMode.PHOTO instead.

Example

The following code sample demonstrates how to use this document areas detection model:

var settings = Module.WasmAsposeOCRRecognitionSettings();
settings.detect_areas_mode = Module.DetectAreasMode.CURVED_TEXT;