Home An ideally parameterized unscented Kalman filter for the inverse problem of electrocardiography
Article Open Access

An ideally parameterized unscented Kalman filter for the inverse problem of electrocardiography

  • Christian Ritter EMAIL logo , Walther H. W. Schulze , Danila Potyagaylo and Olaf Dössel
Published/Copyright: September 12, 2015

Abstract

ECG imaging as noninvasive method is aiming to reconstruct the distribution of the transmembrane voltage amplitudes (TMVs) from the body surface potential map (BSPM). Due to the ill-posedness, standard approaches like the Tikhonov regularization method cause blurring and artefacts in the solution. To suppress blurring and artefacts, this work investigated a model based approach, the unscented Kalman filter (UKF). The intention of this paper is to show the potential of an UKF approach by using an idealized parametrization.

1 Introduction

For solving the inverse problem of electrocardiography Tikhonov regularization [1] is still the standard approach. The main disadvantage is that no prior information about the excitation of the TMVs or the temporal behavior of an action potential is taken into account. Wang et al. [2] already showed with a complex diffusion TMV model that an UKF can improve the resolution of the solution. In contrast, we want to show the potential of an idealized parametric UKF with a simple spatio-temporal model that approximates the depolarization of ventricular cells and the TMV excitation propagation. Also, the ill-posedness of the inverse problem is decoupled from the filter equations by using the Tikhonov regularization solution as ”measurement vector”. Due to the complete knowledge of the TMV ground truth of the simulated dataset, we are able to calculate the exact measurement and process noise covariances.

2 Methods

2.1 State space framework

To improve the solution of reconstructed TMVs in the ventricles with a Kalman filter, we considered the following state space representation of the TMVs

(1)s¯k+1=f¯(s¯k)+q¯
(2)d¯k=H¯s¯k+n¯k=I¯s¯k+n¯k.

Equation 1 as the state space difference equation contains the nonlinear dynamic model f¯():20182018 of the TMVss¯k2018×1 and the process noise q¯2018×1 of f¯(). The process noise is Gaussian distributed with zero mean and covariance Σq¯k2018×2018.

for f¯() we used a recursive cellular automaton: the surface of the ventricles was discretised with an L = 2018 vertices mesh. Every vertex si (for i = 1, …,L) was able to activate its reachable neighbours sj (for i ≠ = j) at k + 1, if si had been above a threshold of −60 mV at time step k. If a vertice was not depolarized, its TMV was set to −80 mV. The temporal behaviour of the activation between k and k+1 (shape of the depolarization phase in an action potential) was modelled with a Heaviside step function. The cellular automaton had a constant electrical excitation conduction velocity over all time steps k.

The measurement model in Equation 2 with identity matrix I¯L×L describes a linear mapping between constrained Tikhonov regularisations of 2nd order [4] as data vector d¯kL×1 and the TMVs s¯k. The constrained Tikhonov approach had a regularisation parameter of λ2 = 10−1 for all time steps k and the TMVs were scaled to the range of [−80 mV, 20 mV]. The data vector d¯k had a Gaussian distributed additive measurement noise n¯kL×1 with zero mean and covariance Σn¯kL×L.

2.2 Unscented Kalman filter

2.2.1 Unscented transform

A challenge in Kalman filtering is the highly nonlinear dynamic model f¯(). To model the Gaussian distribution of

(3)s_N(μ_,Σs_)

during the propagation of s¯ through f¯(), the distributions of the internal states had to be approximated. With sigma-points X¯L×2L+1 the unscented transform (UT) captures the first moment μ¯L×1 and the second moment Σs¯L×L of the probability distribution of s¯ [5], [6], [7], [8]

(4)X¯=[X¯0X¯iX¯i+L]=[[μ¯][μ¯+ρ(Σ)i][μ¯ρ(Σ)i]]

The term (Σs_)i is the ith column of (Σs_) The scaling parameter ρ ∈ ℝ

(5)ρ=L+δ

determines the spread of the sigma-points around μ¯ and is influenced by

(6)δ=α2(L+κ)L.

The determination of the probability distribution moments of s¯ depends on the dimension L of the mesh, a primary scaling parameter α ∈ ℝ and a tertiary scaling parameter κ ∈ ℝ. The parameter was set to

(7)α=1

