EOCR::RecognizeWide

This method is deprecated.

DEPRECATED: use the EOCR::Recognize method instead as it performs similarly to this method, except it returns UTF-8 instead of wide characters. Achieves all processing phases (blob analysis, character segmentation and pattern recognition) in a single operation.

Namespace: Euresys::Open_eVision

[C++]

std::wstring RecognizeWide(
   EROIBW8* sourceImage,
   int maximumNumberOfCharacters,
   OEV_UINT32 classes
)

std::wstring RecognizeWide(
   EROIBW8* sourceImage,
   int maximumNumberOfCharacters,
   const std::vector<OEV_UINT32>& classes
)

Parameters

sourceImage

Pointer to the source image/ROI.

maximumNumberOfCharacters

Maximum number of characters to be read.

classes

Pointer to an array of logical mask obtained by combining the values of EOCRClass, to specify to what classes the character may belong. Each mask value in the array applies to the corresponding character.

Remarks

This method does the same as a sequence of EOCR::BuildObjects/EOCR::FindAllChars/EOCR::ReadText,

EOCR.RecognizeWide

This method is deprecated.

DEPRECATED: use the EOCR::Recognize method instead as it performs similarly to this method, except it returns UTF-8 instead of wide characters. Achieves all processing phases (blob analysis, character segmentation and pattern recognition) in a single operation.

Namespace: Euresys.Open_eVision

[C#]

string RecognizeWide(
   Euresys.Open_eVision.EROIBW8 sourceImage,
   int maximumNumberOfCharacters,
   uint classes
)

string RecognizeWide(
   Euresys.Open_eVision.EROIBW8 sourceImage,
   int maximumNumberOfCharacters,
   uint[] classes
)

Parameters

sourceImage

Pointer to the source image/ROI.

maximumNumberOfCharacters

Maximum number of characters to be read.

classes

Pointer to an array of logical mask obtained by combining the values of EOCRClass, to specify to what classes the character may belong. Each mask value in the array applies to the corresponding character.

Remarks

This method does the same as a sequence of EOCR::BuildObjects/EOCR::FindAllChars/EOCR::ReadText,