|
@@ -50,8 +50,8 @@ int main (int argc, char **argv)
|
|
|
LocalFeatureRepresentation *cSIFT = new LFColorSande ( conf, section );
|
|
|
LocalFeature *lSIFT = new LocalFeatureLFInterface(conf, cSIFT);
|
|
|
|
|
|
- LocalFeature *oSIFT = new LocalFeatureSift (conf);
|
|
|
- //LocalFeatureOpponnentSift *oSIFT = new LocalFeatureOpponnentSift (conf);
|
|
|
+ //LocalFeature *oSIFT = new LocalFeatureSift (conf);
|
|
|
+ LocalFeatureOpponnentSift *oSIFT = new LocalFeatureOpponnentSift (conf);
|
|
|
|
|
|
VVector features1;
|
|
|
VVector features2;
|
|
@@ -60,8 +60,6 @@ int main (int argc, char **argv)
|
|
|
lSIFT->getDescriptors( img, positions, features1 );
|
|
|
//showImage(cimg);
|
|
|
oSIFT->getDescriptors( img, positions, features2 );
|
|
|
-
|
|
|
-
|
|
|
cout << "f1.size: " << features1.size() << " f2.size: " << features2.size() << " p.size() " << positions.size() << endl;
|
|
|
|
|
|
|