Table of contents
Swift
Objective-C

Result Methods

Method Description
getIntermediateResults Get intermediate results.

getIntermediateResults

Get intermediate results containing the original image, the colour clustered image, the binarized Image, contours, Lines, TextBlocks, etc.

IntermediateResult[] com.dynamsoft.dbr.BarcodeReader.getIntermediateResults() throws BarcodeReaderException 

Return Value
An array of IntermediateResult

Exception
BarcodeReaderException

Code Snippet

BarcodeReader.initLicense("YOUR-LICENSE-KEY");
BarcodeReader reader = BarcodeReader.getInstance();
if(reader != null)
{
  	PublicRuntimeSettings settings = reader.getRuntimeSettings();
  	settings.intermediateResultTypes = EnumIntermediateResultType.IRT_ORIGINAL_IMAGE | EnumIntermediateResultType.IRT_COLOUR_CLUSTERED_IMAGE |  EnumIntermediateResultType.IRT_COLOUR_CONVERTED_GRAYSCALE_IMAGE;
  	reader.updateRuntimeSettings(settings);
  	TextResult[] result = reader.decodeFile("your file path", "");
  	IntermediateResult[] irtResult = reader.getIntermediateResults();
    // add further process
    reader.recycle();
}

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: