Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #include "DefaultExtractor.h"
00012
00013
00014
00015
00016
00017 #include "ParallelSurfExtractor.h"
00018
00019
00020 #define THIS DefaultExtractor
00021
00022 using namespace std;
00023
00024 KeyPointExtractor* THIS::createInstance()
00025 {
00026 ExtractorType type = ExtractorType(0);
00027
00028 switch ( type )
00029 {
00030 case ExtParallelSurf:
00031 return new ParallelSurfExtractor();
00032
00033
00034
00035
00036 default:
00037
00038 return new ParallelSurfExtractor();
00039 }
00040 }
00041
00042 #undef THIS
00043