Literature DB >> 33704665

Path planning for endovascular catheterization under curvature constraints via two-phase searching approach.

Zhen Li1,2, Jenny Dankelman3, Elena De Momi4.   

Abstract

PURPOSE: Planning a safe path for flexible catheters is one of the major challenges of endovascular catheterization. State-of-the-art methods rarely consider the catheter curvature constraint and reduced computational time of path planning which guarantees the possibility to re-plan the path during the actual operation.
METHODS: In this manuscript, we propose a fast two-phase path planning approach under the robot curvature constraint. Firstly, the vascular structure is extracted and represented by vascular centerlines and corresponding vascular radii. Then, the path is searched along the vascular centerline using breadth first search (BFS) strategy and locally optimized via the genetic algorithm (GA) to satisfy the robot curvature constraint. This approach (BFS-GA) is able to respect the robot curvature constraint while keeping it close to the centerlines as much as possible. We can also reduce the optimization search space and perform parallel optimization to shorten the computational time.
RESULTS: We demonstrate the method's high efficiency in two-dimensional and three-dimensional space scenarios. The results showed the planner's ability to satisfy the robot curvature constraint while keeping low computational time cost compared with sampling-based methods. Path replanning in femoral arteries can reach an updating frequency at [Formula: see text]Hz.
CONCLUSION: The presented work is suited for surgical procedures demanding satisfying curvature constraints while optimizing specified criteria. It is also applicable for curvature constrained robots in narrow passages.

Entities:  

Keywords:  Autonomous endovascular intervention; Curvature constraints; Flexible catheter; Path planning; Robotic surgery

Mesh:

Year:  2021        PMID: 33704665      PMCID: PMC8052250          DOI: 10.1007/s11548-021-02328-x

Source DB:  PubMed          Journal:  Int J Comput Assist Radiol Surg        ISSN: 1861-6410            Impact factor:   2.924


Introduction

Percutaneous coronary intervention (PCI) is used to widen stenotic and occluded blood vessels by pushing the plaque aside and placing a stent nearby to restore and maintain the blood circulation. For example in Fig. 1, a catheter is inserted from a femoral artery and targeting the occlusion site.
Fig. 1

Clinical background (A) coronary endovascular procedure, (B) femoral endovascular procedure (The anatomy models are made using BodyParts3D, ©2008 The Database Center for Life Science licensed under CC Attribution-Share Alike 2.1 Japan)

Clinical background (A) coronary endovascular procedure, (B) femoral endovascular procedure (The anatomy models are made using BodyParts3D, ©2008 The Database Center for Life Science licensed under CC Attribution-Share Alike 2.1 Japan) Tool and navigation guidance can lower the skill requirements for percutaneous treatment. Nowadays, steerable catheters have been developed via mechanical, magnetic, and fluidic actuation principles. Steerable catheters have different bending capabilities exhibiting a minimum bending radius. The minimum bending radius found in literature lies between 8.13mm and 171mm [17]. Path planning is one of the major challenges of endovascular catheterization. Vascular centerlines were seen as a reference trajectory, and centerline extraction has aroused the interest of researchers. A graph matching method is proposed to establish the correspondence between the 3D pre-operative and 2D intra-operative skeletons extracting from fluoroscopic images, and then, the two skeletons are registered by skeleton deformation [19]. Nevertheless, the path planning approach which merely follows centerlines might be infeasible when the path curvature exceeds catheters bending capability. For example, if the robot is attempting to follow the centerlines (like in [19]), the minimum bending radius is less than 1mm at the bifurcation (Fig. 1B), which exceeds the robot bending capability 13.1mm [1] and makes the robot fail to follow. A performant path planner should provide a reliable path within the catheter capability. Sampling-based methods such as extended probabilistic roadmap [8] and bidirectional rapidly exploring random tree (Bi-RRT) [5] are able to plan the path in configuration space. These methods have been coupled with Dubins path and Bézier spline to generate curvature bounded paths. Adaptive fractal tree (AFT) [13] takes advantage of the fractal theory and the architecture of graphics processing units (GPUs) paralleling the planning process. It has a higher success rate than RRTs, as demonstrated for needle insertions in a complex environment [13]. However, the success rate of RRTs or AFT is not always ensured. To overcome the drawbacks mentioned above, a compromise between following the vascular centerlines and satisfying the curvature constraint is needed. An approach that simply decreases the path arch height at the turning until the curvature constraint is satisfied was implemented [18]. In [6], an ant colony optimization method was presented with an average time cost of 12.3s (min 2, max 30). Also in [14], a backbone curve method was implemented to optimize the path under kinematic analysis for a cable-driven continuum robot in a cardiovascular system. Nevertheless, this work considers the constrained optimization problem along the overall path without reducing the optimization search space. More importantly, reducing computational time would help path planners to be applied in path replanning. Intra-operatively, planned paths might be infeasible or less accurate due to environment deformations and sensing uncertainties. The work in [7] quantified the displacement of arteries during endovascular catheterization: The aortic bifurcation was mostly displaced in a cranial direction with the median cranio-caudal dislocation of 6.7mm (min 2.1, max 12.3). Considering that the high computational time of 12.3s [6] can barely make the path adapted to the deformation, the need for real-time path planning with low computational time is highlighted. In real applications, the proper replanning frequency is usually constrained by multiple factors: the catheter tip position tracking frequency, vision sensing feedback frequency, and controller frequency. For example, the frequency of an electromagnetic tracking system (Aurora) is 40Hz [11], the frequency of intra-operative model reconstruction is 1.25Hz [19], and the controller frequency is 10Hz [15]. Therefore, the replanning frequency needs to be set accordingly. In this manuscript, we propose a fast two-phase path planning approach considering the robot curvature and time constraints.

