Debut Tests ASIFT + Essai VISP simplifié
This commit is contained in:
parent
a41f1ba991
commit
fbafece5af
1339 changed files with 153161 additions and 56 deletions
17
ASIFT_tests/demo_ASIFT_src/libMatch/match.h
Executable file
17
ASIFT_tests/demo_ASIFT_src/libMatch/match.h
Executable file
|
@ -0,0 +1,17 @@
|
|||
// Authors: Unknown. Please, if you are the author of this file, or if you
|
||||
// know who are the authors of this file, let us know, so we can give the
|
||||
// adequate credits and/or get the adequate authorizations.
|
||||
|
||||
#ifndef MATCH_H
|
||||
#define MATCH_H
|
||||
|
||||
#include <vector>
|
||||
|
||||
struct Match {
|
||||
float x1, y1, x2, y2;
|
||||
};
|
||||
|
||||
bool loadMatch(const char* nameFile, std::vector<Match>& match);
|
||||
bool saveMatch(const char* nameFile, const std::vector<Match>& match);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue