vrcore  0.45
visuReal Messkern
 All Classes Files Functions Variables
BCfunctNormal.h
1 #pragma once
2 
3 #include <opencv2/opencv.hpp>
4 
6 class BCfunctNormal {
7 public:
8  BCfunctNormal(void);
9  BCfunctNormal(double first, double second, double third, double fourth);
10  ~BCfunctNormal(void);
11 
12  double evaluate(double var1, double var2, double var3); // var1 = K_1, var2 = K_2, var3 = K_3
13  static cv::Vec3d toVec3d(BCfunctNormal* functions, const cv::Vec3d& v);
14 private:
15  // Koeffizienten
16  double first_; // F_1
17  double second_; // F_2
18  double third_; // F_3
19  double fourth_; // r^2
20 };
Die Funktion, über die per Newtonverfahren der Mittelpunkt der zu den Glaesern gehörenden Kugel ermit...
Definition: BCfunctNormal.h:6