Backproject
BackProjectAllPointsOperation.h
1 
2 
3 #ifndef BACKPROJECT_BACKPROJECTALLPOINTSOPERATION_H
4 #define BACKPROJECT_BACKPROJECTALLPOINTSOPERATION_H
5 
6 
7 #include "ContextOperation.h"
8 
13 {
14  virtual bool IsPossible(const Context &context) const;
15 
16  virtual std::string getDescription() const;
17 
18  virtual std::string Perform(Context &context) const;
19 };
20 
21 
22 #endif //BACKPROJECT_BACKPROJECTALLPOINTSOPERATION_H
this operation can backproject all points in a context to its images and display the result to the us...
Definition: BackProjectAllPointsOperation.h:12
Represents an operation that can be performed based on the 'Context' (This is an abstract class...
Definition: ContextOperation.h:19
A context; keeps track of overal program state in a way that is easily accessed by multiple functions...
Definition: Context.h:19