LevMarFunc.h
Go to the documentation of this file.
1 #ifndef LEVMARFUNC_HEADER
2 #define LEVMARFUNC_HEADER
3 
4 template< class ScalarT >
5 struct LevMarFunc
6 {
7  virtual ScalarT operator()(const ScalarT* param) const = 0;
8  virtual void operator()(const ScalarT* param, ScalarT* gradient) const = 0;
9 };
10 
11 #endif
LevMarFunc
Definition: LevMarFunc.h:5
LevMarFunc::operator()
virtual ScalarT operator()(const ScalarT *param) const =0