Methodology

Pipeline for the proposed path planning approach: given centerlines and radii, global planner computes a tentative curve, then local planner optimizes the curve to satisfy the catheter curvature constraint The proposed approach is a two-phase searching framework (see pipeline in Fig. 2). The inputs of the path planner are the centerline points and their minimum distances to the vascular walls , where i is the running index (detailed in Sec 2.1). Globally, we find a cubic B-spline curve along the vascular centerlines from a user-defined initial point to a goal point (detailed in Sec 2.2). Locally, the aforementioned curve is optimized to satisfy the catheter curvature constraint. The final output curve is the curve with locally optimized curve segments (detailed in Sec 2.3).
Fig. 2

Pipeline for the proposed path planning approach: given centerlines and radii, global planner computes a tentative curve, then local planner optimizes the curve to satisfy the catheter curvature constraint

Centerline extraction

Our approach employs the method demonstrated in [2], which treats the centerlines as the minimal action paths linking Voronoi vertices inside the model surface. By solving a nonlinear hyperbolic equation (Eikonal equation) followed by an ordinary differential equation, the approach [2] provides the minimal action paths points that locally maximize their minimum distances to the boundary of the surface. The vascular modeling toolkit (VMTK) library based on [2] was used to automatically extract and . For example, Fig 3A shows the Voronoi regions with Voronoi vertices (blue), Voronoi edges (yellow), and extracted centerline points (green).
Fig. 3

The schematic view of: (A) Voronoi regions to extract centerlines and radii, where Voronoi vertices, Voronoi edges, and centerlines are blue, yellow, and green, respectively. (B) Example of path points definition (C) Example of curve segments to be optimized

Global planner

The schematic view of: (A) Voronoi regions to extract centerlines and radii, where Voronoi vertices, Voronoi edges, and centerlines are blue, yellow, and green, respectively. (B) Example of path points definition (C) Example of curve segments to be optimized From the global planner, a tentative curve from an initial point to a goal point inside blood vessels is obtained (see Fig 3B). Each waypoint is presented in the N-dimensional Cartesian coordinate system ( or 3).The initial point is regarded as the exploration tree root. The breadth first search (BFS) strategy starts at the tree root and explores the k-nearest neighbor centerline nodes at the present depth prior to moving on to the nodes at the next depth level. It stops when the goal point is visited. Thus a list of centerline points from to is obtained by navigating through the BFS tree. The list of points is smoothed via cubic B-spline interpolation and a tentative B-spline curve is then obtained. Given a knot sequence , B-splines with degree can be defined by the Cox-de Boor recursion formula as (2), where w is the parametric space of the B-spline.

