2007-03-08 04:03:40 +08:00
|
|
|
/******************************************************************************
|
|
|
|
** 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 "mf.h"
|
2010-11-24 02:34:14 +08:00
|
|
|
|
|
|
|
#include "featdefs.h"
|
|
|
|
#include "mfdefs.h"
|
2007-03-08 04:03:40 +08:00
|
|
|
#include "mfx.h"
|
2010-11-24 02:34:14 +08:00
|
|
|
|
2007-03-08 04:03:40 +08:00
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
/**----------------------------------------------------------------------------
|
|
|
|
Global Data Definitions and Declarations
|
|
|
|
----------------------------------------------------------------------------**/
|
|
|
|
/**----------------------------------------------------------------------------
|
|
|
|
Private Code
|
|
|
|
----------------------------------------------------------------------------**/
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2013-09-23 23:15:06 +08:00
|
|
|
FEATURE_SET ExtractMicros(TBLOB *Blob, const DENORM& bl_denorm,
|
|
|
|
const DENORM& cn_denorm,
|
|
|
|
const INT_FX_RESULT_STRUCT& fx_info) {
|
2007-03-08 04:03:40 +08:00
|
|
|
/*
|
|
|
|
** Parameters:
|
|
|
|
** Blob blob to extract micro-features from
|
2010-11-24 02:34:14 +08:00
|
|
|
** denorm control parameter to feature extractor.
|
2007-03-08 04:03:40 +08:00
|
|
|
** 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;
|
|
|
|
|
2013-09-23 23:15:06 +08:00
|
|
|
OldFeatures = (MICROFEATURES)BlobMicroFeatures(Blob, bl_denorm, cn_denorm,
|
|
|
|
fx_info);
|
2009-07-11 10:17:36 +08:00
|
|
|
if (OldFeatures == NULL)
|
|
|
|
return NULL;
|
2007-03-08 04:03:40 +08:00
|
|
|
NumFeatures = count (OldFeatures);
|
|
|
|
FeatureSet = NewFeatureSet (NumFeatures);
|
|
|
|
|
|
|
|
Features = OldFeatures;
|
|
|
|
iterate(Features) {
|
2007-05-16 09:40:09 +08:00
|
|
|
OldFeature = (MICROFEATURE) first_node (Features);
|
2007-03-08 04:03:40 +08:00
|
|
|
Feature = NewFeature (&MicroFeatureDesc);
|
2009-03-11 03:03:06 +08:00
|
|
|
Feature->Params[MFDirection] = OldFeature[ORIENTATION];
|
|
|
|
Feature->Params[MFXPosition] = OldFeature[XPOSITION];
|
|
|
|
Feature->Params[MFYPosition] = OldFeature[YPOSITION];
|
|
|
|
Feature->Params[MFLength] = OldFeature[MFLENGTH];
|
2007-03-08 04:03:40 +08:00
|
|
|
|
2010-11-24 02:34:14 +08:00
|
|
|
// Bulge features are deprecated and should not be used. Set to 0.
|
2009-03-11 03:03:06 +08:00
|
|
|
Feature->Params[MFBulge1] = 0.0f;
|
|
|
|
Feature->Params[MFBulge2] = 0.0f;
|
2010-11-24 02:34:14 +08:00
|
|
|
|
2012-03-03 01:31:24 +08:00
|
|
|
#ifndef _WIN32
|
2009-07-11 10:17:36 +08:00
|
|
|
// Assert that feature parameters are well defined.
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < Feature->Type->NumParams; i++) {
|
2012-10-09 09:28:37 +08:00
|
|
|
ASSERT_HOST(!isnan(Feature->Params[i]));
|
2009-07-11 10:17:36 +08:00
|
|
|
}
|
|
|
|
#endif
|
2010-11-24 02:34:14 +08:00
|
|
|
|
2007-03-08 04:03:40 +08:00
|
|
|
AddFeature(FeatureSet, Feature);
|
|
|
|
}
|
|
|
|
FreeMicroFeatures(OldFeatures);
|
2012-10-09 09:28:37 +08:00
|
|
|
return FeatureSet;
|
2007-03-08 04:03:40 +08:00
|
|
|
} /* ExtractMicros */
|