View full-text article in PMC Sensors (Basel). 2022 Sep 15;22(18):6977. doi: 10.3390/s22186977 Search in PMC Search in PubMed View in NLM Catalog Add to search Copyright and License information © 2022 by the authors. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license (https://creativecommons.org/licenses/by/4.0/). PMC Copyright notice 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 ROS Rsem←RequestInstanceSegmentation(kfoptimize); rdynamic←GetDynamicRegion(Rsem); rstatic←GetStaticRegion(Rsem); Mproject←GetProjectionofMappoints (Min_view); //Update only the semantic attributes of map points //whose projections lie in static regions For mproject in Mproject do: mdynamic←UpdateDynamicProbability (mproject,rdynamic); If (mproject in rstatic) then msem←UpdateSemanticProperty(mproject,rstatic); End If End ForEnd For