Code Monkey home page Code Monkey logo

Comments (8)

melax avatar melax commented on September 26, 2024

check the matrix first, since the above is not just non-orthonormal, its singular

from linalg.

lucieb avatar lucieb commented on September 26, 2024

Typo, I meant {{0,-1,0},{-1,0,0},{0,0,-1}} (row-ordered)

from linalg.

melax avatar melax commented on September 26, 2024

off topic: note that if the input has a negative determinant. its is a reflection. thus cant be expressed as just a rotation.

from linalg.

melax avatar melax commented on September 26, 2024

testing now I get the right answer:

	float3x3 m({ 0,-1,0 }, { -1,0,0 }, { 0,0,-1 });
	float4 q = quatfrommat(m);
	std::cout << q << std::endl; 

gives

-0.707107 0.707107 0 0

I'll test your copy of linalg.h to make sure its the same as mine.

from linalg.

melax avatar melax commented on September 26, 2024

OOps, just realized my test was using my quatfrommat() code instead. , looks like linalg's rotation_quat might be broken. in the meantime, here's some code that works.

inline float4 quatfrommat(const float3x3 &m)
{
	float magw = m[0][0] + m[1][1] + m[2][2];
	float magxy;
	float magzw;
	float3 pre;
	float3 prexy;
	float3 prezw;

	bool wvsz = magw  > m[2][2];
	magzw = wvsz ? magw : m[2][2];
	prezw = wvsz ? float3(1, 1, 1) : float3(-1, -1, 1);
	auto postzw = wvsz ? float4(0, 0, 0, 1) : float4(0, 0, 1, 0);

	bool xvsy = m[0][0] > m[1][1];
	magxy = xvsy ? m[0][0] : m[1][1];
	prexy = xvsy ? float3(1, -1, -1) : float3(-1, 1, -1);
	auto postxy = xvsy ? float4(1, 0, 0, 0) : float4(0, 1, 0, 0);

	bool zwvsxy = magzw > magxy;
	pre = zwvsxy ? prezw : prexy;
	auto post = zwvsxy ? postzw : postxy;

	float t = pre.x * m[0][0] + pre.y * m[1][1] + pre.z * m[2][2] + 1;
	float s = 1 / sqrt(t) / 2;
	float4 qp
	{
		(pre.y * m[1][2] - pre.z * m[2][1]) * s,
		(pre.z * m[2][0] - pre.x * m[0][2]) * s,
		(pre.x * m[0][1] - pre.y * m[1][0]) * s,
		t * s
	};
	return qmul(qp, post);
}

from linalg.

sgorsten avatar sgorsten commented on September 26, 2024

Good catch. This is a numerical stability issue in my implementation related to exact 90 degree rotations.

I've added a failing test case for now while I investigate my options. Stan's function works perfectly, to the best of my knowledge. I'd like to see if I can come up with something a little terser, but definitely make use of his function if you have an immediate need.

from linalg.

sgorsten avatar sgorsten commented on September 26, 2024

And it looks like we've got it! Do let me know if you encounter any other corner cases, and I apologize for the inconvenience.

from linalg.

melax avatar melax commented on September 26, 2024

wow that implementation is definitely clean and compact. very nice.
thx

from linalg.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.