From 5d8ede8c89eae7bacbb1d5449c06171bc8196bd5 Mon Sep 17 00:00:00 2001 From: Jimmy O'Regan Date: Sun, 10 Aug 2014 04:24:07 +0100 Subject: [PATCH] doxygenify --- classify/mf.cpp | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/classify/mf.cpp b/classify/mf.cpp index ad1ba285..60fff01c 100644 --- a/classify/mf.cpp +++ b/classify/mf.cpp @@ -32,22 +32,19 @@ /**---------------------------------------------------------------------------- Private Code ----------------------------------------------------------------------------**/ -/*---------------------------------------------------------------------------*/ +/** + * Call the old micro-feature extractor and then copy + * the features into the new format. Then deallocate the + * old micro-features. + * @param Blob blob to extract micro-features from + * @param denorm control parameter to feature extractor. + * @return Micro-features for Blob. + * @note Exceptions: none + * @note History: Wed May 23 18:06:38 1990, DSJ, Created. + */ FEATURE_SET ExtractMicros(TBLOB *Blob, const DENORM& bl_denorm, const DENORM& cn_denorm, const INT_FX_RESULT_STRUCT& fx_info) { -/* - ** Parameters: - ** Blob blob to extract micro-features from - ** denorm control parameter to feature extractor. - ** 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;