The parameter can be used to support the accuracy of the approximation by catching the kurtosis of s [9], [10] and was set to

(8)κ=0.

2.2.2 UKF algorithm

The complete UKF algorithm [5], [6], [7], [8] consists of an initialization, the sigma-points calculation, a prediction step with constant weighting coefficients and an update step.

– Initialization (with k = 1):

As a prior information we assumed completly repolarized ventricles (cells in rest)

(9)μ^¯0=[8080].

But as the TMV may range between −80 mV and 20 mV the initial first moment had an uncertainty ff of 100 mV. Therefore the covariance Σs^¯0 is

(10)Σs^¯0=σ2I¯=10000I¯.

– Sigma-points:

For filtering the data at time step k = 1, the probability distribution of s¯k1 had to be approximated with the UT

(11)X¯k1[μ^k1μ^k1+ρ(Σs^¯k1)iμ^k1ρ(Σs^¯k1)i].

– Prediction step:

The sigma-points X¯k1 were propagated through f¯()

(12)X¯k|k1=f¯(X¯k1).

The first and second moment were predicted with

(13)μ¯k=i=02LWimX¯i,k|k1
(14)Σs¯k=i=02Lwic(χ¯i,k|k1μk)(χ¯iμ¯k)T+Σq¯

and with constant weighting coefficients

(15)W0m=δL+δ
(16)Wim=δ2(L+δ)
(17)w0c=δL+δ+(1α2+β)
(18)wic=12(L+δ).

The secondary scaling parameter β ∈ ℝ can be used to minimize approximation errors of higher probability distribution moments by using prior knowledge about s¯ [7], [8]. We set to

(19)β=2.

– Update step:

As a linear measurement model was used, see Equation 2, the update step was linear as well and could be implemented without an additional UT:

(20)K¯k=Σs¯kH¯T(H¯Σs¯kH¯T+Σn¯k)1
(21)μ^¯k=μ¯k+K¯k(d¯kH¯μ¯k)
(22)Σs^¯k=(I¯K¯kH¯)Σs¯k.

The considered measurement model in Equation2 did not need a forward solution. This part is already integrated in the calculation of the data vector dk using Tikhonov reconstruction.

2.2.2.1 Process noise covariance Σq¯

For calculating the process noise covariance, the ground truth s¯ at time step k of simulated TMVs was propagated through f¯(). The simulation s¯k was calculated with a cellular automaton as in [11]. The difference ¯k+1L×1 between the prediction output μ¯k+1 and the ground truth s¯k+1 was built

(23)¯k+1μ¯k+1s¯k+1.

Therefore, the process noise covariance had the form

(24)ρ¯k+1=(¯k+1¯¯k+1)(¯k+1¯¯k+1)T

with ¯¯k+1: arithmetic mean of ¯¯k+1. Because ρ¯k+1 was close to singular for all k and has a contribution to the inversion in Eq.2 0, only the diagonal of ρ¯k+1 was used. The process noise in the UKF had the form

(25)Σq¯k=[ρk,110¯0¯ρk,LL].
2.2.2.2 Measurement noise covariance Σn¯k

With the output model in Equation 2, Σn¯k was built from the difference between the ground truth s¯k and the data d¯k

(26)v¯=d¯ks¯k
(27)Σn¯k=(v¯kv¯¯k)(v¯kv¯¯k)T.

v¯¯k indicates the arithmetic mean of v¯

2.3 Quality criterion

The results of the UKF were evaluated with a quality criterion Gk ∈ ℝ

(28)Gk=gk,d¯kgk,μ^¯k=i=1Ldi,ksi,kLi=1Lμ^¯i,ksi,kL,

where gk,μ^¯k is the mean error between μ^¯k and s¯k,gk,d¯k and the mean error between d¯k and s¯k. An improvement with respect to the constrained-Tikhonov regularisation of 2nd order is given for

(29)Gk>0.

3 Results

