RunPostprocessor

RunPostprocessor(OcrOutput)

Applies registered AI post-processor to the given structured OCR result. This may include spelling correction, table detection, table formatting, and other AI-powered enhancements depending on the configured processors.

public void RunPostprocessor(OcrOutput res)
ParameterTypeDescription
resOcrOutputThe structured OCR result to process.

See Also


RunPostprocessor(List<string>)

Applies registered AI postprocessor to a list of recognized text strings.

public void RunPostprocessor(List<string> res)
ParameterTypeDescription
resList`1The list of recognized strings.

See Also