LEADTOOLS OCR (Leadtools.Forms.Ocr assembly)

RunJobAsync Method

Show in webframe
Example 







The IOcrAutoRecognizeJob to run this parameter cannot be null (Nothing in Visual Basic). Use CreateJob to create a job.
Runs a job asynchronously
Syntax
void RunJobAsync( 
   IOcrAutoRecognizeJob job
)
'Declaration
 
Sub RunJobAsync( _
   ByVal job As IOcrAutoRecognizeJob _
) 
'Usage
 
Dim instance As IOcrAutoRecognizeManager
Dim job As IOcrAutoRecognizeJob
 
instance.RunJobAsync(job)
void RunJobAsync( 
   IOcrAutoRecognizeJob job
)

            

            
function Leadtools.Forms.Ocr.IOcrAutoRecognizeManager.RunJobAsync( 
   job 
)
void RunJobAsync( 
   IOcrAutoRecognizeJob^ job
) 

Parameters

job
The IOcrAutoRecognizeJob to run this parameter cannot be null (Nothing in Visual Basic). Use CreateJob to create a job.
Remarks

This method will create an internal worker thread and return control immediatly to the called. When the job is completed, the IOcrAutoRecognizeJob.Errors member of job will contain any errors that might have occured during the recognition process. To get notification when the job is completed (whether successfully or with aborted due to errors or through user action), subscribe to the JobCompleted events.

To run a job synchronously, use RunJob.

To use this method, initialize a new OcrAutoRecognizeJobData object with the job's parameters (input image file name, pages, output document format, output document name, optional zones file name, etc.), then use CreateJob to create the IOcrAutoRecognizeJob object passed as job to this method. Finally, call RunJobAsync passing the IOcrAutoRecognizeJob object.

This method will perform the following operations:

  1. The JobStarted event is triggered.

  2. Creates one ore more IOcrDocument object to store the pages into. The number of OCR documents created is dependant on MaximumThreadsPerJob. If this value is 0 (maximum CPUs/cores) or is greater than 1 and multiple threads is supported by this engine, then more than one document might be created to participate in the recognition process.

  3. Loops through the pages specified in OcrAutoRecognizeJobData.FirstPageNumber and in OcrAutoRecognizeJobData.LastPageNumber in OcrAutoRecognizeJobData.ImageFileName and for each page:

    The page is added to its document using IOcrPageCollection.AddPage.

    If OcrAutoRecognizeJobData.ZonesFileName contains a valid multi-page zone file name and has an entry for the current page, then the zones are loaded with IOcrPage.LoadZones(fileName, pageNumber) and applied to the page. If OcrAutoRecognizeJobData.ZonesFileName is a null (Nothing in Visual Basic) reference or it does not contain an equivalant page number, auto-decomposing of the page is performed instead with IOcrPage.AutoZone.

    IOcrPage.Recognize is called to get the OCR data of the page.

    If multiple documents are used or current number of recognized pages is greater than the maximum specified in MaximumPagesBeforeLtd, then current recognition data is saved to a temporary LTD file and the OCR document is cleared.

  4. When all pages are processed their saved to result file name specified in OcrAutoRecognizeJobData.DocumentFileName using the format specified OcrAutoRecognizeJobData.Format If LTD was used, the temporary file is converted to the final document using DocumentWriter.Convert and optionally DocumentWriter.AppendLtd.

  5. All OCR documents and temporary files are deleted.

  6. The JobCompleted event is triggered.

  7. You can use the JobProgress event to show the operation progress or to abort it if threading is not used. For more information and an example, refer to OcrProgressCallback.

  8. You can use the JobOperation event to get information regarding the current operation being performed. For more information and an example, refer to JobOperation.

The IOcrAutoRecognizeManager interface also has the following options to use with this method:

Option Description
MaximumPagesBeforeLtd

Add support for converting a document with unlimited number of pages. An OCR recognition operation on a document that contains a large amount of pages (10 and more) might result in an out of memory error.

All of the LEADTOOLS OCR engines supports saving the intermediate recognition results to a temporary LTD file (DocumentFormat.LTD). The result of subsequent pages will be appended to this temporary file. When all the pages of the document have been recognized, the engine will convert the temporary LTD file to the desired output format.

The MaximumPagesBeforeLtd property defines the maximum number of pages processed as a whole. For example, if the original document has 20 pages and the value of this property is 8, the engine will recognize the first 8 pages and saves the result to a temporary file, recognizes the second 8 pages and append the results, and finally, recognize the last 4 pages and convert the temporary documentto the final format.

PreprocessPageCommands

Holds an array of OcrAutoPreprocessPageCommand items to control what auto-preprocess operation to perform on each page document prior to recognition.

MaximumThreadsPerJob

Maximum number of threads to use per job. You can instruct IOcrAutoRecognizeManager to use all available machine CPUs/cores when recognizing a document. This will greatly reduce the time required to finish the OCR operation.

JobErrorMode

Ability to resume on none critical errors. For example, if a source document has a page that could not be recognized. The offending page will be added to the final document as a graphics images and recognition will continue to the next page.

JobStarted, JobProgress, JobOperation and JobCompleted events

Events to track when both synchronous and asynchronous jobs has started, being run and completed.

AbortAllJobs

Aborts all running and pending jobs.

EnableTrace

Output debug messages to the standard .NET trace listeners.

