⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mf.cpp

📁 一OCR的相关资料。.希望对研究OCR的朋友有所帮助.
💻 CPP
字号:
/****************************************************************************** **	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 */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -