homogenous-transformation

Determining a homogeneous affine transformation matrix from six points in 3D using Python

Determining a homogeneous affine transformation matrix from six points in 3D using Python Question: I am given the locations of three points: p1 = [1.0, 1.0, 1.0] p2 = [1.0, 2.0, 1.0] p3 = [1.0, 1.0, 2.0] and their transformed counterparts: p1_prime = [2.414213562373094, 5.732050807568877, 0.7320508075688767] p2_prime = [2.7677669529663684, 6.665063509461097, 0.6650635094610956] p3_prime = [2.7677669529663675, 5.665063509461096, …

Total answers: 5