Skip to main content
. 2022 Sep 15;22(18):6977. doi: 10.3390/s22186977
Algorithm 1 Update dynamic probability and semantic properties of map points
Input: Min_view KFoptimizeOutput: Mproject RsemFor kfoptimize in KFoptimize do://Get instance segmentation results based on ROSRsemRequestInstanceSegmentation(kfoptimize);rdynamicGetDynamicRegion(Rsem);rstaticGetStaticRegion(Rsem);MprojectGetProjectionofMappoints (Min_view);//Update only the semantic attributes of map points //whose projections lie in static regionsFor mproject in Mproject do:mdynamicUpdateDynamicProbability (mproject,rdynamic); If (mproject in rstatic) thenmsemUpdateSemanticProperty(mproject,rstatic);End IfEnd ForEnd For