Drive Engine  1.0.0
Plateforme de reconstruction 3D
IFeaturesDetection.h
1 // Copyright (c) 2015. All rights reserved to DriveEngine Team.
2 
3 #pragma once
4 
5 #include "IModule.h"
6 #include "Datatypes/IImage.h"
7 #include "Collections/IPosition2DList.h"
8 
9 namespace DriveEngine
10 {
14  class IFeaturesDetection : public IModule
15  {
16  public:
30  virtual IPosition2DList* Detect(const IImage &image) = 0;
31  };
32 }
The image datatype interface.
Definition: IImage.h:22
Interface of list of 2D position for a specific image.
Definition: IPosition2DList.h:18
The features detection interface. It detects the position of features on an image.
Definition: IFeaturesDetection.h:14
The module interface. Every kind of algorithm (and algorithm) used in the reconstruction pipeline mus...
Definition: IModule.h:11
Definition: DefaultCalibrationInfoList.h:12
virtual IPosition2DList * Detect(const IImage &image)=0
Detect the position of the features on an image.