Local planner

The curvature at along the B-spline interpolated curve is defined as (3) in a generic form. Specifying , the expression is simplified as (4).The curvature constraint is expressed as (5), and S is the allowed maximal curvature value depending on robot kinematic constraints.It is evaluated for the tentative curve firstly. If the constraint is satisfied, will be the final path without further optimization. Otherwise, local optimization will be applied. The curve to be optimized is defined aswhere is the curve segment exceeding robot bending capability, and it is represented by a list of waypoints (see Fig. 3C). is the user-defined marginal capacity for local optimization, such as of the total number of path points. If the initial or goal point is included in , its pose will also be optimized. Schematics of the genetic algorithm procedure for local optimization Genetic algorithm (GA) finds the optimal re-interpolated curve segment. In Fig. 4, there are 8 chromosomes making up the initial population. Each chromosome is composed of 2 genes, which are the parameters determining the re-interpolated B-spline curve . Specifically, the gene is the number of points that are assigned with weight 0 when performing B-spline fitting; the gene is the smoothness value that affects the trade-off between smoothness and displacement during spline fitting, and it is the upper boarder of the error sum of displacement squares. Then the fitness is computed for each re-interpolated curve segment according to a cost function. Next, the best re-interpolated curves are selected for mating. For example, there are 4 chromosomes selected for mating in Fig. 4. Then the crossover and mutation of genes are performed so that the population is updated. During mutation, a Gaussian distributed noise is added to the genes. Finally, the optimal curve segment is selected from the population after iterations.
Fig. 4

Schematics of the genetic algorithm procedure for local optimization

The cost function is designed to find the optimal path by a trade-off between the distance to vascular walls, path length, and curvature. The constrained optimization problem is formulated aswhere is the mean value of normalized distances to the centerlines, is the mean value of normalized curvatures, and is the normalized path length. The mean value of the normalized distances to the centerlines iswhere is the distance from B-spline curve to the centerline. At the i-th index, is computed by the minimum value of Euclidean distance from the new point to centerline points . The mean value of normalized curvatures is formulated asThe normalized path length is presented as (11), where the length is a cumulative sum of the distance between adjacent points.Moreover, there are two constraints in (7): the curvature constraint and the collision avoidance constraint. In the collision avoidance constraint, by keeping the distance smaller than the vascular radius, the point is ensured to locate inside blood vessels. Since the path points are already refined in the B-spline interpolation in (2), the collision avoidance constraint is checked merely for the path points to reduce computational time cost. The constrained optimization problem (7) is converted to an unconstrained one via moving constraints to the objective function asHere, in order to satisfy the hard constraints (curvature constraint and collision avoidance), the weights assigned to the cost function should have a significant difference between and others, for example . When the hard constraints are satisfied, the last two elements are 0, otherwise, a large number will be added to the cost function value , indicating that the corresponding solution will not be selected since the procedure intends to find the minimum cost value. After iterations, if the optimal cost value is greater than a reasonable threshold (such as 1000), which means the constraints are not fully satisfied, there is no feasible solution until now. To look for new solutions within the time limit, the number of iterations will be increased. If the time limit is reached and there is still no feasible solution found, the path planner fails to find a path respecting all constraints. There may be several portions of the tentative curve exceeding the allowed maximum curvature. In that case, each portion is assigned to an individual local planning thread. Multiple threads are carried on in parallel, instead of being conducted in serial to reduce computational time. After all the threads are done, the final path under curvature constraint is obtained.

Evaluation metrics

Multiple criteria are chosen for performance evaluation. The time cost t is the time spent on path planning in a single trail from start to finish. The path length (12) is one of the essential components to evaluate the path optimality, and it is normalized by dividing it with the shortest distance from the initial point to the goal point. The curvature (3) is used to evaluate the bending extent of a curve. The minimum distance to vascular walls at point can be obtained by the subtraction of two elements: the vascular radius and the distance to vascular centerline given in (9). The distance to the vascular wall represents a safety margin ensuring collision avoidance between the catheter tip and vascular wall. To prevent physical harms as scratching to soft tissues if the catheter comes in contact with vascular walls, the distance to the vascular wall should not be less than the outer radius of the catheter. The success rate is defined as the fraction or percentage of success among a number of attempts as , where is the successful times to find a path and n is the number of attempts. For the proposed two-phase searching approach in this manuscript, a feasible path solution can be found as long as there is a feasible solution between initial and goal points.

