Tesseract  3.02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
extract.h File Reference
#include "featdefs.h"
#include <stdio.h>

Go to the source code of this file.

Functions

CHAR_DESC ExtractBlobFeatures (const FEATURE_DEFS_STRUCT &FeatureDefs, const DENORM &denorm, TBLOB *Blob)
 
void ExtractorStub ()
 

Function Documentation

CHAR_DESC ExtractBlobFeatures ( const FEATURE_DEFS_STRUCT FeatureDefs,
const DENORM denorm,
TBLOB Blob 
)

Extract features from Blob by calling the feature extractor which is currently being used. This routine simply provides a high level interface to feature extraction. The caller can extract any type of features from a blob without understanding any lower level details.

Parameters
FeatureDefsdefinitions of feature types/extractors
denormNormalize/denormalize to access original image
Blobblob to extract features from
Returns
The character features extracted from Blob.
Note
Exceptions: none
History: Sun Jan 21 10:07:28 1990, DSJ, Created.

Definition at line 51 of file extract.cpp.

52  {
53  return (ExtractFlexFeatures(FeatureDefs, Blob, denorm));
54 } /* ExtractBlobFeatures */
CHAR_DESC ExtractFlexFeatures(const FEATURE_DEFS_STRUCT &FeatureDefs, TBLOB *Blob, const DENORM &denorm)
Definition: flexfx.cpp:31
void ExtractorStub ( )