Managing downloadable resources

Contents
[ ]

To add OCR modules to your project:

  1. Download the required resources from the Aspose.OCR resource repository to some directory on your computer.
  2. Specify the path to that directory in root_load_path property of asposeocr.LoadSettings object.
  3. Apply the resource loading settings using asposeocr.set_load_settings() method before calling any other Aspose.OCR for Python via C++ method.
import asposeocr

load_settings = asposeocr.LoadSettings()
load_settings.root_load_path = "extra/resources"
asposeocr.set_load_settings(load_settings)