EOCR::Recognize
Achieves all processing phases (blob Synonym of object. analysis, character segmentation and pattern recognition) in a single operation.
Namespace: Euresys::Open_eVision
[C++]
std::string Recognize(
EROIBW8
* sourceImage,
int maximumNumberOfCharacters,
OEV_UINT32 classes
)
std::string Recognize(
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.Recognize
Achieves all processing phases (blob analysis, character segmentation and pattern recognition) in a single operation.
Namespace: Euresys.Open_eVision
[C#]
string Recognize(
EROIBW8
sourceImage,
int maximumNumberOfCharacters,
uint classes
)
string Recognize(
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
,
EOCR.Recognize
Achieves all processing phases (blob analysis, character segmentation and pattern recognition) in a single operation.
Module: open_evision
[Python]
Recognize(
sourceImage: EROIBW8
maximumNumberOfCharacters: int
classes: int
) -> str
Recognize(
sourceImage: EROIBW8
maximumNumberOfCharacters: int
classes: list[int]
) -> str
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
,