Skip to main content
. 2020 Sep 7;20(18):5098. doi: 10.3390/s20185098
Algorithm 1 Object Localisation
  • 1:

    From top view camera

  • 2:

    [H1,E1,D1] transfer the image into HED space

  • 3:

    [BB1] segmentation(H1) ∪ segmentation(E1) ∪ segmentation(D1)

  • 4:

    From side view camera

  • 5:

    [H2,E2,D2] transfer the image into HED space

  • 6:

    [BB2] segmentation(H2) ∪ segmentation(E2) ∪ segmentation(D2)

  • 7:

    if |BB1|=|BB2| then

  • 8:

     Use side view images / / there is no occlusion in the side view

  • 9:

    else

  • 10:

    for all BB in BB1 do

  • 11:

      CcornerBB

  • 12:

      matchfind_correspondence(C,BB2)

  • 13:

    end for

  • 14:

    end if

  • 15:

    ifmatch= empty then

  • 16:

     Do nothing / / complete occlusion from the side view

  • 17:

    else

  • 18:

     Divide BB2

  • 19:

    end if