WO2021179593A1 - Deep learning-based three-dimensional pipeline reconstruction method, system, medium, and apparatus - Google Patents

Deep learning-based three-dimensional pipeline reconstruction method, system, medium, and apparatus Download PDF

Info

Publication number
WO2021179593A1
WO2021179593A1 PCT/CN2020/120385 CN2020120385W WO2021179593A1 WO 2021179593 A1 WO2021179593 A1 WO 2021179593A1 CN 2020120385 W CN2020120385 W CN 2020120385W WO 2021179593 A1 WO2021179593 A1 WO 2021179593A1
Authority
WO
WIPO (PCT)
Prior art keywords
component
point
pipeline
instances
instance
Prior art date
Application number
PCT/CN2020/120385
Other languages
French (fr)
Chinese (zh)
Inventor
屠长河
程莉莉
魏卓
孙铭超
辛士庆
安德劳
李扬彦
陈宝权
Original Assignee
山东大学
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by 山东大学 filed Critical 山东大学
Publication of WO2021179593A1 publication Critical patent/WO2021179593A1/en

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06TIMAGE DATA PROCESSING OR GENERATION, IN GENERAL
    • G06T17/00Three dimensional [3D] modelling, e.g. data description of 3D objects
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06NCOMPUTING ARRANGEMENTS BASED ON SPECIFIC COMPUTATIONAL MODELS
    • G06N20/00Machine learning

Definitions

  • the present disclosure relates to the technical field of pipeline three-dimensional reconstruction, and in particular to a pipeline three-dimensional reconstruction method, system, medium and equipment based on deep learning.
  • High-quality 3D models of power plants, petrochemical plants, and other factories are critical in many applications, including disaster simulation, monitoring, and execution training.
  • Industrial bases are built according to specific plans, usually combined with 3D CAD models.
  • building a complete and accurate three-dimensional model is a difficult task.
  • these models may not exist in older facilities or may not reflect the current appearance of the site.
  • laser scanners can capture three-dimensional surfaces and geometric figures with high precision, generating dense point cloud samples.
  • capturing surface geometry is particularly challenging.
  • the inventors of the present disclosure found that due to the importance and universality of the function of the pipeline, it is the main structure of many industrial sites. They are thin structures defined by long cylinders organized in dense and complex structures. Although pipes are only cylindrical in basic shape, which can be easily defined as their axis and radius, they often contain additional components such as flanges, valves, air inlets, elbows, tees, etc. Therefore, the small surface of the pipeline, the serious self-occlusion caused by the complex structure, partial missing, insufficient sampling and other problems can easily cause errors in the three-dimensional scanning and reconstruction of the pipeline.
  • a common method of point cloud 3D pipeline reconstruction is based on geometric processing and fitting.
  • the key to this type of method is to find the position of the radius and axis of the cylinder.
  • the commonly used method is to use RanSac, Hough transform and other methods to perform fitting to detect the cylinder, mainly to restore the cylindrical pipe in the industrial plant.
  • the present disclosure provides a pipeline 3D reconstruction method, system, medium and equipment based on deep learning, which reduces the complexity of common pipeline reconstruction problems to a combination of component detection and model fitting problems.
  • the accurate three-dimensional reconstruction of the pipeline is realized.
  • the first aspect of the present disclosure provides a pipeline 3D reconstruction method based on deep learning.
  • a pipeline 3D reconstruction method based on deep learning including the following steps:
  • Obtain the point cloud data of the pipeline use the deep learning method to learn the characteristics of the point cloud, at least get the category of the component to which the point belongs, the radius of the component to which the point belongs, and the direction vector of the point;
  • the second aspect of the present disclosure provides a pipeline 3D reconstruction system based on deep learning, including:
  • the point cloud learning module is configured to: obtain the point cloud data of the pipeline, use the deep learning method to learn the characteristics of the point cloud, and at least obtain the category of the component to which the point belongs, the radius of the component to which the point belongs, and the direction vector of the point;
  • the candidate instance acquisition module is configured to calculate the axis point by using the radius of the component to which the point belongs and the direction vector of the point, and combine the category label of the component to which the point belongs to cluster the axis point to obtain the candidate instance;
  • the graph structure component module is configured to: use graph-based methods to obtain the connection relationship between different candidate instances, and use components as nodes to form the structure of the graph;
  • the pipeline reconstruction module is configured to replace the nodes in the figure with the actual three-dimensional component model to complete the entire pipeline reconstruction.
  • the third aspect of the present disclosure provides a medium on which a program is stored, and when the program is executed by a processor, the steps in the pipeline 3D reconstruction method based on deep learning as described in the first aspect of the present disclosure are realized.
  • the fourth aspect of the present disclosure provides an electronic device, including a memory, a processor, and a program stored in the memory and capable of running on the processor, and the processor executes the program as described in the first aspect of the present disclosure.
  • the steps in the deep learning-based pipeline 3D reconstruction method are to reconstruct the pipeline 3D model.
  • the method, system, medium, and electronic equipment described in the present disclosure reduce the complexity of common pipeline reconstruction problems to a combination of component detection and model fitting problems, and are highly robust and realize accurate three-dimensional reconstruction of pipelines.
  • the methods, systems, media, and electronic devices described in the present disclosure use a combination of clustering and graphs to filter detection results and generate a class diagram global pipeline model, which effectively prevents the generation of training sets and the design of training networks Wait for the error caused by a priori detection.
  • the methods, systems, media, and electronic devices described in the present disclosure embed the initial unreliable local prior detection into a processing framework that considers global attributes and semantic structure, so as to better understand the industrial structure.
  • the cloud reconstructs the complete pipeline structure to achieve more accurate pipeline 3D reconstruction.
  • the radius and direction vector adopt a weight-sharing framework for regression calculation, which can have better accuracy and convergence.
  • Fig. 1 is a schematic diagram of an existing pipeline structure provided in the background art.
  • FIG. 2 is a schematic flowchart of a pipeline 3D reconstruction method based on deep learning provided in Embodiment 1 of the disclosure.
  • FIG. 3 is a schematic diagram of the radius and point direction vector of the component provided in Embodiment 1 of the disclosure.
  • FIG. 4 is a schematic diagram of the structure of the network framework provided by Embodiment 1 of the disclosure.
  • FIG. 5 is a schematic diagram of the result of the noisy point cloud and the predicted component category provided by Embodiment 1 of the disclosure.
  • FIG. 6 is a schematic diagram of the original point cloud provided by Embodiment 1 of the disclosure and the corresponding axis points calculated through prediction features.
  • FIG. 7 is a schematic diagram of skeletons of different types of components provided in Embodiment 1 of the disclosure.
  • FIG. 8 is a schematic diagram of reconstruction of the synthetic scene provided in Embodiment 1 of the disclosure.
  • FIG. 9 is a schematic diagram of comparison of reconstruction results provided by Embodiment 1 of the present disclosure and other methods.
  • FIG. 10 is a schematic diagram of reconstruction results under point clouds with different missing degrees provided in Embodiment 1 of the disclosure.
  • FIG. 11 is a schematic diagram of the reconstruction result under the real point cloud data provided in Embodiment 1 of the disclosure.
  • the pipeline scene is assembled by pipeline components and pipeline supports.
  • pipe components are mainly considered, and supporting parts such as floors and fences are ignored.
  • a priori-based learning method is adopted, and a deep learning network is trained to learn candidate features of 3D point clouds.
  • the prior detection of generating training set and designing training network usually has errors, so a combination of clustering and graph technology is used to filter the detection results and generate a class diagram global pipeline model. Embed the initial unreliable local prior detection into a processing framework that considers global attributes and semantic structure.
  • Embodiment 1 of the present disclosure provides a pipeline 3D reconstruction method based on deep learning. Given a scanned point cloud of a pipeline, the method completes the reconstruction in four steps:
  • the category and radius of the component can uniquely determine the shape of the component. Since pipeline reconstruction pays more attention to the geometric characteristics of the pipeline, the shape information of the component is obtained by detecting the category and radius of the component. According to the pipeline design standard, the radius of the component is a predetermined discrete value. As mentioned above, six types of components are selected as basic parts: pipes, flanges, reducers, elbows, tees and crosses, and an additional type label is added to distinguish non-component points.
  • the characteristics of each point are predicted by learning methods: the type c of the component to which the point belongs, the radius r of the component to which the point belongs, and the direction vector o of the point. Since the type and radius of the component to which a point belongs are discrete, classification is used to predict, and the discrete category prediction has better accuracy than the regression of continuous values; the direction vector of the point is continuous, so regression is used for prediction. Using the direction vector and radius of the point, the position of the axis point corresponding to the scanning point can be calculated.
  • This embodiment implements a pipeline generator to simulate a similar real scene model, and trains the network on the synthesized pipeline model.
  • a synthetic pipeline is generated by assembling components.
  • a random skeleton diagram is first generated in the set scene range. For each diagram node, the type, radius and orientation of the components are randomly assembled to obtain the entire pipeline scene. After that, the virtual scanning library is used to sample the surface of the pipeline to simulate the scanning point cloud. Combining the labels required for network learning, for each scan point, get the type of component it belongs to, the radius of the component and the direction vector of the point, and generate the groundtruth about the scan point.
  • the type label of the component is 0, 1, 2, 3, 4, 5, 6, 0-straight pipe, 1-flange, 2-elbow, 3-tee, 4-four-way, 5-reducing pipe , 6-noise point;
  • the radius range of the component is 0.365-4.6, and there are 23 different sizes in total, that is, there are 23 radius labels, respectively 0.365,...,4.6.
  • this embodiment uses network learning to predict the category c of the component to which the point belongs, the radius r of the component to which the point belongs, and the direction vector o of the point.
  • the input of the network is the scanned point cloud, each point contains (x, y, z) coordinate information, and the output is the above three tags.
  • r represents the radius of the component to which the point belongs
  • o represents the direction vector of the point.
  • the specific network framework is shown in Figure 4.
  • the input of the network is a point cloud P containing location information.
  • the network contains four layers of convolution, four layers of deconvolution, and two layers of MLP to obtain 7 channel feature maps. And followed by a softmax activation layer. Then use the classifier to filter out noise, that is, points that do not belong to the six types of components.
  • a multi-task network is defined to handle classification and regression.
  • the network in the upper right corner is used to predict the radius of the component to which each point belongs, and the network in the lower right corner is used to predict the orientation.
  • the range of the radius is 0.365-4.6 meters, with a total of 23 sizes. Therefore, the branch classified in the upper right corner is subjected to four-layer convolution, four-layer deconvolution and two-layer MLP output 23 channel feature vectors, followed by a softmax layer, and the regression branch is four-layer convolution, four-layer deconvolution and two-layer MLP
  • the feature vectors of the 3 channels are output, that is, the corresponding direction vectors, in which the convolutional layer and the deconvolutional layer of the two branches are shared.
  • multi-task training is performed to train the entire network at the same time.
  • the cross-entropy loss function is used; in the regression task, the L2loss is used, because the radius and direction vector are related to the offset vector from the scanning point to the component axis.
  • the test result is shown in Figure 5.
  • the left side is the input point cloud with noise, and the right side is the result of the predicted component category.
  • different color depths represent different types of components.
  • the component category of each point, the radius of the component and the direction vector of the point are obtained according to the network prediction, that is, the specific expression of the point is:
  • L ⁇ (p 1, c 1, r 1, o 1), (p 2, c 2, r 2, o 2), ... (p n, c n, r n, o n) ⁇ ;
  • L 2 ⁇ (a 1 ,c 1 ,r 1 ),(a 2 ,c 2 ,r 2 ),...(a n ,c n ,r n ) ⁇ ;
  • the left image is the original point cloud
  • the right image is the corresponding axis point calculated by the prediction feature.
  • points of different color depths represent different component types.
  • the corresponding axis points and candidate component instance sets are obtained through the second step of processing.
  • This step mainly obtains the connection relationship between different components.
  • the overall skeleton of the pipeline is obtained, and then the connection relationship between the components is initially obtained. Due to a certain error in network prediction, this embodiment uses rules to optimize the graph structure to obtain a reasonable connection relationship between instances. Finally, the overall skeleton is obtained according to the connection relationship between the examples.
  • the axis points of the template skeleton and the instance are matched using the ICP algorithm to obtain the candidate skeleton of the instance.
  • the skeleton of the template is represented by endpoints and lines.
  • L 2 ⁇ (a 1 ,c 1 ,r 1 ),(a 2 ,c 2 ,r 2 ),...(a n ,c n ,r n ) ⁇ ;
  • the overall framework is obtained by iteratively extracting the longest path of the minimum spanning tree. And use this connection relationship to guide the connection relationship between the instances.
  • connection relationship between the axis points obtained above and the instance information obtained by clustering are used to obtain the connection relationship between the instances;
  • the pipeline frame represented by D is composed of multiple acyclic paths d, and d is a path composed of axis points. Traverse each path d and combine the clustering results to obtain the connection relationship between the instances on the path d.
  • This step combines the template information of each component instance obtained in step (3-1), and uses these connection rules to optimize the graph architecture to obtain accurate connection relationships between instances.
  • the rules are as follows:
  • Tee There are three neighbors, and the three neighboring endpoints adjacent to this component need to form a three-way layout;
  • the detection updates the connection relationship between the instances according to the mark. If the direction vectors of the adjacent end points are in a vertical state, an elbow instance is added between the two instances.
  • connection relationship between the instances is obtained above, and the template skeleton corresponding to the instance point cloud is known.
  • connection relationship is used to optimize the position of the template skeleton again; now the final instance and the connection relationship between the instances can be obtained, taking the instance as Nodes represent the connection relationship of instances in the form of graphs, and there are edges between adjacent instances.
  • the technology described in this embodiment reconstructs the local structure that follows the connection rules and the semantic relationship in the pipeline.
  • the results show that the method can better reconstruct the complete pipeline structure from the industrial structure point cloud.
  • Each axis point has a predicted radius. According to the radius of these points, the radius with the most votes is taken as the radius of the component instance; the type, radius, and position of the template corresponding to the instance are known. Now use the template instead of the figure.
  • the nodes complete the reconstruction of the entire pipeline.
  • Figure 8 shows the reconstruction of the composite scene, from left to right are the input point cloud, the axis points marked with the color of the component category, the skeleton of the pipeline, and the reconstructed pipeline.
  • the reconstruction result of the method (Cylinder detection in large-scale point cloud of pipeline plant) (simplifying the 3D factory reconstruction problem to the detection problem of the 2D circle after the pipeline is projected to the plane), the reconstruction result and groundtruth obtained by the EdgeWise software (Correct reconstruction result).
  • the comparison includes four scenes of different scales and complexity, from simple small scenes to complex large scenes.
  • the methods of Huang et al. and Liu et al. lose components, and the method of Liu et al. cannot reconstruct some joints such as elbows, but can only reconstruct straight pipes.
  • the commercial software EdgeWise requires a lot of manual interaction to complete the reconstruction. The longer the interaction time, the better the results can be obtained, but it is a very time-consuming task.
  • Fig. 11 is the reconstruction result under real point cloud data, from left to right are the input point cloud, the reconstruction result of the method in this embodiment, the reconstruction result of Liu et al., and the reconstruction result of the EdgeWise software.
  • Embodiment 2 of the present disclosure provides a pipeline 3D reconstruction system based on deep learning, including:
  • the point cloud learning module is configured to learn the characteristics of the point cloud by using a deep learning method to at least obtain the category of the component to which the point belongs, the radius of the component to which the point belongs, and the direction vector of the point;
  • the candidate instance acquisition module is configured to calculate the axis point by using the radius of the component to which the point belongs and the direction vector of the point, and combine the category label of the component to which the point belongs to cluster the axis point to obtain the candidate instance;
  • the graph structure component module is configured to: use graph-based methods to obtain the connection relationship between different component instances, and use the components as nodes to form the structure of the graph;
  • the pipeline reconstruction module is configured to replace the nodes in the figure with the actual three-dimensional component model to complete the entire pipeline reconstruction.
  • the specific working method of the three-dimensional reconstruction system is the same as the three-dimensional reconstruction method described in Embodiment 1, and will not be repeated here.
  • Embodiment 3 of the present disclosure provides a medium on which a program is stored, and when the program is executed by a processor, the steps in the method for 3D reconstruction of a pipeline based on deep learning as described in Embodiment 1 of the present disclosure are realized.
  • Embodiment 4 of the present disclosure provides an electronic device, including a memory, a processor, and a program stored in the memory and capable of running on the processor.
  • the processor executes the program as described in Embodiment 1 of the present disclosure.
  • the steps in the deep learning-based pipeline 3D reconstruction method are to reconstruct the pipeline 3D model.

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Evolutionary Computation (AREA)
  • Medical Informatics (AREA)
  • Data Mining & Analysis (AREA)
  • Computing Systems (AREA)
  • General Engineering & Computer Science (AREA)
  • Computer Vision & Pattern Recognition (AREA)
  • Mathematical Physics (AREA)
  • Artificial Intelligence (AREA)
  • Computer Graphics (AREA)
  • Geometry (AREA)
  • Image Analysis (AREA)

