Skip to main content
. 2022 Nov 25;22(23):9168. doi: 10.3390/s22239168
Algorithm 1: RPOS-LSBA Features Etraction
  • SEGMENTATION

  • rpos_seg(rth,αmax) // position and orientation thresholds

  • for each datapoint di in scan S do

  •     if position_and_orientation <(rth,αmax) then

  •         ϕndi

  •     end if

  • end for

    returnϕ // creates and return Bleak segments

  • B-SPLINE APPROXIMATION

  • lsba_curve(ϕ)

  • for each segment ϕn in scan S do

  •     BSplines= least_square_Approx(Pc,Ordercurve,ϕn) // no. of control points Pc

  • end for

    returnBSplines