A premature ventricular contraction was simulated with a cellular automaton on the model of a healthy volunteer and corresponding BSPMs were computed [3], [11]. With the optimal setting of the noise covariances and scaling parameters the UKF was able to estimate a TMV excitation spread even though the initialization assumes completely repolarized ventricles. Fig. 1 shows Gk of the UKF, which is above 0 mV for all time steps k. With an ideally parameterized UKF the standard Tikhonov approach was outperformed. With time step k = 12 as an example, Fig. 3 (b) reveals that the error in the Tikhonov solution (see Fig. 3 (c)) was almost completely suppressed. The estimation was very close to the ground truth, see Fig. 3 (a). In Fig. 2 different time behaviors of mesh point 283 were plotted. It shows the ground truth, marked as simulation, and the estimation of the UKF. Even after 1 time step the UKF converges torwards the simulation. The prediction is revealed to have an offset during the resting potential stage and a time shift during the depolarization stage. The offset and especially the time shift were corrected by the innovation of the UKF. The time shift correction can be seen between k = 10 and k = 12. The innovation is defined as

(30)innovation=K¯k(d¯kH¯μ¯k)

and indicates that the prediction shift is forced by the data d¯k. Through Eq.20 the shift is forced by the noise process covariances n¯k and q¯k as well.

Figure 1 The figure reveals the quality criterion of the UKF for all time steps k. As G > 0 for all k, the UKF was able to improve the resolution of the Tikhonov regularization method in all time steps k. The UKF was parameterized with α = 1, β = 2, κ = 0 and used Σs^¯0=10000⋅I¯$\Sigma _{{\raise0.3em\hbox{$\smash{\scriptscriptstyle-}$}}\underline {\hat s} _0 } = 10000 \cdot {\raise0.3em\hbox{$\smash{\scriptscriptstyle-}$}}\underline {I}$ as initialization. Furthermore, the ventricles were assumed to be completly repolarized with −80 mV.
Figure 1

The figure reveals the quality criterion of the UKF for all time steps k. As G > 0 for all k, the UKF was able to improve the resolution of the Tikhonov regularization method in all time steps k. The UKF was parameterized with α = 1, β = 2, κ = 0 and used Σs^¯0=10000I¯ as initialization. Furthermore, the ventricles were assumed to be completly repolarized with −80 mV.

4 Discussion

An UKF algorithm was proposed to improve previously obtained ECG imaging solutions (Tikhonov). It could be demonstrated to predict and correct estimates of TMVs in line with the expected behaviour of a Kalman filter. Results were strongly improved and very close to the ground truth using an ideal parameterization (i.e., space- and time-dependent covariance matrices that were trained on the ground truth). While this demonstrates the feasibility of the approach, reasonable assumptions have to be made for the parameterization in practical applications. Good estimates of the noise covariances will not be available in both time and space, and simplifying assumptions will need to be made, presumably also requiring an adjustment of the weighting parameters: In Eq.20 there is a strong connection between the measurement and process noise and the scaling parameters through sk. With new parameters the reduced knowledge of the noise may partially be compensated and the filter may still do an appropriate approximation of the probability distribution with sigma-points. Still, a proper setting of the noise and scaling parameters is required to facilitate an excitation propagation with the simple spatio-temporal excitation model in use.

Figure 2 The figure shows the time behavior of the simulation, prediction, estimation and innovation of mesh point 283. After one time step the estimation converges torwards the simulation. The offset and the time shift of the prediction as output of the spatio-temporal model in the UKF is reduced through the innovation in the update step. The innovation line shows that the Tikhonov regularization solutions d¯k${\raise0.3em\hbox{$\smash{\scriptscriptstyle-}$}}\underline {d} _k$ have a contribution to the UKF estimation.
Figure 2

The figure shows the time behavior of the simulation, prediction, estimation and innovation of mesh point 283. After one time step the estimation converges torwards the simulation. The offset and the time shift of the prediction as output of the spatio-temporal model in the UKF is reduced through the innovation in the update step. The innovation line shows that the Tikhonov regularization solutions d¯k have a contribution to the UKF estimation.

Figure 3 Figure (a), (b) and (c) show the TMV distribution in the heart at time point k = 12. It can be seen that the UKF suppresses the noise in the Tikhonov solution (c). Due to the prior knowledge about the measurement and process noise covariance, the UKF estimation (b) is very close to the simulation (a). The UKF was able to suppress the noise in (c).
Figure 3

Figure (a), (b) and (c) show the TMV distribution in the heart at time point k = 12. It can be seen that the UKF suppresses the noise in the Tikhonov solution (c). Due to the prior knowledge about the measurement and process noise covariance, the UKF estimation (b) is very close to the simulation (a). The UKF was able to suppress the noise in (c).

