Skip to main content
. 2019 Sep 12;19(18):3944. doi: 10.3390/s19183944
Algorithm 1 Progressive refinement of 6DoF poses {Pi}i=1N for sequence of frames {fi}i=1N by optimizing pose graph G.
  • 1:

    for d=2 to N2 do

  • 2:

      for i=1 to N do

  • 3:

       j:=(i+d)modN

  • 4:

       Tij:=Pj1·Pi

  • 5:

       oij:=OVERLAP(fi,fj,Tij)

  • 6:

       if oij>to then

  • 7:

        Tij,e:=CLSREGISTARTION(fi,fj,Tij,oij)

  • 8:

        if eMEDIANRANGE(fi)·tr+ta then

  • 9:

         G:=G{EDGE(i,j,Tij)}

  • 10:

        end if

  • 11:

       end if

  • 12:

      end for

  • 13:

      P1,P2,,PN=OPTIMIZE(G)

  • 14:

    end for

  • 15:

    return P1,P2,,PN