LevMarFunc.h
Go to the documentation of this file.
1#ifndef LEVMARFUNC_HEADER
2#define LEVMARFUNC_HEADER
3
4template <class ScalarT>
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
virtual ScalarT operator()(const ScalarT *param) const =0
virtual void operator()(const ScalarT *param, ScalarT *gradient) const =0