text

OCRHMMDecoder

constructors

constructor ( classifier : OCRHMMClassifier , vocabulary : string , transitionPropabilitiesTable : Mat , emissionPropabilitiesTable : Mat , mode : int = OCR_DECODER_VITERBI )

functions

run

Result : string
run ( img : Mat , mask : Mat = noArray() , componentLevel : int = 0 ) : Result
runAsync ( img : Mat , mask : Mat = noArray() , componentLevel : int = 0 ) : Promise < Result >
runAsync ( img : Mat , mask : Mat = noArray() , componentLevel : int = 0 , ...opts , callback ( err : Error , Result res )) : void

runWithInfo

Result = {
outputText : string ,
rects : Rect [] ,
words : string [] ,
confidences : number []
}
runWithInfo ( img : Mat , mask : Mat = noArray() , componentLevel : int = 0 ) : Result
runWithInfoAsync ( img : Mat , mask : Mat = noArray() , componentLevel : int = 0 ) : Promise < Result >
runWithInfoAsync ( img : Mat , mask : Mat = noArray() , componentLevel : int = 0 , ...opts , callback ( err : Error , Result res )) : void