I have some planes in 3D space, which in theory should all intersect at the same line.
Each plane is calculated by taking 3 measured points. However there is some error in the measurement of these points.
So in practice, the planes do not all intersect at the same line.
How can I get the "average" intersection line for all these planes?
I could just intersect each plane with each other plane, and average the lines. However, when two planes have almost the same orientation, a small error in their measurements will result in a huge error in their calculated intersection. So I would be magnifying the measurement error when calculating the average intersection this way.
Is there a fairer way to calculate the common intersection line?