Experimental setup

The datasets description and related parameters of experiments This work targets endovascular procedures such as PCI, EVAR, TAVI, and iliac recanalization. The datasets include models such as coronary artery, aorta, femoral artery, peripheral arterial, etc., to evaluate and validate the approach. The datasets are classified into 4 groups, including 2D (G1, G2) and 3D (G3, G4) space scenarios. The dataset G1 contains 2D images describing femoral arteries (pixel resolution of and spacing of 0.68mm). The dataset G2 includes 2D images describing lower limb arteries (pixel resolution of and spacing of 0.37mm). The dataset G3 includes several 3D mesh models: (i) A model which takes patient-specific computed tomography (CT) images as inputs, typically in a voxel dimension with a voxel spacing of mm; (ii) A model which takes patient-specific magnetic resonance imaging (MRI) images as inputs, typically in a voxel dimension with a voxel spacing of mm; (iii) An embeddable model of the lower limb made from anatomical parts, with the physical dimension of mm; (iv) A mesh model of a single femoral artery with a physical dimension of mm. The dataset G4 includes a 3D mesh model describing coronary arteries in a physical dimension of mm. Table 1 provides other information of the datasets, among which the tortuosity is used to measure the arc-chord ratio of vascular structure.
Table 1

The datasets description and related parameters of experiments

datasetsubjectstortuositysourceS (mm\documentclass[12pt]{minimal} \usepackage{amsmath} \usepackage{wasysym} \usepackage{amsfonts} \usepackage{amssymb} \usepackage{amsbsy} \usepackage{mathrsfs} \usepackage{upgreek} \setlength{\oddsidemargin}{-69pt} \begin{document}$$^{-1}$$\end{document}-1)trials
G15\documentclass[12pt]{minimal} \usepackage{amsmath} \usepackage{wasysym} \usepackage{amsfonts} \usepackage{amssymb} \usepackage{amsbsy} \usepackage{mathrsfs} \usepackage{upgreek} \setlength{\oddsidemargin}{-69pt} \begin{document}$$2.365\pm 0.100$$\end{document}2.365±0.100-0.08250
G23\documentclass[12pt]{minimal} \usepackage{amsmath} \usepackage{wasysym} \usepackage{amsfonts} \usepackage{amssymb} \usepackage{amsbsy} \usepackage{mathrsfs} \usepackage{upgreek} \setlength{\oddsidemargin}{-69pt} \begin{document}$$1.067\pm 0.015$$\end{document}1.067±0.015[3]0.10150
G34\documentclass[12pt]{minimal} \usepackage{amsmath} \usepackage{wasysym} \usepackage{amsfonts} \usepackage{amssymb} \usepackage{amsbsy} \usepackage{mathrsfs} \usepackage{upgreek} \setlength{\oddsidemargin}{-69pt} \begin{document}$$1.075\pm 0.045$$\end{document}1.075±0.045[4, 12, 16]0.08200
G41\documentclass[12pt]{minimal} \usepackage{amsmath} \usepackage{wasysym} \usepackage{amsfonts} \usepackage{amssymb} \usepackage{amsbsy} \usepackage{mathrsfs} \usepackage{upgreek} \setlength{\oddsidemargin}{-69pt} \begin{document}$$1.501\pm 0.120$$\end{document}1.501±0.120[16]0.20100
The inputs of the path planner are obtained as follows. First, the centerline is extracted using the VMTK module on the platform 3DSlicer. Second, Gaussian distributed noise is added to the initial and goal points in each trail to increase data variability. Third, without loss of generality, the path planner is designed in a generic form which takes the robot’s specification S as an input. The experiments are carried out on a computer equipped with an Intel (R) Core (TM) i5-8250U CPU @ 1.60GHz 1.80GHz processor and 8GB RAM. The proposed approach is compared with sampling-based methods RRT and RRT* [10]. Compared with the basic RRT and RRT* [9], the extended ones [10] take random samples on centerlines instead of randomly sampling inside the vascular model. The parameter specification is given as follows: the maximum number of samples to take before timing out is 4048, the probability of checking for a connection to the goal is 0.1, and the number of nearby branches to rewire is 32.

