aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/lipi-toolkit/3rdparty/lipi-toolkit/src/reco/shaperec/featureextractor/pointfloat/PointFloatShapeFeatureExtractor.h
blob: 59f14e20cfb686703f9d01e0c5d64c6a36e25df0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*****************************************************************************************
* Copyright (c) 2006 Hewlett-Packard Development Company, L.P.
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
* Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
* PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
* OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*****************************************************************************************/

/************************************************************************
 * SVN MACROS
 *
 * $LastChangedDate: 2009-07-01 16:41:37 +0530 (Wed, 01 Jul 2009) $
 * $Revision: 783 $
 * $Author: mnab $
 *
 ************************************************************************/
#ifndef __POINTFLOATSHAPEFEATUREEXTRACTOR_H
#define __POINTFLOATSHAPEFEATUREEXTRACTOR_H

#define SUPPORTED_MIN_VERSION "4.0.0"
#define FEATEXTR_POINTFLOAT_DEF_SIZE 10

#include "LTKShapeFeatureExtractor.h"


class PointFloatShapeFeatureExtractor : public LTKShapeFeatureExtractor
{
public:
     /** @brief Constructor for the PointFloata feature extractor
      * Gets the cfg file path from the contorInfo
      * Reads the cfg variables and poputlates the member variables
      * @param controlInfo: LTKControlInfo : The control information
      * @return no return value as it is a constructor
      */

     PointFloatShapeFeatureExtractor(const LTKControlInfo& controlInfo);

    int extractFeatures(const LTKTraceGroup& inTraceGroup,
                          vector<LTKShapeFeaturePtr>& outFeatureVec);

    LTKShapeFeaturePtr getShapeFeatureInstance();


    int convertFeatVecToTraceGroup(const vector<LTKShapeFeaturePtr>& shapeFeature,
                                          LTKTraceGroup& outTraceGroup);

private:
     /** @brief reads the cfg file and sets the member variables
     * @param cfgFilePath : const string&: The path of the cfg file to be opened
     * @return int : The sucess or failure of the function
     */
     //int readConfigFile(const string& cfgFilePath);
     int readConfig(const string& cfgFilePath);

};


#endif
//#ifndef __POINTFLOATSHAPEFEATUREEXTRACTOR_H