Abstract

The present disclosure provides a deep learning-based three-dimensional pipeline reconstruction method, a system, a medium, and an apparatus, pertaining to the technical field of three-dimensional pipeline reconstruction. The method comprises: learning features of a point cloud by using a deep learning method, and at least obtaining a category of a component associated with points, a radius of the component associated with the points, and a direction vector of the points; calculating axis points by using the radius of the component associated with the points and the direction vector of the points, and performing, by incorporating a category label of the component associated with the points, clustering on the axis points to obtain candidate instances; obtaining, by using a graph-based method, a connection relationship between the different candidate instances, and constituting, by using the component as a node, a structure of a graph; and replacing the node in the graph with an actual three-dimensional component model to complete reconstruction of an entire pipeline. The present disclosure addresses the low accuracy issue of existing three-dimensional pipeline reconstruction, and reduces the complexity problems of general pipeline reconstruction to that of a combination of component detection and model fitting problems, thereby achieving accurate three-dimensional pipeline reconstruction.

Description

基于深度学习的管道三维重建方法、系统、介质及设备Pipeline 3D reconstruction method, system, medium and equipment based on deep learning 技术领域Technical field
本公开涉及管道三维重建技术领域,特别涉及一种基于深度学习的管道三维重建方法、系统、介质及设备。The present disclosure relates to the technical field of pipeline three-dimensional reconstruction, and in particular to a pipeline three-dimensional reconstruction method, system, medium and equipment based on deep learning.
背景技术Background technique
本部分的陈述仅仅是提供了与本公开相关的背景技术,并不必然构成现有技术。The statements in this section merely provide background technology related to the present disclosure, and do not necessarily constitute prior art.
发电厂、石化厂及其他工厂的高质量三维模型在许多应用中都是至关重要的,包括灾难模拟、监测和执行培训。工业基地是根据特定的规划建造的,通常结合3D CAD模型。然而,建立一个完整而精确的三维模型是一项艰巨的任务。此外,这些模型可能不存在于较老的设施中,或者不能反映场地的当前外观。如今,现代激光扫描仪可以高精度地捕捉三维表面和几何图形,生成密集的点云采样。然而,在三维管道的场景中,捕获表面几何形状是特别具有挑战性的。High-quality 3D models of power plants, petrochemical plants, and other factories are critical in many applications, including disaster simulation, monitoring, and execution training. Industrial bases are built according to specific plans, usually combined with 3D CAD models. However, building a complete and accurate three-dimensional model is a difficult task. In addition, these models may not exist in older facilities or may not reflect the current appearance of the site. Today, modern laser scanners can capture three-dimensional surfaces and geometric figures with high precision, generating dense point cloud samples. However, in a three-dimensional pipeline scene, capturing surface geometry is particularly challenging.
本公开发明人发现,由于管道在功能上的重要性和普遍性,它是许多工业场所的主要结构。它们是由长圆柱体定义的薄结构,这些长圆柱体组织在稠密而复杂的结构中。虽然管道仅仅是圆柱形的基本形状,可以很容易地定义为其轴线和半径,但它们往往包含额外的部件,如法兰、阀门、进气口、弯头、三通等。因此,管道表面小,结构复杂导致的自遮挡严重,部分缺失,采样不足等问题都容易造成管道三维扫描及重建的误差。The inventors of the present disclosure found that due to the importance and universality of the function of the pipeline, it is the main structure of many industrial sites. They are thin structures defined by long cylinders organized in dense and complex structures. Although pipes are only cylindrical in basic shape, which can be easily defined as their axis and radius, they often contain additional components such as flanges, valves, air inlets, elbows, tees, etc. Therefore, the small surface of the pipeline, the serious self-occlusion caused by the complex structure, partial missing, insufficient sampling and other problems can easily cause errors in the three-dimensional scanning and reconstruction of the pipeline.
目前,点云三维管道重建的一种常见方法是基于几何处理和拟合。At present, a common method of point cloud 3D pipeline reconstruction is based on geometric processing and fitting.
这类的方法的关键是找到圆柱的半径和轴线的位置。常采用的方法是使用RanSac,霍夫变换等方法进行拟合以检测圆柱,主要是对工业厂房中的圆柱管道进行恢复。The key to this type of method is to find the position of the radius and axis of the cylinder. The commonly used method is to use RanSac, Hough transform and other methods to perform fitting to detect the cylinder, mainly to restore the cylindrical pipe in the industrial plant.
有技术人员提出了将三维工厂重建问题简化为将管道投影到平面后二维圆的检测问题。但是,这种方法仅限于与地面垂直或平行的管道。这一类的工作只检测到直管道,而弯管等关节的地方无法自动恢复。虽然改进的霍夫变换实现了对点云中柱面参数的自动检测,之后重建圆柱之间的连接关系形成一个连续的网络,最后使用智能工厂3D(SP3D)处理数据从而重建整个管道,但是连接关系的恢复是依靠预定义的几种连接规则进行推测,有较高的不确定性。而且这种方法存在局部性问题,很少能够重建具有精确连通性的完整的火电厂等模型。自底向上的原始拟合技术也对噪声和异常值很敏感,因为它们缺乏全局和内容感知方面的考虑。虽然圆柱形通常是这些位置的主要几何形状,但实际数据包含大量其他结构,如法兰、阀门、进气口、弯头、三通等,如图1所示。商业软件EdgeWise也可用于交互式地重构管道运行,然而,这些软件产品通常需要大量的手工工作。Some technicians have proposed to simplify the problem of 3D factory reconstruction to the detection problem of a 2D circle after the pipeline is projected onto a plane. However, this method is limited to pipes that are perpendicular or parallel to the ground. This type of work only detects straight pipes, while joints such as elbows cannot be restored automatically. Although the improved Hough transform realizes the automatic detection of the cylinder parameters in the point cloud, and then reconstructs the connection relationship between the cylinders to form a continuous network, and finally uses the smart factory 3D (SP3D) to process the data to reconstruct the entire pipeline, but the connection The recovery of the relationship is based on the pre-defined several connection rules for speculation, which has a high degree of uncertainty. Moreover, this method has local problems, and it is seldom able to reconstruct a complete model of thermal power plant with accurate connectivity. Bottom-up primitive fitting techniques are also sensitive to noise and outliers because they lack global and content perception considerations. Although cylindrical is usually the main geometric shape for these locations, the actual data contains a large number of other structures, such as flanges, valves, air inlets, elbows, tees, etc., as shown in Figure 1. Commercial software EdgeWise can also be used to interactively reconstruct pipeline operations, however, these software products usually require a lot of manual work.
发明内容Summary of the invention
为了解决现有技术的不足,本公开提供了一种基于深度学习的管道三维重建方法、系统、介质及设备,将普通的管道重建问题的复杂度降为组件检测和模型拟合问题的组合,实现了管道的准确三维重建。In order to solve the deficiencies of the prior art, the present disclosure provides a pipeline 3D reconstruction method, system, medium and equipment based on deep learning, which reduces the complexity of common pipeline reconstruction problems to a combination of component detection and model fitting problems. The accurate three-dimensional reconstruction of the pipeline is realized.
为了实现上述目的,本公开采用如下技术方案:In order to achieve the above objectives, the present disclosure adopts the following technical solutions:
本公开第一方面提供了一种基于深度学习的管道三维重建方法。The first aspect of the present disclosure provides a pipeline 3D reconstruction method based on deep learning.
一种基于深度学习的管道三维重建方法,包括以下步骤:A pipeline 3D reconstruction method based on deep learning, including the following steps:
获取管道的点云数据,利用深度学习方法学习点云的特征,至少得到点所属组件的类别、点所属组件的半径和点的方向向量;Obtain the point cloud data of the pipeline, use the deep learning method to learn the characteristics of the point cloud, at least get the category of the component to which the point belongs, the radius of the component to which the point belongs, and the direction vector of the point;
利用点所属组件的半径和点的方向向量计算轴线点,结合点所属组件的类别标签对轴线点进行聚类得到候选实例;Use the radius of the component to which the point belongs and the direction vector of the point to calculate the axis point, and combine the category label of the component to which the point belongs to cluster the axis points to obtain candidate instances;
用基于图的方法得到不同候选实例之间的连接关系,以组件为节点构成图的结构;Use graph-based methods to obtain the connection relationship between different candidate instances, and use components as nodes to form the structure of the graph;
用实际的三维组件模型替代图中的节点以完成整个管道重建。Replace the nodes in the figure with actual three-dimensional component models to complete the entire pipeline reconstruction.
本公开第二方面提供了一种基于深度学习的管道三维重建系统,包括:The second aspect of the present disclosure provides a pipeline 3D reconstruction system based on deep learning, including:
点云学习模块,被配置为:获取管道的点云数据,利用深度学习方法学习点云的特征,至少得到点所属组件的类别、点所属组件的半径和点的方向向量;The point cloud learning module is configured to: obtain the point cloud data of the pipeline, use the deep learning method to learn the characteristics of the point cloud, and at least obtain the category of the component to which the point belongs, the radius of the component to which the point belongs, and the direction vector of the point;
候选实例获取模块,被配置为:利用点所属组件的半径和点的方向向量计算轴线点,结合点所属组件的类别标签对轴线点进行聚类得到候选实例;The candidate instance acquisition module is configured to calculate the axis point by using the radius of the component to which the point belongs and the direction vector of the point, and combine the category label of the component to which the point belongs to cluster the axis point to obtain the candidate instance;
图结构构件模块,被配置为:用基于图的方法得到不同候选实例之间的连接关系,以组件为节点构成图的结构;The graph structure component module is configured to: use graph-based methods to obtain the connection relationship between different candidate instances, and use components as nodes to form the structure of the graph;
管道重建模块,被配置为:用实际的三维组件模型替代图中的节点以完成整个管道重建。The pipeline reconstruction module is configured to replace the nodes in the figure with the actual three-dimensional component model to complete the entire pipeline reconstruction.
本公开第三方面提供了一种介质,其上存储有程序,该程序被处理器执行时实现如本公开第一方面所述的基于深度学习的管道三维重建方法中的步骤。The third aspect of the present disclosure provides a medium on which a program is stored, and when the program is executed by a processor, the steps in the pipeline 3D reconstruction method based on deep learning as described in the first aspect of the present disclosure are realized.
本公开第四方面提供了一种电子设备,包括存储器、处理器及存储在存储器上并可在处理器上运行的程序,所述处理器执行所述程序时实现如本公开第一方面所述的基于深度学习的管道三维重建方法中的步骤进行管道三维模型的重建。The fourth aspect of the present disclosure provides an electronic device, including a memory, a processor, and a program stored in the memory and capable of running on the processor, and the processor executes the program as described in the first aspect of the present disclosure. The steps in the deep learning-based pipeline 3D reconstruction method are to reconstruct the pipeline 3D model.
与现有技术相比,本公开的有益效果是:Compared with the prior art, the beneficial effects of the present disclosure are:
1、本公开所述的方法、系统、介质及电子设备,将普通的管道重建问题的复杂度降为组件检测和模型拟合问题的组合,鲁棒性高,实现了管道的准确三维重建。1. The method, system, medium, and electronic equipment described in the present disclosure reduce the complexity of common pipeline reconstruction problems to a combination of component detection and model fitting problems, and are highly robust and realize accurate three-dimensional reconstruction of pipelines.
2、本公开所述的方法、系统、介质及电子设备,采用了聚类和图相结合的技术来过滤检测结果,并生成类图全局管道模型,有效的防止了生成训练集和设计训练网络等先验检测带来的误差。2. The methods, systems, media, and electronic devices described in the present disclosure use a combination of clustering and graphs to filter detection results and generate a class diagram global pipeline model, which effectively prevents the generation of training sets and the design of training networks Wait for the error caused by a priori detection.
3、本公开所述的方法、系统、介质及电子设备,将初始的不可靠的局部先验检测嵌入到一个处理框架中,该框架考虑全局属性和语义结构,从而较好地从工业结构点云重构完整的管道结构,实现更准确的管道三维重建。3. The methods, systems, media, and electronic devices described in the present disclosure embed the initial unreliable local prior detection into a processing framework that considers global attributes and semantic structure, so as to better understand the industrial structure. The cloud reconstructs the complete pipeline structure to achieve more accurate pipeline 3D reconstruction.
4、本公开所述的方法、系统、介质及电子设备,所述的半径和方向向量采用权重共享的框架进行回归计算,可以有更好的准确率和收敛性。4. In the method, system, medium, and electronic device of the present disclosure, the radius and direction vector adopt a weight-sharing framework for regression calculation, which can have better accuracy and convergence.
附图说明Description of the drawings
图1为背景技术中提供的现有的管道结构示意图。Fig. 1 is a schematic diagram of an existing pipeline structure provided in the background art.
图2为本公开实施例1提供的基于深度学习的管道三维重建方法的流程示意图。FIG. 2 is a schematic flowchart of a pipeline 3D reconstruction method based on deep learning provided in Embodiment 1 of the disclosure.
图3为本公开实施例1提供的所属组件的半径和点的方向向量示意图。FIG. 3 is a schematic diagram of the radius and point direction vector of the component provided in Embodiment 1 of the disclosure.
图4为本公开实施例1提供的网络框架的结构示意图。FIG. 4 is a schematic diagram of the structure of the network framework provided by Embodiment 1 of the disclosure.
图5为本公开实施例1提供的带噪声的点云和预测的组件类别的结果示意图。FIG. 5 is a schematic diagram of the result of the noisy point cloud and the predicted component category provided by Embodiment 1 of the disclosure.
图6为本公开实施例1提供的原始的点云和经过预测特征计算出来的对应的轴线点的示意图。FIG. 6 is a schematic diagram of the original point cloud provided by Embodiment 1 of the disclosure and the corresponding axis points calculated through prediction features.
图7为本公开实施例1提供的不同类型组件的骨架示意图。FIG. 7 is a schematic diagram of skeletons of different types of components provided in Embodiment 1 of the disclosure.
图8为本公开实施例1提供的合成场景的重建示意图。FIG. 8 is a schematic diagram of reconstruction of the synthetic scene provided in Embodiment 1 of the disclosure.
图9为本公开实施例1提供的与其他方法的重建结果对比示意图。FIG. 9 is a schematic diagram of comparison of reconstruction results provided by Embodiment 1 of the present disclosure and other methods.
图10为本公开实施例1提供的不同缺失程度的点云下的重建结果示意图。FIG. 10 is a schematic diagram of reconstruction results under point clouds with different missing degrees provided in Embodiment 1 of the disclosure.
图11为本公开实施例1提供的真实点云数据下的重建结果示意图。FIG. 11 is a schematic diagram of the reconstruction result under the real point cloud data provided in Embodiment 1 of the disclosure.
具体实施方式Detailed ways
应该指出,以下详细说明都是示例性的,旨在对本公开提供进一步的说明。除非另有指明,本文使用的所有技术和科学术语具有与本公开所属技术领域的普通技术人员通常理解的相同含义。It should be pointed out that the following detailed descriptions are all exemplary and are intended to provide further description of the present disclosure. Unless otherwise specified, all technical and scientific terms used herein have the same meaning as commonly understood by those of ordinary skill in the technical field to which the present disclosure belongs.
需要注意的是,这里所使用的术语仅是为了描述具体实施方式,而非意图限制根据本公开的示例性实施方式。如在这里所使用的,除非上下文另外明确指出,否则单数形式也意图包括复数形式,此外,还应当理解的是,当在本说明书中使用术语“包含”和/或“包括”时,其指明存在特征、步骤、操作、器件、组件和/或它们的组合。It should be noted that the terms used here are only for describing specific embodiments, and are not intended to limit the exemplary embodiments according to the present disclosure. As used herein, unless the context clearly indicates otherwise, the singular form is also intended to include the plural form. In addition, it should also be understood that when the terms "comprising" and/or "including" are used in this specification, they indicate There are features, steps, operations, devices, components, and/or combinations thereof.
在不冲突的情况下,本申请中的实施例及实施例中的特征可以相互组合。In the case of no conflict, the embodiments in the application and the features in the embodiments can be combined with each other.
实施例1:Example 1:
在管道设计中,管道场景是由管道组件和管道支撑组装成的。在本实施例中,由于问题的复杂性,主要考虑管道组件,忽略地板,栅栏等支撑件。In the pipeline design, the pipeline scene is assembled by pipeline components and pipeline supports. In this embodiment, due to the complexity of the problem, pipe components are mainly considered, and supporting parts such as floors and fences are ignored.
选取六种类型的组件作为基本件:管道、法兰、弯管、异径管、三通和四通。用额外的一个标签来标注不属于这六类组件的点。在本实施例中,学习了组件的类别,因此,将普通的管道重建问题的复杂度降为组件检测和模型拟合问题的组合。Choose six types of components as basic parts: pipes, flanges, elbows, reducers, tees and crosses. Use an extra label to mark points that do not belong to these six types of components. In this embodiment, the category of the component is learned, and therefore, the complexity of the ordinary pipeline reconstruction problem is reduced to a combination of component detection and model fitting problems.
本实施例采用了一种基于先验的学习方法,训练了一个深度学习网络来学习3D点云的候选特征。生成训练集和设计训练网络这种先验检测通常是有误差的,因此采用了聚类和图相结合的技术来过滤检测结果,并生成类图全局管道模型。将初始的不可靠的局部先验检测嵌入到一个处理框架中,该框架考虑全局属性和语义结构。In this embodiment, a priori-based learning method is adopted, and a deep learning network is trained to learn candidate features of 3D point clouds. The prior detection of generating training set and designing training network usually has errors, so a combination of clustering and graph technology is used to filter the detection results and generate a class diagram global pipeline model. Embed the initial unreliable local prior detection into a processing framework that considers global attributes and semantic structure.
如图2所示,本公开实施例1提供了一种基于深度学习的管道三维重建方法,给定管道的扫描点云,该方法分四步完成重建:As shown in Figure 2, Embodiment 1 of the present disclosure provides a pipeline 3D reconstruction method based on deep learning. Given a scanned point cloud of a pipeline, the method completes the reconstruction in four steps:
(1)用深度学习技术学习点云的特征:点所属组件的类别c,点所属组件的半径r,点的方向向量o;利用点所属组件的类别可以将点分到对应的预定义的组件类别中;(1) Use deep learning technology to learn the characteristics of the point cloud: the category c of the component that the point belongs to, the radius r of the component that the point belongs to, the direction vector o of the point; the category of the component to which the point belongs can assign the point to the corresponding predefined component Category
在管道设计中,组件的类别和半径可以唯一确定组件的形状。由于管道重建更多关注的是管道的几何特征,所以这里通过检测组件的类别和半径来获取组件的形状信息。根据管道设计标准,组件的半径是预先规定好的离散的数值。如上所述,选取六种类型的组件作为基本件:管道、法兰、异径管、弯管、三通和四通,此外额外加一个类型标签用来区分非组件点。In piping design, the category and radius of the component can uniquely determine the shape of the component. Since pipeline reconstruction pays more attention to the geometric characteristics of the pipeline, the shape information of the component is obtained by detecting the category and radius of the component. According to the pipeline design standard, the radius of the component is a predetermined discrete value. As mentioned above, six types of components are selected as basic parts: pipes, flanges, reducers, elbows, tees and crosses, and an additional type label is added to distinguish non-component points.
因此,通过学习的方法来预测每个点(p∈P)的特征:点所属组件的类型c,点所属组件的半径r,和点的方向向量o。由于点所属组件的类型和半径是离散的,所以用分类进行预测,使用离散的类别预测比回归连续值有更好的准确性;点的方向向量是连续的,因此用回归进行预测。利用点的方向向量和半径,可以计算扫描点对应的轴线点的位置。Therefore, the characteristics of each point (p∈P) are predicted by learning methods: the type c of the component to which the point belongs, the radius r of the component to which the point belongs, and the direction vector o of the point. Since the type and radius of the component to which a point belongs are discrete, classification is used to predict, and the discrete category prediction has better accuracy than the regression of continuous values; the direction vector of the point is continuous, so regression is used for prediction. Using the direction vector and radius of the point, the position of the axis point corresponding to the scanning point can be calculated.
(1-1)训练集的生成(1-1) Generation of training set
本实施例实现了管道生成器来模拟类似真实场景模型,并在合成的管道模 型上训练网络。为了模拟真实的管道场景,通过组装组件的方式生成合成的管道。This embodiment implements a pipeline generator to simulate a similar real scene model, and trains the network on the synthesized pipeline model. In order to simulate a real pipeline scene, a synthetic pipeline is generated by assembling components.
具体步骤如下所述:The specific steps are as follows:
在设定的场景范围中先生成随机的骨架图,对于每个图节点,随机装配组件的类型、半径和朝向以得到整个管道场景。之后,用虚拟扫描库对管道表面进行采样,模拟扫描点云。结合网络学习所需的标签,对于每个扫描点,获取它所属组件的类型,所属组件的半径和点的方向向量,产生关于扫描点的groundtruth。其中组件的类型标签为0,1,2,3,4,5,6,0-直管,1-法兰,2-弯管,3-三通,4-四通,5-异径管,6-噪声点;组件的半径范围为0.365-4.6,共有23中不同的尺寸,即共有23个半径标签,分别为0.365,…,4.6.A random skeleton diagram is first generated in the set scene range. For each diagram node, the type, radius and orientation of the components are randomly assembled to obtain the entire pipeline scene. After that, the virtual scanning library is used to sample the surface of the pipeline to simulate the scanning point cloud. Combining the labels required for network learning, for each scan point, get the type of component it belongs to, the radius of the component and the direction vector of the point, and generate the groundtruth about the scan point. The type label of the component is 0, 1, 2, 3, 4, 5, 6, 0-straight pipe, 1-flange, 2-elbow, 3-tee, 4-four-way, 5-reducing pipe , 6-noise point; the radius range of the component is 0.365-4.6, and there are 23 different sizes in total, that is, there are 23 radius labels, respectively 0.365,...,4.6.
(1-2)网络设计(1-2) Network design
如上所述,本实施例通过网络学习来预测点所属组件的类别c,点所属组件的半径r,点的方向向量o。使用PointCNN卷积神经网络来实现分类和回归任务。网络的输入是扫描的点云,每个点含有(x,y,z)坐标信息,输出是上述的三个标签。如图3所示,r表示点所属组件的半径,o表示点的方向向量。As described above, this embodiment uses network learning to predict the category c of the component to which the point belongs, the radius r of the component to which the point belongs, and the direction vector o of the point. Use PointCNN convolutional neural network to achieve classification and regression tasks. The input of the network is the scanned point cloud, each point contains (x, y, z) coordinate information, and the output is the above three tags. As shown in Figure 3, r represents the radius of the component to which the point belongs, and o represents the direction vector of the point.
具体的网络框架如图4所示。网络的输入是包含位置信息的点云P,用左上角的网络预测每个点的组件类别,该网络包含四层卷积,四层反卷积和两层MLP得到7个channel的特征映射,并紧跟一个softmax激活层。然后用该分类器来过滤掉噪声,即不属于六类组件的点。The specific network framework is shown in Figure 4. The input of the network is a point cloud P containing location information. Use the network in the upper left corner to predict the component category of each point. The network contains four layers of convolution, four layers of deconvolution, and two layers of MLP to obtain 7 channel feature maps. And followed by a softmax activation layer. Then use the classifier to filter out noise, that is, points that do not belong to the six types of components.
然后定义了一个多任务网络来处理分类和回归,用右上角的网络来预测每个点所属组件的半径,右下角的网络来预测朝向。半径的范围是0.365-4.6米,共23个尺寸大小。因此右上角分类的分支经四层卷积,四层反卷积和两层MLP输 出23个channel的特征向量,后跟softmax层,回归分支经四层卷积,四层反卷积和两层MLP输出3个channel的特征向量,即对应方向向量,其中两个分支的卷积层和反卷积层是共享的。Then a multi-task network is defined to handle classification and regression. The network in the upper right corner is used to predict the radius of the component to which each point belongs, and the network in the lower right corner is used to predict the orientation. The range of the radius is 0.365-4.6 meters, with a total of 23 sizes. Therefore, the branch classified in the upper right corner is subjected to four-layer convolution, four-layer deconvolution and two-layer MLP output 23 channel feature vectors, followed by a softmax layer, and the regression branch is four-layer convolution, four-layer deconvolution and two-layer MLP The feature vectors of the 3 channels are output, that is, the corresponding direction vectors, in which the convolutional layer and the deconvolutional layer of the two branches are shared.
本实施例中执行多任务训练来同时训练整个网络。在分类任务中,用交叉熵损失函数;在回归任务中,使用L2loss,因为半径和方向向量和扫描点到组件轴线的偏移向量有关,这两个任务采用权重共享的框架,可以有更好的准确率和收敛性。In this embodiment, multi-task training is performed to train the entire network at the same time. In the classification task, the cross-entropy loss function is used; in the regression task, the L2loss is used, because the radius and direction vector are related to the offset vector from the scanning point to the component axis. These two tasks use a weight-sharing framework, which can be better The accuracy and convergence.
(1-3)测试步骤(1-3) Test steps
输入带有坐标信息的点云,经过分类网络得到每个点所属组件的类别标签c;然后利用此类别标签过滤掉非预定义组件类型的点,这里为类别标签c=6的点;将剩余的点作为输入,经过多任务网络得到每个点所属组件的半径r和点的方向向量o;Enter the point cloud with coordinate information, and get the category label c of the component to which each point belongs through the classification network; then use this category label to filter out points of non-predefined component types, here is the point with category label c=6; As input, the radius r of the component to which each point belongs and the direction vector o of the point are obtained through the multi-task network;
测试结果展示如图5所示,左侧是输入的带噪声的点云,右侧是预测的组件类别的结果。其中右侧图中,不同的颜色深度表示不同类别的组件。The test result is shown in Figure 5. The left side is the input point cloud with noise, and the right side is the result of the predicted component category. In the figure on the right, different color depths represent different types of components.
(2)利用点所属组件的半径r和点的方向向量o计算轴线点,结合点所属组件的类别标签c对轴线点进行聚类得到候选实例;(2) Calculate the axis point by using the radius r of the component to which the point belongs and the direction vector o of the point, and combine the category label c of the component to which the point belongs to cluster the axis points to obtain candidate instances;
具体步骤为:The specific steps are:
(2-1)计算扫描点对应的轴线点(2-1) Calculate the axis point corresponding to the scan point
上面依据网络预测得到每个点所属组件类别,所属组件的半径以及点的方向向量,即点的具体表示为:According to the network prediction, the component category of each point, the radius of the component and the direction vector of the point are obtained according to the network prediction, that is, the specific expression of the point is:
L={(p 1,c 1,r 1,o 1),(p 2,c 2,r 2,o 2),…(p n,c n,r n,o n)}; L = {(p 1, c 1, r 1, o 1), (p 2, c 2, r 2, o 2), ... (p n, c n, r n, o n)};
首先利用预测的组件半径和点的方向向量,计算每个点对应的轴线上的点;First use the predicted component radius and the direction vector of the point to calculate the point on the axis corresponding to each point;
对于点p i,利用预测的组件半径r i和方向向量o i,使用如下公式计算对应的轴线点a iFor the point p i , using the predicted component radius r i and the direction vector o i , use the following formula to calculate the corresponding axis point a i :
a i=p i+o i×r ia i = p i +o i ×r i ;
轴线点的具体表示为:The specific expression of the axis point is:
L 2={(a 1,c 1,r 1),(a 2,c 2,r 2),…(a n,c n,r n)}; L 2 ={(a 1 ,c 1 ,r 1 ),(a 2 ,c 2 ,r 2 ),...(a n ,c n ,r n )};
其中c i∈{0,1,2,3,4,5},其中0表示直管,1表示法兰,2表示弯管,3表示三通,4表示四通,5表示异径管;r i∈{0,1,2,3,…,21,22};其中0-22分别对应不同尺寸的半径大小。 Where c i ∈ {0,1,2,3,4,5}, where 0 represents straight pipe, 1 represents flange, 2 represents elbow pipe, 3 represents tee, 4 represents cross, and 5 represents reducer; r i ∈{0,1,2,3,...,21,22}; where 0-22 correspond to different radii.
(2-2)使用聚类算法DBSCAN对轴线点进行聚类(2-2) Use clustering algorithm DBSCAN to cluster axis points
利用类型标签c i,使用聚类算法DBSCAN对轴线点进行聚类。 Use the type label c i to cluster the axis points using the clustering algorithm DBSCAN.
具体步骤为:The specific steps are:
取出类型标签为c i=0的轴线点,使用聚类算法进行聚类得到直管的候选实例集合;同理依次取出类别标签分别为1,2,3,4,5的点,分别聚类得到法兰实例集合,弯管实例集合,三通实例集合,四通实例集合,异径管实例集合,至此可得到场景中所有的候选实例集合。可以知道每个轴线点所在的实例编号,也可以知道每个实例对应的轴线点。 Take out the axis points with the type label c i =0, use the clustering algorithm to cluster to obtain the straight-pipe candidate instance set; similarly take out the points with the category labels 1, 2, 3, 4, 5 and cluster them respectively Obtain the flange instance set, the elbow instance set, the tee instance set, the four-way instance set, and the reducer instance set. So far, all the candidate instance sets in the scene can be obtained. You can know the instance number where each axis point is located, and you can also know the axis point corresponding to each instance.
如图6所示,左图为原始的点云,右图为经过预测特征计算出来的对应的轴线点。同样,不同颜色深度的点表示不同的组件类型。As shown in Figure 6, the left image is the original point cloud, and the right image is the corresponding axis point calculated by the prediction feature. Similarly, points of different color depths represent different component types.
(3)用基于图的方法得到不同组件实例之间的连接关系,过程包含增删实例以得到合理的实例,实例及它们的连接关系最终以图的形式表示;(3) Use graph-based methods to obtain the connection relationship between different component instances. The process includes adding and deleting instances to obtain a reasonable instance. The instances and their connection relationships are finally represented in the form of a graph;
依据网络学习到的特征,经过第二步处理得到了对应的轴线点和候选组件实例集合,本步主要得到不同组件之间的连接关系。通过迭代求最小生成树的 最长路径的方法得到管道的整体骨架,进而初步得到组件之间的连接关系。由于网络预测存在一定的误差,本实施例使用规则优化图结构,得到实例之间合理的连接关系。最后依据实例之间的连接关系得到整体骨架。According to the characteristics learned by the network, the corresponding axis points and candidate component instance sets are obtained through the second step of processing. This step mainly obtains the connection relationship between different components. By iteratively finding the longest path of the minimum spanning tree, the overall skeleton of the pipeline is obtained, and then the connection relationship between the components is initially obtained. Due to a certain error in network prediction, this embodiment uses rules to optimize the graph structure to obtain a reasonable connection relationship between instances. Finally, the overall skeleton is obtained according to the connection relationship between the examples.
具体步骤为:The specific steps are:
(3-1)针对每一个候选的组件实例,得到候选骨架。(3-1) For each candidate component instance, a candidate skeleton is obtained.
将模板骨架和实例的轴线点利用ICP算法进行匹配,得到实例的候选骨架。模板的骨架是由端点和线表示的,为了将模板匹配到合适的位置,首先根据实例的轴线点数加密模板骨架上的点数,使得模板骨架上的点数和实例的轴线点数是一样的。然后利用匹配算法将模板的骨架放置合适的位置,得到实例的候选骨架。The axis points of the template skeleton and the instance are matched using the ICP algorithm to obtain the candidate skeleton of the instance. The skeleton of the template is represented by endpoints and lines. In order to match the template to a proper position, first encrypt the points on the template skeleton according to the axis points of the example, so that the number of points on the template skeleton is the same as the axis points of the example. Then use the matching algorithm to place the skeleton of the template in a suitable position to obtain the candidate skeleton of the example.
(3-2)MST_D得到整体的框架。(3-2) MST_D gets the overall frame.
给定轴线点,Given the axis point,
L 2={(a 1,c 1,r 1),(a 2,c 2,r 2),…(a n,c n,r n)}; L 2 ={(a 1 ,c 1 ,r 1 ),(a 2 ,c 2 ,r 2 ),...(a n ,c n ,r n )};
通过迭代提取最小生成树的最长路径的方法得到整体的框架。并用此连接关系指导得到实例之间的连接关系。The overall framework is obtained by iteratively extracting the longest path of the minimum spanning tree. And use this connection relationship to guide the connection relationship between the instances.
具体步骤如下:Specific steps are as follows:
初始化图G;Initialize graph G;
对于每个轴线点a,计算k近邻,并且距离小于ε,这里k=20;ε=0.7;满足条件的邻居与此轴线点有边相连,以此构成图G;For each axis point a, calculate k nearest neighbors, and the distance is less than ε, where k=20; ε=0.7; neighbors that meet the conditions are connected to this axis point by an edge to form a graph G;
计算最小生成树森林T;Calculate the minimum spanning tree forest T;
Figure PCTCN2020120385-appb-000001
Figure PCTCN2020120385-appb-000001
foreach t∈T doforeach t ∈ T do
计算t中最长路径dCalculate the longest path d in t
将d加入DAdd d to D
从L中删除d中的节点Remove the node in d from L
更新TUpdate T
至此得到所有点的连接关系,构成管道的框架。So far, the connection relationship of all points is obtained, which constitutes the framework of the pipeline.
(3-3)根据聚类情况,得到实例之间的初始连接关系。(3-3) According to the clustering situation, the initial connection relationship between the instances is obtained.
本步利用上面得到的轴线点之间的连接关系和聚类得到的实例信息,得到实例之间的连接关系;In this step, the connection relationship between the axis points obtained above and the instance information obtained by clustering are used to obtain the connection relationship between the instances;
D表示的管道框架是由多条无环路径d组成的,d是由轴线点组成的路径。遍历每条路径d,结合聚类结果,得到路径d上的实例之间的连接关系。The pipeline frame represented by D is composed of multiple acyclic paths d, and d is a path composed of axis points. Traverse each path d and combine the clustering results to obtain the connection relationship between the instances on the path d.
具体步骤如下:Specific steps are as follows:
首先根据每个轴线点对应的实例标签得到路径上的所有实例;First, get all the instances on the path according to the instance label corresponding to each axis point;
然后得到每个实例在路径上的起始和结束位置;Then get the starting and ending position of each instance on the path;
根据起始和结束位置得到在此路径上实例之间的连接关系;如果一个实例的起始和结束区间在另一个实例区间之内,则删掉此实例;如果两个实例的起始和结束区间重合度高于阈值ε,这里ε=0.98,则删掉拥有点数少的实例;Get the connection relationship between the instances on this path according to the start and end positions; if the start and end intervals of one instance are within the interval of another instance, delete this instance; if the start and end of the two instances If the interval coincidence degree is higher than the threshold ε, where ε=0.98, the instances with few points will be deleted;
依次处理完所有的无环路径,便可得到所有实例之间的初始关系。After processing all acyclic paths in turn, the initial relationship between all instances can be obtained.
(3-4)根据规则优化图架构,使得组件之间的连接关系合理。(3-4) Optimize the graph architecture according to the rules to make the connection relationship between the components reasonable.
根据观察可得不同类型的组件有特定的邻居关系。此步结合步骤(3-1)中得到的每个组件实例的模板信息,并利用这些连接规则来优化图架构,得到准确的实例之间的连接关系。规则如下:According to observations, different types of components have specific neighbor relationships. This step combines the template information of each component instance obtained in step (3-1), and uses these connection rules to optimize the graph architecture to obtain accurate connection relationships between instances. The rules are as follows:
直管:至多有两个邻居,且邻居实例的朝向需要相同;Direct management: There are at most two neighbors, and the directions of the neighbor instances need to be the same;
法兰:至多有两个邻居,且邻居实例的朝向需要相同;Flange: There are at most two neighbors, and the orientation of the neighbor instances needs to be the same;
弯管:至多有两个邻居,与此组件相接的两个邻居端点的法向相互垂直;Bend: There are at most two neighbors, and the normal directions of the two neighboring endpoints connected to this component are perpendicular to each other;
三通:有三个邻居,与此组件相邻接的三个邻居端点需要构成三通的布局;Tee: There are three neighbors, and the three neighboring endpoints adjacent to this component need to form a three-way layout;
四通:有四个邻居,与此组件相邻接的四个邻居端点需要构成四通的布局;Four-way: There are four neighbors, and the four neighboring endpoints adjacent to this component need to form a four-way layout;
若是不满足规则,则判定网络预测的组件类别标签出错,则进行标记;If the rule is not met, it is determined that the component category label predicted by the network is wrong, and then the label is marked;
最后检测根据标记更新实例之间的连接关系,如果邻接的端点的方向向量成垂直的状态,则在两个实例之间添加弯管实例。Finally, the detection updates the connection relationship between the instances according to the mark. If the direction vectors of the adjacent end points are in a vertical state, an elbow instance is added between the two instances.
(3-5)依据连接关系和轴线点计算骨架。(3-5) Calculate the skeleton based on the connection relationship and the axis point.
上面得到了实例之间的连接关系,并知道实例点云对应的模板骨架,接下来利用连接关系再次优化模板骨架的位置;现在便可得到最终的实例以及实例之间的连接关系,以实例为节点,以图的形式表示实例的连接关系,相邻接的实例之间有边。The connection relationship between the instances is obtained above, and the template skeleton corresponding to the instance point cloud is known. Next, the connection relationship is used to optimize the position of the template skeleton again; now the final instance and the connection relationship between the instances can be obtained, taking the instance as Nodes represent the connection relationship of instances in the form of graphs, and there are edges between adjacent instances.
(3-6)依据实例骨架得整体框架。(3-6) Obtain the overall frame based on the example skeleton.
(4)用实际的三维组件模型替代图中的节点以完成整个管道重建。(4) Replace the nodes in the figure with actual three-dimensional component models to complete the entire pipeline reconstruction.
本实施例所述的技术重构了遵循连接规则和管道中的语义关系的局部结构,结果表明,该方法能较好地从工业结构点云重构完整的管道结构。The technology described in this embodiment reconstructs the local structure that follows the connection rules and the semantic relationship in the pipeline. The results show that the method can better reconstruct the complete pipeline structure from the industrial structure point cloud.
每个轴线点带有预测的半径大小,根据这些点的半径大小取投票数最多的半径作为组件实例的半径;已知实例对应的模板的类别,半径以及模板的位置,现在用模板代替图中的节点完成整个管道的重建。Each axis point has a predicted radius. According to the radius of these points, the radius with the most votes is taken as the radius of the component instance; the type, radius, and position of the template corresponding to the instance are known. Now use the template instead of the figure. The nodes complete the reconstruction of the entire pipeline.
(5)结果展示(5) Results display
如图8所示为合成场景的重建,从左到右依次是输入的点云、用所属组件类别标记颜色的轴线点、管道的骨架、重建的管道。Figure 8 shows the reconstruction of the composite scene, from left to right are the input point cloud, the axis points marked with the color of the component category, the skeleton of the pipeline, and the reconstructed pipeline.
如图9所示,从左到右是:输入的点云、本实施例方法得到的骨架、本实施例方法的重建结果、Huang等人得到的骨架(L1-medial skeleton of point cloud)、Liu等人的方法(Cylinder detection in large-scale point cloud of pipeline plant)的重建结果(将三维工厂重建问题简化为将管道投影到平面后二维圆的检测问题)、EdgeWise软件得到的重建结果和groundtruth(正确的重建结果)。As shown in Figure 9, from left to right: the input point cloud, the skeleton obtained by the method of this embodiment, the reconstruction result of the method of this embodiment, the skeleton (L1-medial skeleton of point cloud) obtained by Huang et al., Liu The reconstruction result of the method (Cylinder detection in large-scale point cloud of pipeline plant) (simplifying the 3D factory reconstruction problem to the detection problem of the 2D circle after the pipeline is projected to the plane), the reconstruction result and groundtruth obtained by the EdgeWise software (Correct reconstruction result).
比较包含四种不同规模和复杂度的场景,从简单小场景到复杂大场景。当点云的密度和管道的复杂度增加的时候,Huang等人和Liu等人的方法会丢失组件,并且Liu等人的方法不能重建弯管等一些关节,只能重建出直的管道。商业软件EdgeWise需要大量的人工交互完成重建,交互时间越长,越能得到较好的结果,但是是一件非常耗时的事情。The comparison includes four scenes of different scales and complexity, from simple small scenes to complex large scenes. When the density of the point cloud and the complexity of the pipeline increase, the methods of Huang et al. and Liu et al. lose components, and the method of Liu et al. cannot reconstruct some joints such as elbows, but can only reconstruct straight pipes. The commercial software EdgeWise requires a lot of manual interaction to complete the reconstruction. The longer the interaction time, the better the results can be obtained, but it is a very time-consuming task.
为了评估方法的鲁棒性,对加入噪声和不同稀疏程度的点云进行了测试。这个实验模拟了在真实管道场景中会出现的问题:像自遮挡,弱光照和反射导致的高噪声和缺失。In order to evaluate the robustness of the method, the point cloud with added noise and different sparsity levels was tested. This experiment simulates the problems that can occur in real pipeline scenes: self-occlusion, high noise and missing caused by weak lighting and reflections.
从一个密集的扫描开始,通过控制虚拟扫描的参数逐渐增加每个点的噪声和稀疏程度。稀疏程度通过扫描相机的个数和每个相机的视角的个数进行控制。然后通过调整高斯参数加入不同程度的高斯噪声。图9展示了扫描稀疏程度和噪声程度从上到下不断增加,密集程度分别是100%,80%,65%,50%。Starting from a dense scan, gradually increase the noise and sparsity of each point by controlling the parameters of the virtual scan. The degree of sparsity is controlled by the number of scanning cameras and the number of viewing angles of each camera. Then add different degrees of Gaussian noise by adjusting the Gaussian parameters. Figure 9 shows that the scan sparsity and noise levels increase from top to bottom, and the density is 100%, 80%, 65%, and 50%, respectively.
图11为真实点云数据下的重建结果,从左到右为输入的点云、本实施例方法重建的结果、Liu等人的方法重建的结果、EdgeWise软件重建的结果。Fig. 11 is the reconstruction result under real point cloud data, from left to right are the input point cloud, the reconstruction result of the method in this embodiment, the reconstruction result of Liu et al., and the reconstruction result of the EdgeWise software.
实施例2:Example 2:
本公开实施例2提供了一种基于深度学习的管道三维重建系统,包括:Embodiment 2 of the present disclosure provides a pipeline 3D reconstruction system based on deep learning, including:
点云学习模块,被配置为:利用深度学习方法学习点云的特征,至少得到 点所属组件的类别、点所属组件的半径和点的方向向量;The point cloud learning module is configured to learn the characteristics of the point cloud by using a deep learning method to at least obtain the category of the component to which the point belongs, the radius of the component to which the point belongs, and the direction vector of the point;
候选实例获取模块,被配置为:利用点所属组件的半径和点的方向向量计算轴线点,结合点所属组件的类别标签对轴线点进行聚类得到候选实例;The candidate instance acquisition module is configured to calculate the axis point by using the radius of the component to which the point belongs and the direction vector of the point, and combine the category label of the component to which the point belongs to cluster the axis point to obtain the candidate instance;
图结构构件模块,被配置为:用基于图的方法得到不同组件实例之间的连接关系,以组件为节点构成图的结构;The graph structure component module is configured to: use graph-based methods to obtain the connection relationship between different component instances, and use the components as nodes to form the structure of the graph;
管道重建模块,被配置为:用实际的三维组件模型替代图中的节点以完成整个管道重建。The pipeline reconstruction module is configured to replace the nodes in the figure with the actual three-dimensional component model to complete the entire pipeline reconstruction.
具体的三维重建系统的工作方法与实施例1所述的三维重建方法相同,这里不再赘述。The specific working method of the three-dimensional reconstruction system is the same as the three-dimensional reconstruction method described in Embodiment 1, and will not be repeated here.
实施例3:Example 3:
本公开实施例3提供了一种介质,其上存储有程序,该程序被处理器执行时实现如本公开实施例1所述的基于深度学习的管道三维重建方法中的步骤。 Embodiment 3 of the present disclosure provides a medium on which a program is stored, and when the program is executed by a processor, the steps in the method for 3D reconstruction of a pipeline based on deep learning as described in Embodiment 1 of the present disclosure are realized.
实施例4:Example 4:
本公开实施例4提供了一种电子设备,包括存储器、处理器及存储在存储器上并可在处理器上运行的程序,所述处理器执行所述程序时实现如本公开实施例1所述的基于深度学习的管道三维重建方法中的步骤进行管道三维模型的重建。Embodiment 4 of the present disclosure provides an electronic device, including a memory, a processor, and a program stored in the memory and capable of running on the processor. The processor executes the program as described in Embodiment 1 of the present disclosure. The steps in the deep learning-based pipeline 3D reconstruction method are to reconstruct the pipeline 3D model.
以上所述仅为本公开的优选实施例而已,并不用于限制本公开,对于本领域的技术人员来说,本公开可以有各种更改和变化。凡在本公开的精神和原则之内,所作的任何修改、等同替换、改进等,均应包含在本公开的保护范围之内。The above descriptions are only preferred embodiments of the present disclosure and are not used to limit the present disclosure. For those skilled in the art, the present disclosure may have various modifications and changes. Any modification, equivalent replacement, improvement, etc. made within the spirit and principle of the present disclosure shall be included in the protection scope of the present disclosure.

