2019-08-23 07:59:30 -0600 | received badge | ● Famous Question (source) |
2019-06-11 00:59:30 -0600 | received badge | ● Notable Question (source) |
2019-03-31 14:02:56 -0600 | received badge | ● Popular Question (source) |
2017-01-22 03:39:28 -0600 | received badge | ● Editor (source) |
2017-01-22 03:02:24 -0600 | received badge | ● Scholar (source) |
2017-01-21 18:03:27 -0600 | asked a question | estimateAffinePartial2D and estimateAffine2D Hi all, Can anyone explain me what is the difference between these two: estimateAffinePartial2D and estimateAffine2D? Are they better/different from estimateRigidTransform? They are seems to be new kids in the block... My findings: estimateAffinePartial2D and estimateAffine2D return the same results as estimateRigidTransform for float input values BUT if we use int points something weird is returned and results: estimateRigidTransform false: [0.7100000000000001, 0.7100000000000001, 0; -0.7100000000000001, 0.7100000000000001, 0] estimateRigidTransform true:[0.7100000000000001, 0.7100000000000001, 0; -0.7100000000000001, 0.7100000000000001, 0] estimateAffine2D[1, -0, -0; -0, 1, -0] estimateAffinePartial2D[1, -0, 0; 0, 1, 0] |