Author’s Statement

  1. Conflict of interest: Authors state no conflict of interest. Material and Methods: Informed consent: Informed consent has been obtained from all individuals included in this study. Ethical approval: The research related to human use has been complied with all the relevant national regulations, institutional policies and in accordance the tenets of the Helsinki Declaration, and has been approved by the authors’ institutional review board or equivalent committee.

References

[1] Tikhonov AN, Arsenin VY. Solutions of ill-posed problem. Winston & Sons, New York 1977.Search in Google Scholar

[2] Wang L, Zhang H, Wong KCL, Liu H, Shi P. Physiological-Model-Constrained Noninvasive Reconstruction of Volumetric Myocar-dial Transmembrane Potentials. IEEE Transactions on Biomedical Engineering 2010; 57: 296–315.10.1109/TBME.2009.2024531Search in Google Scholar PubMed

[3] Werner CD, Sachse FB, Dössel O. Electrical Excitation of the Human Heart: A Comparison of Electrical Source Distributions in Models of Different Spatial Resolution. Computers in Cardiology, IEEE 1998; 309–312.10.1109/CIC.1998.731795Search in Google Scholar

[4] Potyagaylo D, Segel M, Schulze WHW, Dössel O. Noninvasive Localization of Ectopic Foci: a New Optimization Approach for Simultaneous Reconstruction of Transmembrane Voltages and Epicardial Potentials. FIMH 2013; 166–173.10.1007/978-3-642-38899-6_20Search in Google Scholar

[5] Julier SJ, Uhlmann JK. A New Extension of the Kalman Filter to Nonlinear Systems. Proc. AeroSense; 11th Int. Symp. Aerosp./Defense Sensing, Simulat. Contr. 1997.10.1117/12.280797Search in Google Scholar

[6] Julier SJ, Uhlmann JK. Unscented Filtering and Nonlinear Estimation. Proc. of the IEEE 2004; 92: 401–422.10.1109/JPROC.2003.823141Search in Google Scholar

[7] Merwe Rvd, Wan EA., Julier SI. Sigma-Point Kalman Filters for Nonlinear Estimation and Sensor-Fusion - Applications to Integrated Navigation -. Proc. of the AIAA Guidance, Navigation, and Control Conference and Exhibit 2004; 1–30.Search in Google Scholar

[8] Särkkä S. Bayesian Filtering and Smoothing. Cambridge University Press 2013.10.1017/CBO9781139344203Search in Google Scholar

[9] Gannot S, Moonen M. On the application of the unscented Kalman filter to speech processing. Proc. of the Intl. Workshop on Acoustic Echo and Noise Control 2003; 27–30.Search in Google Scholar

[10] Straka O, Dunik J, Šimandl M. Scaling Parameter in Unscented Transformation: Analysis and Specification. Proc. of the 2012 American Control Conference 2012; 5550–5555.10.1109/ACC.2012.6315031Search in Google Scholar

[11] Schulze WHW, Henar FE, Potyagaylo D, Loewe A, Stenroos M, Dössel O. Kalman Filter with Augmented Measurement Model: An ECG Imaging Simulation Study. FIMH 2013; 200–207.10.1007/978-3-642-38899-6_24Search in Google Scholar

Published Online: 2015-9-12
Published in Print: 2015-9-1

© 2015 by Walter de Gruyter GmbH, Berlin/Boston

This article is distributed under the terms of the Creative Commons Attribution Non-Commercial License, which permits unrestricted non-commercial use, distribution, and reproduction in any medium, provided the original work is properly cited.

