vrcore  0.45
visuReal Messkern
 All Classes Files Functions Variables
functionNormal.h
Go to the documentation of this file.
1 #pragma once
2 
5 #include <opencv2/opencv.hpp>
6 
9 public:
10  functionNormal(void);
11  functionNormal(double first, double second, double third, double fourth);
12  ~functionNormal(void);
13 
14  double evaluate(double var1, double var2);
15  static cv::Vec3d toVec3d(functionNormal* functions, const cv::Vec3d& values);
16 
17 private:
18  // Koeffizienten
19  double first_;
20  double second_;
21  double third_;
22  double fourth_;
23 };
24 
Die Funktion, für die das Newtonverfahren durchgeführt wird.
Definition: functionNormal.h:8