Statistical analysis

The statistically significant difference between the proposed method and others will be evaluated via Kruskal-Wallis test in this work. It is a nonparametric test that does not assume a normal distribution of populations. The null hypothesis is that there is no significant difference between solutions using different methods. If the significance level , the null hypothesis is accepted having . If , the null hypothesis is rejected, which demonstrates that there is a significant difference between the proposed method with others. The performance comparison between the proposed method and sampling-based methods [10] according to (A) time cost, (B) path length, (C) distance to vascular walls, and (D) curvature. ( using Kruskal-Wallis test)

Results and discussion

The proposed approach is performed on our datasets and compared with sampling-based methods. Figure 5A shows that with respect to computational time cost, the proposed method has a smaller median and variance. In specific scenarios, where the blood vessels are slender and narrow, collision checking and avoidance of RRT series could take more time than continuous sampling along the vascular centerlines. More importantly, instead of considering the curvature constraint in the overall path planning which can be time consuming, we optimize curve segments in the local planner, for the reason that in most cases the curvature limitation would be respected except for some sharp turns along the centerlines. Therefore, the proposed method takes less computational time. Reducing computational time would help the path planner to be applied in path replanning. For example, the time cost on G1 is ms and the path replanning can achieve an updating frequency at Hz. Compared with serial threads processing in the proposed local planner, the speed of parallel threads processing improves noticeably. For instance, the time is reduced by 41% () when processing two threads in parallel on the dataset G4.
Fig. 5

The performance comparison between the proposed method and sampling-based methods [10] according to (A) time cost, (B) path length, (C) distance to vascular walls, and (D) curvature. ( using Kruskal-Wallis test)

For path length, Fig. 5B shows that the proposed method has a smaller median value, while the variance is similar with the results of other methods. The random sampling property of RRT series leads to path points locating not always on vascular centerlines. Floating around the centerlines results in paths that can not be ensured to be the shortest one. To avoid this drawback, the proposed method adopts a BFS strategy within the vascular tree, ensuring the path solution to be the shortest one. Moreover, the local planner pushes the path points in the same direction away from the centerlines, avoiding bidirectional floating around the centerlines that increases path length. Figure 5C shows that the proposed method increases the distance to vascular walls by keeping close to centerlines. It resulted not only from the sampling property analyzed in the previous paragraph, but also from the specified optimization criteria in the local planner. Figure 5D demonstrates that the curvature constraint is satisfied using the proposed method and the curvature median value is decreased. Specifically, the curvature constraint is respected in the local planner. The median value is also decreased by avoiding bidirectional floating around the centerline. The performance comparison regarding to success rate From Table 2, we can see that the success rate of our method is higher. As long as a feasible path exists, the proposed method is able to find it by navigating through the tree and optimize it locally. RRT series can not ensure a path could be found in a specific trail due to its incompleteness.
Table 2

The performance comparison regarding to success rate

MethodG1G2G3G4
RRT [10]0.9800.7600.8900.910
RRT* [10]0.9880.7400.8900.950
BFS-GA1111
In short, the results show that the proposed method achieves a higher efficiency and better performance. It is further applicable for path planning in narrow passages for curvature constrained robots.

Conclusion

In this manuscript, a fast two-phase path planning approach, named BFS-GA, is proposed for endovascular catheterization. Vascular centerlines were seen as a reference trajectory assisting catheterization in literature. State-of-the-art methods rarely consider the catheter curvature constraint. The presented approach is able to respect robot curvature constraints while keeping it close to the centerlines as much as possible. Moreover, researchers in literatures considered merely the constrained optimization problem along the overall path without reducing search space. In this work, we formulated and solved the optimization problem only for portions of the path and performed parallel optimization to shorten computational time. The limit is that it could lose accuracy in intra-operative interventions resulting from vasculature deformations and sensing uncertainties. Future works will concentrate on developing an accurate intra-operative path planner. A real-time path replanning algorithm based on a pre-operative path should also be proposed. Such an algorithm should consider additional factors like the unpredictable deformation of environments and the uncertainties of model sensing (e.g., the tip position and vascular model).
  10 in total

