Skip to main content
. 2020 Apr 14;20(8):2212. doi: 10.3390/s20082212
Algorithm 1 Recognition Algorithm.
  • 1:

    initial SØ; //The set of single frames.

  • 2:

    initial Cwire; //The category of S.

  • 3:

    initial M[M0,M1,M2]; //The minimum number of frames combined into a group.

  • 4:

    repeat

  • 5:

        F=ReadSingleFrame(); //Read single frame data.

  • 6:

        L=SingleFrameClassification(F); //Single frame classification model classifies the single frame.

  • 7:

        FS,S,C=CombineSingleFrames(F,L,S,C,M); //Combine single frames into a group. The method is shown in Algorithm 2.

  • 8:

        if FSnull then

  • 9:

            R=MultiFramesSegmentation(FS); //Segmentation model recognizes the components in the combined single frames.

  • 10:

        end if

  • 11:

    until without single frame data.