mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-12-01 07:59:05 +08:00
425d593ebe
git-svn-id: https://tesseract-ocr.googlecode.com/svn/trunk/trunk@2 d0cd1f9f-072b-0410-8dd7-cf729c803f20
107 lines
4.0 KiB
C++
107 lines
4.0 KiB
C++
/******************************************************************************
|
|
** Filename: mf.c
|
|
** Purpose: Micro-feature interface to flexible feature extractor.
|
|
** Author: Dan Johnson
|
|
** History: Thu May 24 09:08:38 1990, DSJ, Created.
|
|
**
|
|
** (c) Copyright Hewlett-Packard Company, 1988.
|
|
** Licensed under the Apache License, Version 2.0 (the "License");
|
|
** you may not use this file except in compliance with the License.
|
|
** You may obtain a copy of the License at
|
|
** http://www.apache.org/licenses/LICENSE-2.0
|
|
** Unless required by applicable law or agreed to in writing, software
|
|
** distributed under the License is distributed on an "AS IS" BASIS,
|
|
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
** See the License for the specific language governing permissions and
|
|
** limitations under the License.
|
|
******************************************************************************/
|
|
/**----------------------------------------------------------------------------
|
|
Include Files and Type Defines
|
|
----------------------------------------------------------------------------**/
|
|
#include "mfdefs.h"
|
|
#include "variables.h"
|
|
#include "mf.h"
|
|
#include "fxdefs.h"
|
|
#include "mfx.h"
|
|
#include <math.h>
|
|
|
|
/**----------------------------------------------------------------------------
|
|
Global Data Definitions and Declarations
|
|
----------------------------------------------------------------------------**/
|
|
/**----------------------------------------------------------------------------
|
|
Private Code
|
|
----------------------------------------------------------------------------**/
|
|
/*---------------------------------------------------------------------------*/
|
|
FEATURE_SET ExtractMicros(TBLOB *Blob, LINE_STATS *LineStats) {
|
|
/*
|
|
** Parameters:
|
|
** Blob blob to extract micro-features from
|
|
** LineStats statistics on text row blob is in
|
|
** Globals: none
|
|
** Operation: Call the old micro-feature extractor and then copy
|
|
** the features into the new format. Then deallocate the
|
|
** old micro-features.
|
|
** Return: Micro-features for Blob.
|
|
** Exceptions: none
|
|
** History: Wed May 23 18:06:38 1990, DSJ, Created.
|
|
*/
|
|
int NumFeatures;
|
|
MICROFEATURES Features, OldFeatures;
|
|
FEATURE_SET FeatureSet;
|
|
FEATURE Feature;
|
|
MICROFEATURE OldFeature;
|
|
|
|
OldFeatures = (MICROFEATURES) BlobMicroFeatures (Blob, LineStats);
|
|
NumFeatures = count (OldFeatures);
|
|
FeatureSet = NewFeatureSet (NumFeatures);
|
|
|
|
Features = OldFeatures;
|
|
iterate(Features) {
|
|
OldFeature = (MICROFEATURE) first (Features);
|
|
Feature = NewFeature (&MicroFeatureDesc);
|
|
ParamOf (Feature, MFDirection) = OrientationOf (OldFeature);
|
|
ParamOf (Feature, MFXPosition) = CenterX (OldFeature);
|
|
ParamOf (Feature, MFYPosition) = CenterY (OldFeature);
|
|
ParamOf (Feature, MFLength) = LengthOf (OldFeature);
|
|
|
|
// Bulge features should not be used
|
|
// anymore and are therefore set to 0.
|
|
// ParamOf (Feature, MFBulge1) = FirstBulgeOf (OldFeature);
|
|
// ParamOf (Feature, MFBulge2) = SecondBulgeOf (OldFeature);
|
|
ParamOf (Feature, MFBulge1) = 0.0f;
|
|
ParamOf (Feature, MFBulge2) = 0.0f;
|
|
|
|
AddFeature(FeatureSet, Feature);
|
|
}
|
|
FreeMicroFeatures(OldFeatures);
|
|
return (FeatureSet);
|
|
|
|
} /* ExtractMicros */
|
|
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
void InitMicroFXVars() {
|
|
/*
|
|
** Parameters: none
|
|
** Globals:
|
|
** ExtraPenaltyMagnitude controls for adjusting extra penalty
|
|
** ExtraPenaltyWeight
|
|
** ExtraPenaltyOrder
|
|
** Operation: Initialize the microfeature extractor variables that can
|
|
** be tuned without recompiling.
|
|
** Return: none
|
|
** Exceptions: none
|
|
** History: Thu May 24 10:50:46 1990, DSJ, Created.
|
|
*/
|
|
/*
|
|
float_variable (ExtraPenaltyMagnitude, "MFExtraPenaltyMag",
|
|
EXTRA_PENALTY_MAGNITUDE);
|
|
float_variable (ExtraPenaltyWeight, "MFExtraPenaltyWeight",
|
|
EXTRA_PENALTY_WEIGHT);
|
|
float_variable (ExtraPenaltyOrder, "MFExtraPenaltyOrder",
|
|
EXTRA_PENALTY_ORDER);
|
|
*/
|
|
InitMicroFxVars();
|
|
|
|
} /* InitMicroFXVars */
|