1.  Three-Dimensional Path Planning and Guidance of Leg Vascular Based on Improved Ant Colony Algorithm in Augmented Reality.

Authors:  Ming-ke Gao; Yi-min Chen; Quan Liu; Chen Huang; Ze-yu Li; Dian-hua Zhang
Journal:  J Med Syst       Date:  2015-08-30       Impact factor: 4.460

2.  Planning High-Quality Motions for Concentric Tube Robots in Point Clouds via Parallel Sampling and Optimization.

Authors:  Alan Kuntz; Mengyu Fu; Ron Alterovitz
Journal:  Rep U S       Date:  2020-01-27

3.  Vessel-based rigid registration for endovascular therapy of the abdominal aorta.

Authors:  Erik Nypan; Geir Arne Tangen; Frode Manstad-Hulaas; Reidar Brekken
Journal:  Minim Invasive Ther Allied Technol       Date:  2019-02-27       Impact factor: 2.442

4.  Kinematic analysis and navigation method of a cable-driven continuum robot used for minimally invasive surgery.

Authors:  Fei Qi; Feng Ju; Dongming Bai; Yaoyao Wang; Bai Chen
Journal:  Int J Med Robot       Date:  2019-06-09       Impact factor: 2.547

5.  Iliac artery deformation during EVAR.

Authors:  Giasemi Koutouzi; Marcus Pfister; Katharina Breininger; Mikael Hellström; Håkan Roos; Mårten Falkenberg
Journal:  Vascular       Date:  2019-03-27       Impact factor: 1.285

6.  Computational geometry for patient-specific reconstruction and meshing of blood vessels from MR and CT angiography.

Authors:  Luca Antiga; Bogdan Ene-Iordache; Andrea Remuzzi
Journal:  IEEE Trans Med Imaging       Date:  2003-05       Impact factor: 10.048

Review 7.  SimVascular: An Open Source Pipeline for Cardiovascular Simulation.

Authors:  Adam Updegrove; Nathan M Wilson; Jameson Merkow; Hongzhi Lan; Alison L Marsden; Shawn C Shadden
Journal:  Ann Biomed Eng       Date:  2016-12-08       Impact factor: 3.934

8.  Computing patient-specific hemodynamics in stented femoral artery models obtained from computed tomography using a validated 3D reconstruction method.

Authors:  Monika Colombo; Marco Bologna; Marc Garbey; Scott Berceli; Yong He; Josè Felix Rodriguez Matas; Francesco Migliavacca; Claudio Chiastra
Journal:  Med Eng Phys       Date:  2019-11-01       Impact factor: 2.242

Review 9.  The Adaptive Hermite Fractal Tree (AHFT): a novel surgical 3D path planning approach with curvature and heading constraints.

Authors:  Marlene Pinzi; Stefano Galvan; Ferdinando Rodriguez Y Baena
Journal:  Int J Comput Assist Radiol Surg       Date:  2019-02-21       Impact factor: 2.924

10.  Catheter steering in interventional cardiology: Mechanical analysis and novel solution.

Authors:  Awaz Ali; Aimee Sakes; Ewout A Arkenbout; Paul Henselmans; Remi van Starkenburg; Tamas Szili-Torok; Paul Breedveld
Journal:  Proc Inst Mech Eng H       Date:  2019-10-03       Impact factor: 1.617

  10 in total
  1 in total

1.  Physics-Informed Modeling and Control of Multi-Actuator Soft Catheter Robots.

Authors:  Seyede Fatemeh Ghoreishi; Ryan D Sochol; Dheeraj Gandhi; Axel Krieger; Mark Fuge
Journal:  Front Robot AI       Date:  2022-01-14
  1 in total

北京卡尤迪生物科技股份有限公司 © 2022-2023.