Click or drag to resize

IForeignTranslator.Finish Method

Allow a foreign translator to perform any necessary cleanup.

Namespace:  Atalasoft.Ocr
Assembly:  Atalasoft.dotImage.Ocr (in Atalasoft.dotImage.Ocr.dll) Version: 11.5.0.0.0.156 (.NET 4.6.2, x86)
Syntax
void Finish(
	OcrEngine engine,
	OcrDocument doc,
	bool successful,
	Object translationObject
)

Parameters

engine
Type: Atalasoft.Ocr.OcrEngine
The engine that has done the recognition.
doc
Type: Atalasoft.Ocr.OcrDocument
The recognized document.
successful
Type: System.Boolean
Indicates that recognition was successful.
translationObject
Type: System.Object
An object originally provided by the return value of the Prepare(OcrEngine, OcrDocument) method.
Remarks
While some foreign translator implementations may not need an associated engine, it is best to always provide one as some translators will require it.
See Also