#include <algorithm>
#include <dirent.h>
#include <cctype>
#include <fstream>
#include <string>
#include <set>
#include <QtGui/QtGui>
#include <QtGui/QApplication>
#include <QtGui/QMainWindow>
#include "ldvFile.h"
#include "ldvImgInfo.h"
#include "ldvSBA.h"

Classes | |
| class | PossibleExtension |
| Simple class storing the possible extensions. More... | |
Functions | |
| bool | isImagePath (const string &imagePath) |
| Returns yes if the string is the path of an image (only based on the extension) (basically true if jpg, jpeg, tif, tiff, png, bmp or the capitalized version). | |
| void | getLine (ifstream *file, string &sOut) |
| Set the image to which a feature belong to. | |
| void | writeHomographyToFile (string outputPath, const vector< ImgInfo > &vImgInfo) |
| Write the computed homographies for each image to a file. | |
| void | removeImageTrace (AllFeatureGlobal &allFeatureGlobal, vector< ImgInfo > &vImgInfo, int imgInd, Match &match) |
| Remove any trace of an image. | |
| bool isImagePath | ( | const string & | imagePath | ) |
Returns yes if the string is the path of an image (only based on the extension) (basically true if jpg, jpeg, tif, tiff, png, bmp or the capitalized version).
| imagePath | path to check |
Referenced by ImageFolder::ImageFolder(), and ImageFolder::scan().

| void getLine | ( | ifstream * | file, | |
| string & | sOut | |||
| ) |
Set the image to which a feature belong to.
| file | file read from | |
| sOut | string where the line will be stored |
Referenced by ImageFolder::ImageFolder().

| void writeHomographyToFile | ( | string | outputPath, | |
| const vector< ImgInfo > & | vImgInfo | |||
| ) |
Write the computed homographies for each image to a file.
Parse the setting file.
| outputPath | path of the output folder | |
| vImgInfo | vector containing info about the current images |
References Distortion::kap1.
| void removeImageTrace | ( | AllFeatureGlobal & | allFeatureGlobal, | |
| vector< ImgInfo > & | vImgInfo, | |||
| int | imgInd, | |||
| Match & | match | |||
| ) |
Remove any trace of an image.
| allFeatureGlobal | al the FeatureGlobal | |
| vImgInfo | vector containing info about the current images | |
| imgInd | id of the image to remove | |
| match | contains all the information concerning matches |
References Match::removeImg().
Referenced by ImageFolder::scan().


1.5.6