Example
Copy Code  
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.Forms.Ocr
Imports Leadtools.Forms.DocumentWriters
Imports Leadtools.Forms
Imports Leadtools.WinForms

Private _jobFinishedEvent As AutoResetEvent
Private Sub RunJobAsyncExample()
   Dim tifFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "Ocr1.tif")
   Dim pdfFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "Ocr1.pdf")

   ' Create an instance of the engine
   Using ocrEngine As IOcrEngine = OcrEngineManager.CreateEngine(OcrEngineType.Advantage, False)
      ' Start the engine using default parameters
      Console.WriteLine("Starting up the engine...")
      ocrEngine.Startup(Nothing, Nothing, Nothing, LEAD_VARS.OcrAdvantageRuntimeDir)

      Dim ocrAutoRecognizeManager As IOcrAutoRecognizeManager = ocrEngine.AutoRecognizeManager

      ' Create the job
      Dim ocrJobData As New OcrAutoRecognizeJobData(tifFileName, DocumentFormat.Pdf, pdfFileName)
      ocrJobData.JobName = "MyJob"
      Dim ocrJob As IOcrAutoRecognizeJob = ocrAutoRecognizeManager.CreateJob(ocrJobData)

      ' Create the event
      _jobFinishedEvent = New AutoResetEvent(False)

      ' Run the job in a thread and wait for it to be done
      ' We will use the JobCompleted event to get notified when
      ' the job is finished
      AddHandler ocrAutoRecognizeManager.JobCompleted, AddressOf ocrAutoRecognizeManager_JobCompleted
      Console.WriteLine("Running the job...")
      ocrAutoRecognizeManager.RunJobAsync(ocrJob)

      Console.WriteLine("Waiting for the job to complete...")
      _jobFinishedEvent.WaitOne()
      Console.WriteLine("Done...")
      _jobFinishedEvent.Close()
      RemoveHandler ocrAutoRecognizeManager.JobCompleted, AddressOf ocrAutoRecognizeManager_JobCompleted
   End Using
End Sub

Private Sub ocrAutoRecognizeManager_JobCompleted(ByVal sender As Object, ByVal e As OcrAutoRecognizeRunJobEventArgs)
   ' Tell main thread we are done
   _jobFinishedEvent.Set()
End Sub

Public NotInheritable Class LEAD_VARS
Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"
Public Const OcrAdvantageRuntimeDir As String = "C:\LEADTOOLS 18\Bin\Common\OcrAdvantageRuntime"
End Class
using Leadtools;
using Leadtools.Codecs;
using Leadtools.Forms.Ocr;
using Leadtools.Forms.DocumentWriters;
using Leadtools.Forms;
using Leadtools.WinForms;

private AutoResetEvent _jobFinishedEvent;
private void RunJobAsyncExample()
{
   string tifFileName = Path.Combine(LEAD_VARS.ImagesDir, "Ocr1.tif");
   string pdfFileName = Path.Combine(LEAD_VARS.ImagesDir, "Ocr1.pdf");

   // Create an instance of the engine
   using (IOcrEngine ocrEngine = OcrEngineManager.CreateEngine(OcrEngineType.Advantage, false))
   {
      // Start the engine using default parameters
      Console.WriteLine("Starting up the engine...");
      ocrEngine.Startup(null, null, null, LEAD_VARS.OcrAdvantageRuntimeDir);

      IOcrAutoRecognizeManager ocrAutoRecognizeManager = ocrEngine.AutoRecognizeManager;

      // Create the job
      OcrAutoRecognizeJobData ocrJobData = new OcrAutoRecognizeJobData(tifFileName, DocumentFormat.Pdf, pdfFileName);
      ocrJobData.JobName = "MyJob";
      IOcrAutoRecognizeJob ocrJob = ocrAutoRecognizeManager.CreateJob(ocrJobData);

      // Create the event
      _jobFinishedEvent = new AutoResetEvent(false);

      // Run the job in a thread and wait for it to be done
      // We will use the JobCompleted event to get notified when
      // the job is finished
      ocrAutoRecognizeManager.JobCompleted += new EventHandler<OcrAutoRecognizeRunJobEventArgs>(ocrAutoRecognizeManager_JobCompleted);
      Console.WriteLine("Running the job...");
      ocrAutoRecognizeManager.RunJobAsync(ocrJob);

      Console.WriteLine("Waiting for the job to complete...");
      _jobFinishedEvent.WaitOne();
      Console.WriteLine("Done...");
      _jobFinishedEvent.Close();
      ocrAutoRecognizeManager.JobCompleted -= new EventHandler<OcrAutoRecognizeRunJobEventArgs>(ocrAutoRecognizeManager_JobCompleted);
   }
}

private void ocrAutoRecognizeManager_JobCompleted(object sender, OcrAutoRecognizeRunJobEventArgs e)
{
   // Tell main thread we are done
   _jobFinishedEvent.Set();
}

static class LEAD_VARS
{
public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";
public const string OcrAdvantageRuntimeDir = @"C:\LEADTOOLS 18\Bin\Common\OcrAdvantageRuntime";
}
Requirements

Target Platforms

See Also

Reference

IOcrAutoRecognizeManager Interface
IOcrAutoRecognizeManager Members
Programming with the LEADTOOLS .NET OCR
Multi-Threading with LEADTOOLS OCR
LEADTOOLS OCR Thunk Server

 

 


Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.

RunJobAsync requires an OCR module license and unlock key. For more information, refer to: Imaging Pro/Document/Medical Features