Drive Engine  1.0.0
Plateforme de reconstruction 3D
DefaultMatch.h
1 // Copyright (c) 2015. All rights reserved to DriveEngine Team.
2 
3 #pragma once
4 
5 #include "Public/Collections/IMatch.h"
6 #include "Public/Datatypes/IMatchPair.h"
7 #include "Public/ImplementationUtilities/ImplementationUtilities.h"
8 #include "Public/ImplementationUtilities/DictionnaryImplementationUtilities.h"
9 #include <map>
10 
11 namespace DriveEngine
12 {
18  class DefaultMatch : public IMatch
19  {
20  CONSTRUCTOR_H(IMatch, DefaultMatch);
21  DESTRUCTOR_H(DefaultMatch);
22 
23  GENERATE_DICTIONNARY_H(IImage, IFeature2D, IMatchPair);
24  };
25 }
The 2D feature datatype interface.
Definition: IFeature2D.h:22
The image datatype interface.
Definition: IImage.h:22
Default implementation of a match.
Definition: DefaultMatch.h:18
The match list interface.
Definition: IMatchPair.h:13
The match interface.
Definition: IMatch.h:21
Definition: DefaultCalibrationInfoList.h:12