Triangulation & Direct linear transform

后端 未结 2 879
-上瘾入骨i
-上瘾入骨i 2020-12-31 13:49

Following Hartley/Zisserman\'s Multiview Geometery, Algorithm 12: The optimal triangulation method (p318), I got the corresponding image points xhat1 and xhat2 (step 10). In

2条回答
  •  Happy的楠姐
    2020-12-31 14:41

    A(1,:) = A(1,:)/norm(A(1,:));
    A(2,:) = A(2,:)/norm(A(2,:));
    A(3,:) = A(3,:)/norm(A(3,:));
    A(4,:) = A(4,:)/norm(A(4,:));
    

    Could be simplified as A = normr(A).

提交回复
热议问题