Claims (10)

  1. 一种基于深度学习的管道三维重建方法,其特征在于,包括以下步骤:A pipeline 3D reconstruction method based on deep learning, which is characterized in that it comprises the following steps:
    获取管道的点云数据,利用深度学习方法学习点云的特征,至少得到点所属组件的类别、点所属组件的半径和点的方向向量;Obtain the point cloud data of the pipeline, use the deep learning method to learn the characteristics of the point cloud, at least get the category of the component to which the point belongs, the radius of the component to which the point belongs, and the direction vector of the point;
    利用点所属组件的半径和点的方向向量计算轴线点,结合点所属组件的类别标签对轴线点进行聚类得到候选实例;Use the radius of the component to which the point belongs and the direction vector of the point to calculate the axis point, and combine the category label of the component to which the point belongs to cluster the axis points to obtain candidate instances;
    用基于图的方法得到不同候选实例之间的连接关系,以组件为节点构成图的结构;Use graph-based methods to obtain the connection relationship between different candidate instances, and use components as nodes to form the structure of the graph;
    用实际的三维组件模型替代图中的节点以完成整个管道重建。Replace the nodes in the figure with actual three-dimensional component models to complete the entire pipeline reconstruction.
  2. 如权利要求1所述的基于深度学习的管道三维重建方法,其特征在于,采用PointCNN卷积神经网络来实现点云的特征学习,输出点所属组件的类别、点所属组件的半径和点的方向向量。The pipeline 3D reconstruction method based on deep learning according to claim 1, wherein the PointCNN convolutional neural network is used to realize the feature learning of the point cloud, and the category of the component to which the point belongs, the radius of the component to which the point belongs, and the direction of the point are output. vector.
  3. 如权利要求1所述的基于深度学习的管道三维重建方法,其特征在于,所述轴线点的计算方法,具体为:The pipeline 3D reconstruction method based on deep learning according to claim 1, wherein the calculation method of the axis point is specifically:
    a i=p i+o i×r i a i =p i +o i ×r i
    其中,p i为扫描点,r i为点所属组件的半径,o i为点的方向向量; Among them, p i is the scanning point, r i is the radius of the component to which the point belongs, and o i is the direction vector of the point;
    或者,or,
    利用点所属组件的类别标签,使用聚类算法DBSCAN对轴线点进行聚类,得到场景中各个候选实例集合,进而得到每个轴线点所在的实例编号和每个实例对应的轴线点。Using the category label of the component to which the point belongs, clustering the axis points using the clustering algorithm DBSCAN to obtain the set of candidate instances in the scene, and then obtain the instance number where each axis point is located and the axis point corresponding to each instance.
  4. 如权利要求1所述的基于深度学习的管道三维重建方法,其特征在于,用基于图的方法得到不同组件实例之间的连接关系,具体为:The pipeline 3D reconstruction method based on deep learning according to claim 1, characterized in that the connection relationship between different component instances is obtained by a graph-based method, specifically:
    针对每一个候选的组件实例,得到候选骨架;For each candidate component instance, a candidate skeleton is obtained;
    通过迭代求最小生成树的最长路径的方法得到管道的整体骨架;Obtain the overall skeleton of the pipeline by iteratively finding the longest path of the minimum spanning tree;
    根据聚类情况,得到实例之间的初始连接关系;According to the clustering situation, get the initial connection relationship between the instances;
    根据规则优化图架构,使得组件之间的连接关系合理;Optimize the graph architecture according to the rules to make the connection relationship between the components reasonable;
    依据连接关系和轴线点计算骨架;Calculate the skeleton based on the connection relationship and axis points;
    依据实例骨架得到整体框架。Obtain the overall frame based on the example skeleton.
  5. 如权利要求4所述的基于深度学习的管道三维重建方法,其特征在于,针对每一个候选的组件实例,得到候选骨架,具体为:The pipeline 3D reconstruction method based on deep learning according to claim 4, characterized in that, for each candidate component instance, a candidate skeleton is obtained, specifically:
    模板的骨架通过端点和线表示的,首先根据实例的轴线点数加密模板骨架上的点数,使得模板骨架上的点数和实例的轴线点数一样;The skeleton of the template is represented by endpoints and lines. First, the number of points on the template skeleton is encrypted according to the axis points of the example, so that the number of points on the template skeleton is the same as the number of axis points of the example;
    利用ICP匹配算法将模板的骨架放置合适的位置,得到实例的候选骨架。The ICP matching algorithm is used to place the skeleton of the template in a suitable position, and the candidate skeleton of the example is obtained.
  6. 如权利要求4所述的基于深度学习的管道三维重建方法,其特征在于,根据聚类情况,得到实例之间的初始连接关系,具体为:The pipeline 3D reconstruction method based on deep learning according to claim 4, characterized in that, according to the clustering situation, the initial connection relationship between the instances is obtained, specifically:
    根据每个轴线点对应的实例标签得到路径上的所有实例,得到每个实例在路径上的起始和结束位置;Obtain all instances on the path according to the instance label corresponding to each axis point, and get the starting and ending position of each instance on the path;
    根据起始和结束位置得到在此路径上实例之间的连接关系;如果一个实例的起始和结束区间在另一个实例区间之内,则删掉此实例;如果两个实例的起始和结束区间重合度高于阈值,则删掉拥有点数少的实例;Get the connection relationship between the instances on this path according to the start and end positions; if the start and end intervals of one instance are within the interval of another instance, delete this instance; if the start and end of the two instances If the interval coincidence degree is higher than the threshold, the instances with few points will be deleted;
    依次处理完所有的无环路径,得到所有实例之间的初始关系;Process all acyclic paths in turn to obtain the initial relationship between all instances;
    或者,or,
    根据规则优化图架构,使得组件之间的连接关系合理,所述规则具体为:The graph architecture is optimized according to the rules to make the connection relationship between the components reasonable. The specific rules are:
    直管:至多有两个邻居,且邻居实例的朝向需要相同;Direct management: There are at most two neighbors, and the directions of the neighbor instances need to be the same;
    法兰:至多有两个邻居,且邻居实例的朝向需要相同;Flange: There are at most two neighbors, and the orientation of the neighbor instances needs to be the same;
    弯管:至多有两个邻居,与此组件相接的两个邻居端点的法向相互垂直;Bend: There are at most two neighbors, and the normal directions of the two neighboring endpoints connected to this component are perpendicular to each other;
    三通:有三个邻居,与此组件相邻接的三个邻居端点需要构成三通的布局;Tee: There are three neighbors, and the three neighboring endpoints adjacent to this component need to form a three-way layout;
    四通:有四个邻居,与此组件相邻接的四个邻居端点需要构成四通的布局;Four-way: There are four neighbors, and the four neighboring endpoints adjacent to this component need to form a four-way layout;
    若是不满足规则,则判定网络预测的组件类别标签出错,则进行标记;根据标记更新实例之间的连接关系,如果邻接的端点的方向向量成垂直的状态,则在两个实例之间添加弯管实例;If the rules are not met, it is determined that the component category label predicted by the network is wrong, and then the label is marked; the connection relationship between the instances is updated according to the label. If the direction vector of the adjacent end point is vertical, a curve is added between the two instances. Tube instance
    或者,or,
    依据连接关系和轴线点计算骨架,具体为:Calculate the skeleton based on the connection relationship and the axis points, specifically:
    利用实例连接关系再次优化模板骨架的位置,得到最终的实例以及实例之间的连接关系,以实例为节点,以图的形式表示实例的连接关系,相邻接的实例之间有边。Use the instance connection relationship to optimize the position of the template skeleton again to obtain the final instance and the connection relationship between the instances. The instance is the node, and the connection relationship of the instance is represented in the form of a graph. There are edges between adjacent instances.
  7. 如权利要求1所述的基于深度学习的管道三维重建方法,其特征在于,每个轴线点带有预测的半径大小,根据这些点的半径大小取投票数最多的半径作为组件实例的半径;The pipeline 3D reconstruction method based on deep learning according to claim 1, wherein each axis point has a predicted radius, and the radius with the most votes is taken as the radius of the component instance according to the radius of these points;
    根据得到的实例对应的模板的类别、半径以及模板的位置,用模板代替图中的节点完成整个管道的重建。According to the type, radius and position of the template corresponding to the obtained instance, the template is used to replace the nodes in the figure to complete the reconstruction of the entire pipeline.
  8. 一种基于深度学习的管道三维重建系统,其特征在于,包括:A pipeline 3D reconstruction system based on deep learning, which is characterized in that it includes:
    点云学习模块,被配置为:获取管道的点云数据,利用深度学习方法学习点云的特征,至少得到点所属组件的类别、点所属组件的半径和点的方向向量;The point cloud learning module is configured to: obtain the point cloud data of the pipeline, use the deep learning method to learn the characteristics of the point cloud, and at least obtain the category of the component to which the point belongs, the radius of the component to which the point belongs, and the direction vector of the point;
    候选实例获取模块,被配置为:利用点所属组件的半径和点的方向向量计算轴线点,结合点所属组件的类别标签对轴线点进行聚类得到候选实例;The candidate instance acquisition module is configured to calculate the axis point by using the radius of the component to which the point belongs and the direction vector of the point, and combine the category label of the component to which the point belongs to cluster the axis point to obtain the candidate instance;
    图结构构件模块,被配置为:用基于图的方法得到不同候选实例之间的连 接关系,以组件为节点构成图的结构;The graph structure component module is configured to: obtain the connection relationship between different candidate instances using a graph-based method, and use components as nodes to form the structure of the graph;
    管道重建模块,被配置为:用实际的三维组件模型替代图中的节点以完成整个管道重建。The pipeline reconstruction module is configured to replace the nodes in the figure with the actual three-dimensional component model to complete the entire pipeline reconstruction.
  9. 一种介质,其上存储有程序,其特征在于,该程序被处理器执行时实现如权利要求1-7任一项所述的基于深度学习的管道三维重建方法中的步骤。A medium having a program stored thereon, wherein the program is executed by a processor to implement the steps in the deep learning-based pipeline 3D reconstruction method according to any one of claims 1-7.
  10. 一种电子设备,包括存储器、处理器及存储在存储器上并可在处理器上运行的程序,其特征在于,所述处理器执行所述程序时实现如权利要求1-7任一项所述的基于深度学习的管道三维重建方法中的步骤进行管道三维模型的重建。An electronic device, comprising a memory, a processor, and a program stored on the memory and running on the processor, wherein the processor executes the program when the program is executed as described in any one of claims 1-7 The steps in the deep learning-based pipeline 3D reconstruction method are to reconstruct the pipeline 3D model.
