Least squares function

This commit is contained in:
hodasemi 2018-06-20 11:18:17 +02:00
parent a3ef9b44fc
commit f931a943ea
3 changed files with 832 additions and 564 deletions

View file

@ -102,30 +102,72 @@ float angle(const Vec3 &v1, const Vec3 &v2)
return std::acos(d / (v1_length * v2_length)); return std::acos(d / (v1_length * v2_length));
} }
/* float a(float rcos, float x)
fn angle(v1
: cgmath::Vector2<f32>)
->f32
{ {
let dot = v1.x * DEFAULT_DIRECTION.x + v1.y * DEFAULT_DIRECTION.y; return rcos + x * x * (1 - rcos);
}
let v1_len = ((v1.x * v1.x) + (v1.y * v1.y)).sqrt();
let v2_len = ((DEFAULT_DIRECTION.x * DEFAULT_DIRECTION.x) + (DEFAULT_DIRECTION.y * DEFAULT_DIRECTION.y)) float b(float rcos, float rsin, float x, float y, float z)
.sqrt(); {
return -z * rsin + y * x * (1 - rcos);
let angle = (dot / (v1_len * v2_len)).acos(); }
if float c(float rcos, float rsin, float x, float y, float z)
v1.x < 0.0 {
{ return y * rsin + z * x * (1 - rcos);
-angle }
}
else float d(float rcos, float rsin, float x, float y, float z)
{ {
angle return z * rsin + x * y * (1 - rcos);
} }
float e(float rcos, float y)
{
return rcos + y * y * (1 - rcos);
}
float f(float rcos, float rsin, float x, float y, float z)
{
return -x * rsin + z * y * (1 - rcos);
}
float g(float rcos, float rsin, float x, float y, float z)
{
return -y * rsin + x * z * (1 - rcos);
}
float h(float rcos, float rsin, float x, float y, float z)
{
return x * rsin + y * z * (1 - rcos);
}
float j(float rcos, float z)
{
rcos + z *z *(1 - rcos);
}
float AtomicRotationTransform::least_squares(const Vec3 &local_vector, const Vec3 &target, float r)
{
float angler = r * PI / 180.0f;
float rcos = cos(angler);
float rsin = sin(angler);
float x = axis.x();
float y = axis.y();
float z = axis.z();
float xs = a(rcos, x) * local_vector.x() + b(rcos, rsin, x, y, z) * local_vector.y() + c(rcos, rsin, x, y, z) * local_vector.z();
float ys = d(rcos, rsin, x, y, z) * local_vector.x() + e(rcos, y) * local_vector.y() + f(rcos, rsin, x, y, z) * local_vector.z();
float zs = g(rcos, rsin, x, y, z) * local_vector.x() + h(rcos, rsin, x, y, z) * local_vector.y() + j(rcos, z);
float x_diff = xs - target.x();
float y_diff = ys - target.y();
float z_diff = zs - target.z();
float squares = x_diff * x_diff + y_diff * y_diff + z_diff * z_diff;
} }
*/
void AtomicRotationTransform::optimize_value(const Vec3 &local_vector, const Vec3 &target, bool inverse) void AtomicRotationTransform::optimize_value(const Vec3 &local_vector, const Vec3 &target, bool inverse)
{ {
@ -133,7 +175,9 @@ void AtomicRotationTransform::optimize_value(const Vec3 &local_vector, const Vec
// optimize this that: target = this->calculate_matrix() * local_vector; // optimize this that: target = this->calculate_matrix() * local_vector;
double result = angle(local_vector, target); float first_guess = angle(local_vector, target);
double result = least_squares(local_vector, target, first_guess);
if (inverse) if (inverse)
result = -result; result = -result;

View file

@ -1,5 +1,5 @@
// This source code is property of the Computer Graphics and Visualization // This source code is property of the Computer Graphics and Visualization
// chair of the TU Dresden. Do not distribute! // chair of the TU Dresden. Do not distribute!
// Copyright (C) CGV TU Dresden - All Rights Reserved // Copyright (C) CGV TU Dresden - All Rights Reserved
// //
#pragma once #pragma once
@ -14,30 +14,30 @@
class Transform class Transform
{ {
public: public:
//Calculates a matrix that represents the current transform. //Calculates a matrix that represents the current transform.
virtual Mat4 calculate_matrix() = 0; virtual Mat4 calculate_matrix() = 0;
//Optimizes the current value, such that T * local_vector = target in a least-squares sense. //Optimizes the current value, such that T * local_vector = target in a least-squares sense.
virtual void optimize_value(const Vec3& local_vector, const Vec3& target) = 0; virtual void optimize_value(const Vec3 &local_vector, const Vec3 &target) = 0;
}; };
class StaticTransform : public Transform class StaticTransform : public Transform
{ {
public: public:
StaticTransform(const Mat4& t) : t(t) {} StaticTransform(const Mat4 &t) : t(t) {}
Mat4 calculate_matrix() { return t; } Mat4 calculate_matrix() { return t; }
void optimize_value(const Vec3& local_vector, const Vec3& target) { } void optimize_value(const Vec3 &local_vector, const Vec3 &target) {}
private: private:
Mat4 t; Mat4 t;
}; };
//Represents an arbitrary affine transform with exactly one scalar parameter //Represents an arbitrary affine transform with exactly one scalar parameter
class AtomicTransform : public cgv::gui::control_provider<double>, public Transform class AtomicTransform : public cgv::gui::control_provider<double>, public Transform
{ {
public: public:
//Sets the limits of the scalar parameter //Sets the limits of the scalar parameter
void set_limits(double lower, double upper); void set_limits(double lower, double upper);
@ -45,24 +45,24 @@ public:
const double get_upper_limit() const; const double get_upper_limit() const;
//Sets the current scalar parameter. Ignore ud. //Sets the current scalar parameter. Ignore ud.
virtual void set_value(const double& value, void* ud = nullptr); virtual void set_value(const double &value, void *ud = nullptr);
//Gets the current scalar parameter. Ignore ud. //Gets the current scalar parameter. Ignore ud.
const double get_value(void* ud = nullptr) const; const double get_value(void *ud = nullptr) const;
//Calculates a matrix that represents the current transform. //Calculates a matrix that represents the current transform.
virtual Mat4 calculate_matrix() = 0; virtual Mat4 calculate_matrix() = 0;
//Optimizes the current value, such that T * local_vector = target in a least-squares sense. //Optimizes the current value, such that T * local_vector = target in a least-squares sense.
virtual void optimize_value(const Vec3& local_vector, const Vec3& target, bool inverse = false) = 0; virtual void optimize_value(const Vec3 &local_vector, const Vec3 &target, bool inverse = false) = 0;
virtual void optimize_value(const Vec3& local_vector, const Vec3& target) { optimize_value(local_vector, target, false); } virtual void optimize_value(const Vec3 &local_vector, const Vec3 &target) { optimize_value(local_vector, target, false); }
//Draws an indicator that visualizes the transform, including its limits. //Draws an indicator that visualizes the transform, including its limits.
virtual void drawIndicator(float size) = 0; virtual void drawIndicator(float size) = 0;
//Draws an indicator that visualizes the current scalar parameter. //Draws an indicator that visualizes the current scalar parameter.
virtual void drawActualIndicator(float size) = 0; virtual void drawActualIndicator(float size) = 0;
std::string get_name() const; std::string get_name() const;
//Signal that is raised whenever the scalar parameter changes //Signal that is raised whenever the scalar parameter changes
cgv::signal::signal<double> changed_signal; cgv::signal::signal<double> changed_signal;
@ -73,7 +73,7 @@ public:
//Get the order in which the transform is specified in the animation file. //Get the order in which the transform is specified in the animation file.
int get_index_in_amc() const { return index_in_amc; } int get_index_in_amc() const { return index_in_amc; }
protected: protected:
double lower_limit, upper_limit; double lower_limit, upper_limit;
double value; double value;
std::string title; std::string title;
@ -82,79 +82,82 @@ protected:
class AtomicRotationTransform : public AtomicTransform class AtomicRotationTransform : public AtomicTransform
{ {
public: public:
AtomicRotationTransform(Vec3 axis); AtomicRotationTransform(Vec3 axis);
virtual Mat4 calculate_matrix(); virtual Mat4 calculate_matrix();
virtual void optimize_value(const Vec3& local_vector, const Vec3& target, bool inverse = false); virtual void optimize_value(const Vec3 &local_vector, const Vec3 &target, bool inverse = false);
virtual void drawIndicator(float size); virtual void drawIndicator(float size);
virtual void drawActualIndicator(float size); virtual void drawActualIndicator(float size);
protected: private:
virtual float least_squares(const Vec3 &local_vector, const Vec3 &target, float r);
protected:
Vec3 axis; Vec3 axis;
}; };
class AtomicXRotationTransform : public AtomicRotationTransform class AtomicXRotationTransform : public AtomicRotationTransform
{ {
public: public:
AtomicXRotationTransform() : AtomicRotationTransform(Vec3(1, 0, 0)) { title = "X-Rotation"; } AtomicXRotationTransform() : AtomicRotationTransform(Vec3(1, 0, 0)) { title = "X-Rotation"; }
}; };
class AtomicYRotationTransform : public AtomicRotationTransform class AtomicYRotationTransform : public AtomicRotationTransform
{ {
public: public:
AtomicYRotationTransform() : AtomicRotationTransform(Vec3(0, 1, 0)) { title = "Y-Rotation"; } AtomicYRotationTransform() : AtomicRotationTransform(Vec3(0, 1, 0)) { title = "Y-Rotation"; }
}; };
class AtomicZRotationTransform : public AtomicRotationTransform class AtomicZRotationTransform : public AtomicRotationTransform
{ {
public: public:
AtomicZRotationTransform() : AtomicRotationTransform(Vec3(0, 0, 1)) { title = "Z-Rotation"; } AtomicZRotationTransform() : AtomicRotationTransform(Vec3(0, 0, 1)) { title = "Z-Rotation"; }
}; };
class AtomicTranslationTransform : public AtomicTransform class AtomicTranslationTransform : public AtomicTransform
{ {
public: public:
AtomicTranslationTransform(int dim); AtomicTranslationTransform(int dim);
virtual Mat4 calculate_matrix(); virtual Mat4 calculate_matrix();
virtual void optimize_value(const Vec3& local_vector, const Vec3& target, bool inverse = false); virtual void optimize_value(const Vec3 &local_vector, const Vec3 &target, bool inverse = false);
virtual void drawIndicator(float size) { }; virtual void drawIndicator(float size){};
virtual void drawActualIndicator(float size) { }; virtual void drawActualIndicator(float size){};
private: private:
int dim; int dim;
}; };
class AtomicXTranslationTransform : public AtomicTranslationTransform class AtomicXTranslationTransform : public AtomicTranslationTransform
{ {
public: public:
AtomicXTranslationTransform() : AtomicTranslationTransform(0) { title = "X-Translation"; } AtomicXTranslationTransform() : AtomicTranslationTransform(0) { title = "X-Translation"; }
}; };
class AtomicYTranslationTransform : public AtomicTranslationTransform class AtomicYTranslationTransform : public AtomicTranslationTransform
{ {
public: public:
AtomicYTranslationTransform() : AtomicTranslationTransform(1) { title = "Y-Translation"; } AtomicYTranslationTransform() : AtomicTranslationTransform(1) { title = "Y-Translation"; }
}; };
class AtomicZTranslationTransform : public AtomicTranslationTransform class AtomicZTranslationTransform : public AtomicTranslationTransform
{ {
public: public:
AtomicZTranslationTransform() : AtomicTranslationTransform(2) { title = "Z-Translation"; } AtomicZTranslationTransform() : AtomicTranslationTransform(2) { title = "Z-Translation"; }
}; };
class InverseTransform : public Transform class InverseTransform : public Transform
{ {
public: public:
InverseTransform(std::shared_ptr<AtomicTransform> t) : t(t) { } InverseTransform(std::shared_ptr<AtomicTransform> t) : t(t) {}
Mat4 calculate_matrix() { return cgv::math::inv(t->calculate_matrix()); } Mat4 calculate_matrix() { return cgv::math::inv(t->calculate_matrix()); }
void optimize_value(const Vec3& local_vector, const Vec3& target) void optimize_value(const Vec3 &local_vector, const Vec3 &target)
{ {
t->optimize_value(local_vector, target, true); t->optimize_value(local_vector, target, true);
} }
private: private:
std::shared_ptr<AtomicTransform> t; std::shared_ptr<AtomicTransform> t;
}; };

File diff suppressed because it is too large Load diff