Articles in the same Issue

  1. Research Article
  2. Development and characterization of superparamagnetic coatings
  3. Research Article
  4. The development of an experimental setup to measure acousto-electric interaction signal
  5. Research Article
  6. Stability analysis of ferrofluids
  7. Research Article
  8. Investigation of endothelial growth using a sensors-integrated microfluidic system to simulate physiological barriers
  9. Research Article
  10. Energy harvesting for active implants: powering a ruminal pH-monitoring system
  11. Research Article
  12. New type of fluxgate magnetometer for the heart’s magnetic fields detection
  13. Research Article
  14. Field mapping of ballistic pressure pulse sources
  15. Research Article
  16. Development of a new homecare sleep monitor using body sounds and motion tracking
  17. Research Article
  18. Noise properties of textile, capacitive EEG electrodes
  19. Research Article
  20. Detecting phase singularities and rotor center trajectories based on the Hilbert transform of intraatrial electrograms in an atrial voxel model
  21. Research Article
  22. Spike sorting: the overlapping spikes challenge
  23. Research Article
  24. Separating the effect of respiration from the heart rate variability for cases of constant harmonic breathing
  25. Research Article
  26. Locating regions of arrhythmogenic substrate by analyzing the duration of triggered atrial activities
  27. Research Article
  28. Combining different ECG derived respiration tracking methods to create an optimal reconstruction of the breathing pattern
  29. Research Article
  30. Atrial and ventricular signal averaging electrocardiography in pacemaker and cardiac resynchronization therapy
  31. Research Article
  32. Estimation of a respiratory signal from a single-lead ECG using the 4th order central moments
  33. Research Article
  34. Compressed sensing of multi-lead ECG signals by compressive multiplexing
  35. Research Article
  36. Heart rate monitoring in ultra-high-field MRI using frequency information obtained from video signals of the human skin compared to electrocardiography and pulse oximetry
  37. Research Article
  38. Synchronization in wireless biomedical-sensor networks with Bluetooth Low Energy
  39. Research Article
  40. Automated classification of stages of anaesthesia by populations of evolutionary optimized fuzzy rules
  41. Research Article
  42. Effects of sampling rate on automated fatigue recognition in surface EMG signals
  43. Research Article
  44. Closed-loop transcranial alternating current stimulation of slow oscillations
  45. Research Article
  46. Cardiac index in atrio- and interventricular delay optimized cardiac resynchronization therapy and cardiac contractility modulation
  47. Research Article
  48. The role of expert evaluation for microsleep detection
  49. Research Article
  50. The impact of baseline wander removal techniques on the ST segment in simulated ischemic 12-lead ECGs
  51. Research Article
  52. Metal artifact reduction by projection replacements and non-local prior image integration
  53. Research Article
  54. A novel coaxial nozzle for in-process adjustment of electrospun scaffolds’ fiber diameter
  55. Research Article
  56. Processing of membranes for oxygenation using the Bellhouse-effect
  57. Research Article
  58. Inkjet printing of viable human dental follicle stem cells
  59. Research Article
  60. The use of an icebindingprotein out of the snowflea Hypogastrura harveyi as a cryoprotectant in the cryopreservation of mesenchymal stem cells
  61. Research Article
  62. New NIR spectroscopy based method to determine ischemia in vivo in liver – a first study on rats
  63. Research Article
  64. QRS and QT ventricular conduction times and permanent pacemaker therapy after transcatheter aortic valve implantation
  65. Research Article
  66. Adopting oculopressure tonometry as a transient in vivo rabbit glaucoma model
  67. Research Article
  68. Next-generation vision testing: the quick CSF
  69. Research Article
  70. Improving tactile sensation in laparoscopic surgery by overcoming size restrictions
  71. Research Article
  72. Design and control of a 3-DOF hydraulic driven surgical instrument
  73. Research Article
  74. Evaluation of endourological tools to improve the diagnosis and therapy of ureteral tumors – from model development to clinical application
  75. Research Article
  76. Frequency based assessment of surgical activities
  77. Research Article
  78. “Hands free for intervention”, a new approach for transoral endoscopic surgery
  79. Research Article
  80. Pseudo-haptic feedback in medical teleoperation
  81. Research Article
  82. Feasibility of interactive gesture control of a robotic microscope
  83. Research Article
  84. Towards structuring contextual information for workflow-driven surgical assistance functionalities
  85. Research Article
  86. Towards a framework for standardized semantic workflow modeling and management in the surgical domain
  87. Research Article
  88. Closed-loop approach for situation awareness of medical devices and operating room infrastructure
  89. Research Article
  90. Kinect based physiotherapy system for home use
  91. Research Article
  92. Evaluating the microsoft kinect skeleton joint tracking as a tool for home-based physiotherapy
  93. Research Article
  94. Integrating multimodal information for intraoperative assistance in neurosurgery
  95. Research Article
  96. Respiratory motion tracking using Microsoft’s Kinect v2 camera
  97. Research Article
  98. Using smart glasses for ultrasound diagnostics
  99. Research Article
  100. Measurement of needle susceptibility artifacts in magnetic resonance images
  101. Research Article
  102. Dimensionality reduction of medical image descriptors for multimodal image registration
  103. Research Article
  104. Experimental evaluation of different weighting schemes in magnetic particle imaging reconstruction
  105. Research Article
  106. Evaluation of CT capability for the detection of thin bone structures
  107. Research Article
  108. Towards contactless optical coherence elastography with acoustic tissue excitation
  109. Research Article
  110. Development and implementation of algorithms for automatic and robust measurement of the 2D:4D digit ratio using image data
  111. Research Article
  112. Automated high-throughput analysis of B cell spreading on immobilized antibodies with whole slide imaging
  113. Research Article
  114. Tissue segmentation from head MRI: a ground truth validation for feature-enhanced tracking
  115. Research Article
  116. Video tracking of swimming rodents on a reflective water surface
  117. Research Article
  118. MR imaging of model drug distribution in simulated vitreous
  119. Research Article
  120. Studying the extracellular contribution to the double wave vector diffusion-weighted signal
  121. Research Article
  122. Artifacts in field free line magnetic particle imaging in the presence of inhomogeneous and nonlinear magnetic fields
  123. Research Article
  124. Introducing a frequency-tunable magnetic particle spectrometer
  125. Research Article
  126. Imaging of aortic valve dynamics in 4D OCT
  127. Research Article
  128. Intravascular optical coherence tomography (OCT) as an additional tool for the assessment of stent structures
  129. Research Article
  130. Simple concept for a wide-field lensless digital holographic microscope using a laser diode
  131. Research Article
  132. Intraoperative identification of somato-sensory brain areas using optical imaging and standard RGB camera equipment – a feasibility study
  133. Research Article
  134. Respiratory surface motion measurement by Microsoft Kinect
  135. Research Article
  136. Improving image quality in EIT imaging by measurement of thorax excursion
  137. Research Article
  138. A clustering based dual model framework for EIT imaging: first experimental results
  139. Research Article
  140. Three-dimensional anisotropic regularization for limited angle tomography
  141. Research Article
  142. GPU-based real-time generation of large ultrasound volumes from freehand 3D sweeps
  143. Research Article
  144. Experimental computer tomograph
  145. Research Article
  146. US-tracked steered FUS in a respiratory ex vivo ovine liver phantom
  147. Research Article
  148. Contribution of brownian rotation and particle assembly polarisation to the particle response in magnetic particle spectrometry
  149. Research Article
  150. Preliminary investigations of magnetic modulated nanoparticles for microwave breast cancer detection
  151. Research Article
  152. Construction of a device for magnetic separation of superparamagnetic iron oxide nanoparticles
  153. Research Article
  154. An IHE-conform telecooperation platform supporting the treatment of dementia patients
  155. Research Article
  156. Automated respiratory therapy system based on the ARDSNet protocol with systemic perfusion control
  157. Research Article
  158. Identification of surgical instruments using UHF-RFID technology
  159. Research Article
  160. A generic concept for the development of model-guided clinical decision support systems
  161. Research Article
  162. Evaluation of local alterations in femoral bone mineral density measured via quantitative CT
  163. Research Article
  164. Creating 3D gelatin phantoms for experimental evaluation in biomedicine
  165. Research Article
  166. Influence of short-term fixation with mixed formalin or ethanol solution on the mechanical properties of human cortical bone
  167. Research Article
  168. Analysis of the release kinetics of surface-bound proteins via laser-induced fluorescence
  169. Research Article
  170. Tomographic particle image velocimetry of a water-jet for low volume harvesting of fat tissue for regenerative medicine
  171. Research Article
  172. Wireless medical sensors – context, robustness and safety
  173. Research Article
  174. Sequences for real-time magnetic particle imaging
  175. Research Article
  176. Speckle-based off-axis holographic detection for non-contact photoacoustic tomography
  177. Research Article
  178. A machine learning approach for planning valve-sparing aortic root reconstruction
  179. Research Article
  180. An in-ear pulse wave velocity measurement system using heart sounds as time reference
  181. Research Article
  182. Measuring different oxygenation levels in a blood perfusion model simulating the human head using NIRS
  183. Research Article
  184. Multisegmental fusion of the lumbar spine a curse or a blessing?
  185. Research Article
  186. Numerical analysis of the biomechanical complications accompanying the total hip replacement with NANOS-Prosthetic: bone remodelling and prosthesis migration
  187. Research Article
  188. A muscle model for hybrid muscle activation
  189. Research Article
  190. Mathematical, numerical and in-vitro investigation of cooling performance of an intra-carotid catheter for selective brain hypothermia
  191. Research Article
  192. An ideally parameterized unscented Kalman filter for the inverse problem of electrocardiography
  193. Research Article
  194. Interactive visualization of cardiac anatomy and atrial excitation for medical diagnosis and research
  195. Research Article
  196. Virtualizing clinical cases of atrial flutter in a fast marching simulation including conduction velocity and ablation scars
  197. Research Article
  198. Mesh structure-independent modeling of patient-specific atrial fiber orientation
  199. Research Article
  200. Accelerating mono-domain cardiac electrophysiology simulations using OpenCL
  201. Research Article
  202. Understanding the cellular mode of action of vernakalant using a computational model: answers and new questions
  203. Research Article
  204. A java based simulator with user interface to simulate ventilated patients
  205. Research Article
  206. Evaluation of an algorithm to choose between competing models of respiratory mechanics
  207. Research Article
  208. Numerical simulation of low-pulsation gerotor pumps for use in the pharmaceutical industry and in biomedicine
  209. Research Article
  210. Numerical and experimental flow analysis in centifluidic systems for rapid allergy screening tests
  211. Research Article
  212. Biomechanical parameter determination of scaffold-free cartilage constructs (SFCCs) with the hyperelastic material models Yeoh, Ogden and Demiray
  213. Research Article
  214. FPGA controlled artificial vascular system
  215. Research Article
  216. Simulation based investigation of source-detector configurations for non-invasive fetal pulse oximetry
  217. Research Article
  218. Test setup for characterizing the efficacy of embolic protection devices
  219. Research Article
  220. Impact of electrode geometry on force generation during functional electrical stimulation
  221. Research Article
  222. 3D-based visual physical activity assessment of children
  223. Research Article
  224. Realtime assessment of foot orientation by Accelerometers and Gyroscopes
  225. Research Article
  226. Image based reconstruction for cystoscopy
  227. Research Article
  228. Image guided surgery innovation with graduate students - a new lecture format
  229. Research Article
  230. Multichannel FES parameterization for controlling foot motion in paretic gait
  231. Research Article
  232. Smartphone supported upper limb prosthesis
  233. Research Article
  234. Use of quantitative tremor evaluation to enhance target selection during deep brain stimulation surgery for essential tremor
  235. Research Article
  236. Evaluation of adhesion promoters for Parylene C on gold metallization
  237. Research Article
  238. The influence of metallic ions from CoCr28Mo6 on the osteogenic differentiation and cytokine release of human osteoblasts
  239. Research Article
  240. Increasing the visibility of thin NITINOL vascular implants
  241. Research Article
  242. Possible reasons for early artificial bone failure in biomechanical tests of ankle arthrodesis systems
  243. Research Article
  244. Development of a bending test procedure for the characterization of flexible ECoG electrode arrays
  245. Research Article
  246. Tubular manipulators: a new concept for intracochlear positioning of an auditory prosthesis
  247. Research Article
  248. Investigation of the dynamic diameter deformation of vascular stents during fatigue testing with radial loading
  249. Research Article
  250. Electrospun vascular grafts with anti-kinking properties
  251. Research Article
  252. Integration of temperature sensors in polyimide-based thin-film electrode arrays
  253. Research Article
  254. Use cases and usability challenges for head-mounted displays in healthcare
  255. Research Article
  256. Device- and service profiles for integrated or systems based on open standards
  257. Research Article
  258. Risk management for medical devices in research projects
  259. Research Article
  260. Simulation of varying femoral attachment sites of medial patellofemoral ligament using a musculoskeletal multi-body model
  261. Research Article
  262. Does enhancing consciousness for strategic planning processes support the effectiveness of problem-based learning concepts in biomedical education?
  263. Research Article
  264. SPIO processing in macrophages for MPI: The breast cancer MPI-SNLB-concept
  265. Research Article
  266. Numerical simulations of airflow in the human pharynx of OSAHS patients
Downloaded on 8.9.2025 from https://www.degruyterbrill.com/document/doi/10.1515/cdbme-2015-0096/html
Scroll to top button