PCT/CN2020/120385 2020-03-10 2020-10-12 Deep learning-based three-dimensional pipeline reconstruction method, system, medium, and apparatus WO2021179593A1 (en)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN202010160869.8 2020-03-10
CN202010160869.8A CN111429563B (en) 2020-03-10 2020-03-10 Pipeline three-dimensional reconstruction method, system, medium and equipment based on deep learning

Publications (1)

Publication Number Publication Date
WO2021179593A1 true WO2021179593A1 (en) 2021-09-16

Family

ID=71546340

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2020/120385 WO2021179593A1 (en) 2020-03-10 2020-10-12 Deep learning-based three-dimensional pipeline reconstruction method, system, medium, and apparatus

Country Status (2)

Country Link
CN (1) CN111429563B (en)
WO (1) WO2021179593A1 (en)

Cited By (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN114494586A (en) * 2022-01-10 2022-05-13 南京林业大学 Lattice projection deep learning network broad-leaved tree branch and leaf separation and skeleton reconstruction method
CN116258835A (en) * 2023-05-04 2023-06-13 武汉大学 Point cloud data three-dimensional reconstruction method and system based on deep learning
WO2023096579A3 (en) * 2021-11-26 2023-08-17 Nanyang Technological University Method and system for building information modeling (bim) reconstruction for a piping system
CN117408007A (en) * 2023-12-15 2024-01-16 华东交通大学 Three-dimensional pipe network initial flow distribution method, system, storage medium and electronic equipment
WO2024077084A1 (en) * 2022-10-04 2024-04-11 Nutech Ventures Dual-function depth camera array for inline 3d reconstruction of complex pipelines

Families Citing this family (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN111429563B (en) * 2020-03-10 2021-08-13 山东大学 Pipeline three-dimensional reconstruction method, system, medium and equipment based on deep learning
CN111951401B (en) * 2020-08-07 2024-05-17 中山大学 Precise three-dimensional geometric model construction method of pipeline elbow capable of being used for laser scanning
CN112132956A (en) * 2020-09-19 2020-12-25 北京首钢国际工程技术有限公司 Method for realizing reverse model reconstruction of industrial pipeline truss building
CN112815849B (en) * 2021-02-19 2022-07-12 三门核电有限公司 Nuclear power pipeline modeling method based on laser tracking
CN114359529A (en) * 2022-01-10 2022-04-15 大唐融合通信股份有限公司 Model disassembling method, device and system
CN116930192B (en) * 2023-07-26 2024-02-09 常州润来科技有限公司 High-precision copper pipe defect detection method and system
CN117951599B (en) * 2024-01-16 2024-07-23 北京市科学技术研究院 Underground piping diagram generation method and device based on radar image

Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN102538677A (en) * 2012-01-16 2012-07-04 苏州临点三维科技有限公司 Optics-based quick pipeline detection method
WO2018175878A1 (en) * 2017-03-23 2018-09-27 The General Hospital Corporation Apparatus, methods and computer-accessible media for in situ three-dimensional reconstruction of luminal structures
CN109147038A (en) * 2018-08-21 2019-01-04 北京工业大学 Pipeline three-dimensional modeling method based on three-dimensional point cloud processing
CN110288695A (en) * 2019-06-13 2019-09-27 电子科技大学 Single-frame images threedimensional model method of surface reconstruction based on deep learning
CN110349247A (en) * 2018-04-08 2019-10-18 哈尔滨工业大学 A kind of indoor scene CAD 3D method for reconstructing based on semantic understanding
CN111429563A (en) * 2020-03-10 2020-07-17 山东大学 Pipeline three-dimensional reconstruction method, system, medium and equipment based on deep learning

Family Cites Families (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8605093B2 (en) * 2010-06-10 2013-12-10 Autodesk, Inc. Pipe reconstruction from unorganized point cloud data
CN102915561B (en) * 2012-09-27 2015-03-04 清华大学 Method of three-dimensional reconstruction for pipeline structures
CN106874580B (en) * 2017-01-22 2020-05-26 合肥工业大学 Pipe bending model reconstruction method based on point cloud data
US20180315232A1 (en) * 2017-05-01 2018-11-01 Lockheed Martin Corporation Real-time incremental 3d reconstruction of sensor data
CN110321910B (en) * 2018-03-29 2021-05-28 中国科学院深圳先进技术研究院 Point cloud-oriented feature extraction method, device and equipment
CN108876831A (en) * 2018-06-08 2018-11-23 西北工业大学 A kind of building three-dimensional point cloud method for registering based on deep learning
CN109035224B (en) * 2018-07-11 2021-11-09 哈尔滨工程大学 Submarine pipeline detection and three-dimensional reconstruction method based on multi-beam point cloud

Patent Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN102538677A (en) * 2012-01-16 2012-07-04 苏州临点三维科技有限公司 Optics-based quick pipeline detection method
WO2018175878A1 (en) * 2017-03-23 2018-09-27 The General Hospital Corporation Apparatus, methods and computer-accessible media for in situ three-dimensional reconstruction of luminal structures
CN110349247A (en) * 2018-04-08 2019-10-18 哈尔滨工业大学 A kind of indoor scene CAD 3D method for reconstructing based on semantic understanding
CN109147038A (en) * 2018-08-21 2019-01-04 北京工业大学 Pipeline three-dimensional modeling method based on three-dimensional point cloud processing
CN110288695A (en) * 2019-06-13 2019-09-27 电子科技大学 Single-frame images threedimensional model method of surface reconstruction based on deep learning
CN111429563A (en) * 2020-03-10 2020-07-17 山东大学 Pipeline three-dimensional reconstruction method, system, medium and equipment based on deep learning

Cited By (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2023096579A3 (en) * 2021-11-26 2023-08-17 Nanyang Technological University Method and system for building information modeling (bim) reconstruction for a piping system
CN114494586A (en) * 2022-01-10 2022-05-13 南京林业大学 Lattice projection deep learning network broad-leaved tree branch and leaf separation and skeleton reconstruction method
CN114494586B (en) * 2022-01-10 2024-03-19 南京林业大学 Lattice projection deep learning network broadleaf branch and leaf separation and skeleton reconstruction method
WO2024077084A1 (en) * 2022-10-04 2024-04-11 Nutech Ventures Dual-function depth camera array for inline 3d reconstruction of complex pipelines
CN116258835A (en) * 2023-05-04 2023-06-13 武汉大学 Point cloud data three-dimensional reconstruction method and system based on deep learning
CN117408007A (en) * 2023-12-15 2024-01-16 华东交通大学 Three-dimensional pipe network initial flow distribution method, system, storage medium and electronic equipment

Also Published As

Publication number Publication date
CN111429563A (en) 2020-07-17
CN111429563B (en) 2021-08-13

Similar Documents

Publication Publication Date Title
WO2021179593A1 (en) Deep learning-based three-dimensional pipeline reconstruction method, system, medium, and apparatus
Yan et al. 3D room layout estimation from a single RGB image
Liu et al. Floornet: A unified framework for floorplan reconstruction from 3d scans
Wang et al. Fully automated generation of parametric BIM for MEP scenes based on terrestrial laser scanning data
Dimitrov et al. Non‐uniform B‐spline surface fitting from unordered 3D point clouds for as‐built modeling
Lee et al. Skeleton-based 3D reconstruction of as-built pipelines from laser-scan data
Perez-Perez et al. Scan2BIM-NET: Deep learning method for segmentation of point clouds for scan-to-BIM
Tang et al. Automatic reconstruction of as-built building information models from laser-scanned point clouds: A review of related techniques
Chuang et al. Change component identification of BIM models for facility management based on time-variant BIMs or point clouds
CN115017805B (en) Method and system for planning optimal path of nuclear retired field based on bidirectional A-x algorithm
CN118278094B (en) Building three-dimensional model calculation method and system based on database
Phalak et al. Scan2plan: Efficient floorplan generation from 3d scans of indoor scenes
Nguyen et al. Structural modeling from depth images
Zhang et al. VGI3D: an interactive and low-cost solution for 3D building modelling from street-level VGI images
Xu et al. Three-dimensional object detection with deep neural networks for automatic as-built reconstruction
Zheng et al. Buildingfusion: Semantic-aware structural building-scale 3d reconstruction
Jiang et al. Extracting 3-D structural lines of building from ALS point clouds using graph neural network embedded with corner information
Yang et al. Cost-efficient image semantic segmentation for indoor scene understanding using weakly supervised learning and BIM
CN117523403A (en) Method, system, equipment and medium for detecting spot change of residence map
Chen et al. Plane segmentation for a building roof combining deep learning and the RANSAC method from a 3D point cloud
Arayici et al. Modeling 3D scanned data to visualize the built environment
Son et al. Automatic 3D reconstruction of as-built pipeline based on curvature computations from laser-scanned data
Yoon et al. UAV-based automated 3D modeling framework using deep learning for building energy modeling
Upadhyay et al. Flnet: graph constrained floor layout generation
Sahebdivani et al. Deep learning based classification of color point cloud for 3D reconstruction of interior elements of buildings

Legal Events

Date Code Title Description
121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 20924440

Country of ref document: EP

Kind code of ref document: A1

NENP Non-entry into the national phase

Ref country code: DE

122 Ep: pct application non-entry in european phase

Ref document number: 20924440

Country of ref document: EP

Kind code of ref document: A1