flm8620 / Calib3DTools

3 stars 1 forks source link

Order of "Distortion" not the same #6

Closed flm8620 closed 9 years ago

flm8620 commented 9 years ago

Order of "Distortion" isn't the same in mainWindow and algorithm EVEN IF WE INVERSE THE ORDER. mainwindow: a0 * x^0_y^0 a1 * x^1_y^0 a2 * x^0_y^1 a3 * x^2_y^0 a4 * x^1_y^1 a5 * x^0_y^2 a6 * x^3_y^0 a7 * x^2_y^1 a8 * x^1_y^2 a9 * x^0_y^3

algorithm: x^3_y^0 x^2_y^1 x^1_y^2 x^0_y^3 x^2_y^0 x^1_y^1 x^0_y^2 x^1_y^0 x^0_y^1 x^0_y^0

inverse algorithm: x^0_y^0 x^0_y^1 x^1_y^0 x^0_y^2 x^1_y^1 x^2_y^0 x^0_y^3 x^1_y^2 x^2_y^1 x^3_y^0