#include <list>
#include <iostream>
#include <cv.h>
#include <cxcore.h>
#include <highgui.h>
#include "kdtree.h"
#include "sift.h"
#include "ldvSift.h"
#include "ldvSBA.h"
#include "ldvOverlap.h"
#include "ldvImgInfo.h"

Functions | |
| void | reclaimFeature (vector< ImgInfo > &vImgInfo, AllFeatureGlobal &allFeatureGlobal, Match &match) |
| Reassociates some features for matching. | |
| bool | computeAllSIFT (vector< ImgInfo > &vImgInfo) |
| Computes the SIFT features of a certain images. | |
| void | compareAllSIFT (vector< ImgInfo > &vImgInfo, Match &match, bool doOrphan) |
| Compare the SIFT features of an image to all the previously computed ones. | |
Variables | |
| float | LDV_SIFT_CONTR_THR = SIFT_CONTR_THR |
| SIFT threshold parameter for the contrast. | |
| void reclaimFeature | ( | vector< ImgInfo > & | vImgInfo, | |
| AllFeatureGlobal & | allFeatureGlobal, | |||
| Match & | match | |||
| ) |
Reassociates some features for matching.
| vImgInfo | vector containing information about the images | |
| allFeatureGlobal | all the FeatureGlobal | |
| match | contains all the information concerning matches |
References AllFeatureGlobal::distSq(), Match::getNReclaimed(), Match::increaseNReclaimed(), Match::initializeNReclaimed(), AllFeatureGlobal::merge(), and SIFT_RANSAC_THRES.

| bool computeAllSIFT | ( | vector< ImgInfo > & | vImgInfo | ) |
Computes the SIFT features of a certain images.
| vImgInfo | vector of Infos of the images to analyze. |
References LDV_SIFT_CONTR_THR, LDV_SIFT_INTVLS, and SIFT_RANSAC_THRES.
Compare the SIFT features of an image to all the previously computed ones.
| vImgInfo | Vector containing the info of all the images analyzed so far. | |
| match | contains all the information concerning matches | |
| doOrphan | if true, try to match orphans too |
References feature2::addMatch(), computeOverlap(), Match::getComparedSIFT(), getFeatInd(), Match::getNMatch(), Match::increaseMatch(), Match::initializeMatch(), KDTREE_BBF_MAX_NN_CHKS, NN_SQ_DIST_RATIO_THR, and Match::setComparedSIFT().

| float LDV_SIFT_CONTR_THR = SIFT_CONTR_THR |
SIFT threshold parameter for the contrast.
default threshold on keypoint contrast |D(x)|.
Referenced by computeAllSIFT().
1.5.6