Startseite Learning discriminative classification models for grading anal intraepithelial neoplasia
Artikel Open Access

Learning discriminative classification models for grading anal intraepithelial neoplasia

  • Philipp Kainz EMAIL logo , Michael Mayrhofer-Reinhartshuber , Roland Sedivy und Helmut Ahammer
Veröffentlicht/Copyright: 30. September 2016
Veröffentlichen auch Sie bei De Gruyter Brill

Abstract

Grading intraepithelial neoplasia is crucial to derive an accurate estimate of pre-cancerous stages and is currently performed by pathologists assessing histopathological images. Inter- and intra-observer variability can significantly be reduced, when reliable, quantitative image analysis is introduced into diagnostic processes. On a challenging dataset, we evaluated the potential of learning a classifier to grade anal intraepitelial neoplasia. Support vector machines were trained on images represented by fractal and statistical features. We show that pursuing a learning-based grading strategy yields highly reliable results. Compared to existing methods, the proposed method outperformed them by a significant margin.

1 Introduction

Anal intraepithelial neoplasia (AIN) can be present in various forms and usually precedes anal carcinoma [1]. Assessing alterations of epithelium is crucial to derive an accurate estimate of pre-cancerous stages and carcinoma in-situ. The inspection of biopsy tissue is done qualitatively by physicians to diagnose anorectal disease, either using glass slides and light microscopy, or digital whole slide images. AIN is typically classified into four classes that correspond to non-neoplastic tissue (AIN0), and increasing grades of dysplasia (AIN1-AIN3). Important cues for grading are the density, shape, and texture of cell nuclei, as well as the distribution of normal and abnormal cells within the tissue [2]. However, qualitative analysis strongly depends on the observer’s experience and frequently leads to irreproducible results. Since defining clear transitions between grades is not always possible, the inter-observer variability can be considerable. Using quantitative image analysis, drawbacks of subjective assessments can be tackled by introducing reproducible, validated methods in biomedical diagnostics.

Previous work used fractal image analysis [3], [4] to grade AIN, or cervical intraepithelial neoplasia [5]. Fractal dimensions were computed globally for each image, and the value range was segmented by rigidly searching for statistically significant thresholds to separate the classes. In other work [6], a variety of data mining methods was explored to grade AIN images based on statistical texture features. In order to add significant value to a diagnostic process in terms of reducing time-consuming tasks, a classifier must be able to deal with a great input variance [7], generalize well, and reliably predict the grading of new images. Two crucial aspects have not been addressed in [3], [4], [6]: Firstly, none of the previous methods involved building a classifier on training data and evaluating it on novel test data. Secondly, since authors reported errors on training sets, we cannot assess the ability of their methods to generalize to unseen data.

The objective of this work is to learn a discriminative classification model for predicting the grade of AIN. We show that a support vector machine (SVM [8]) learns a robust classifier on a set of global image features. Our learning-based approach outperforms the previously proposed methods by a large margin on a challenging dataset [6]. Furthermore, we assess the influence of common strategies for data augmentation and class label balancing on the generalization performance.

2 Material and methods

2.1 Histopathology dataset

We used a set of hematoxylin and eosin stained images (n = 136, 749 × 580 pixels) of different AIN grades [3], [6], cf. Figure 1. An expert pathologist labeled images containing healthy tissue (n0 = 17) as AIN0, and low-grade neoplasia (n1 = 36) as AIN1. High-grade neoplasia was labeled as AIN2 (n2 = 55), and AIN3 (n3 = 28). We assigned 80% of the images in each class to the training, and 20% to a hold-out test set. Further, 20% of the training samples were used as validation set for parameter tuning, before the test set was predicted. This resulted in 84 images in the original training set (10 AIN0 / 22 AIN1 / 35 AIN2 / 17 AIN3), 23 in the validation set (3/6/9/5), and 29 in the test set (4/8/11/6).

Figure 1 Expert gradings of anal intraepithelial neoplasia.
Figure 1

Expert gradings of anal intraepithelial neoplasia.

Image pre-processing and augmentation: We hypothesized that augmentation and balancing of a training set improves the ability of our classifier to generalize. Hence, two additional training sets were created by applying label-preserving elastic deformations and parameterized random intensity variations of the individual channels in HSV color space. The training sets are referred to as (a) for the original, (b) for the augmented, and (c) for the augmented and balanced training set. For (b), we added 30 versions of each image in (a), such that it comprised 2604 images. However, the class label distribution remained unbalanced. For (c), we oversampled the underrepresented classes in (b) to achieve a uniform distribution over all four grades of AIN (4304 images). All images were resized to 512 × 512 pixels by bilinear interpolation, prior to feature extraction.

2.2 Learning AIN grading classifiers

Feature extraction: Since AIN images show randomly orientated tissue, we considered the rotational invariance of global texture features advantageous. Inspired by [3], [4], [5], [6], we extracted 22 statistical and 304 fractal features to represent the image content. Statistical features consisted of summed pixel values of individual channels in three different color models (RGB, L*a*b*, HSV) and the gray value image (mean RGB), first and second order statistical parameters [9] of the NTSC luminance gray value image (variance, energy (1st, 2nd), entropy (1st, 2nd), skewness, kurtosis, third moment, fourth moment, contrast, homogeneity, correlation). Fractal features included estimated values for the fractal dimension based on the Fourier method (DF) applied to the gray value image [3] (first 216 distance values in frequency space), the box-counting method applied to the nuclei-segmented, binary image [5] (three scale-ranges: 20 − 24, 25 − 29, 20 − 29). In addition, the recently developed pyramidal gradient and pyramidal differences methods [10] applied to gray value images (mean RGB,R,G,B,L*,a*,b*,H,S,V; combinations of the scale-ranges 20 − 27 with at least four consecutive scales) were used.

Classifier training and inference: Given a set of labeled training samples, we employed a linear SVM to learn a maximum-margin classifier, characterized by an optimal hyper-plane that separates two classes. To solve our multi-class classification problem (AIN0-AIN3), multiple SVMs were trained in a one-versus-one scheme. The regularization parameter C, determining the trade-off between margin size and training error, was optimized to maximize the F1-score on a validation set. To infer the grading of a test sample, each SVM cast a vote for a grade. Then, majority voting determined the final grade.

Experimental setup: Three different sets of features were examined on each training set (cf. Section 2.1): (I) all features, (II) only the statistical features, (III) only DF (DF showed statistically significant differences for AIN1-AIN3 in [3]). Hence, nine classifiers were evaluated, which are identified as Ia-IIIc.

Features in each training set were standardized across all samples to zero mean, and unit variance. Validation and test set were standardized using the values computed from the corresponding training set. IQM (11), LIBSVM [12] and WEKA [13] were used in our experiments.

Performance metrics: Let TPc be the number of true positives, FPc false positives, and FNc false negatives per class. Precision, recall and F1-score is computed class-wise as PRCc = TPc/(TPc + FPc); RECc = TPc/(TPc + FNc); F1c = 2 ⋅ PRCc ⋅ RECc/(PRCc + RECc). Overall performance was measured in terms of weighted average precision (PRC = ∑cωc PRCc), recall (REC = ∑cωc RECc), and F1-score (F1 = ∑cωc F1c), where ωc = nc/n is the weight of each class.

3 Results

In Table 1, overall PRC, REC, and F1 are reported for the validation and test set. Detailed results on the test set are presented as confusion matrices for all nine classifiers (Ia–IIIc), cf. Figure 2. Best validation results were obtained when all extracted features were used jointly (I). PRC, REC and F1 measures ranged from 0.81 to 0.91 on the validation, and 0.79–0.90 on the test set. Using statistical features only (II), performance metrics dropped to 0.65–0.76, and 0.45–0.66, respectively. Classification based on DF yielded 0.38–0.69 for the validation, and 0.27–0.45 for the test set (III).

Table 1

Quantitative results of grading methods (linear SVMs with parameters optimized on validation sets) for all four grades of AIN.

Validation setTest set
Classifier (Feats.)PRCRECF1PRCRECF1
Ia (326)0.840.830.810.820.790.79
IIa (22)0.760.740.730.590.620.60
IIIa (1)0.400.610.480.290.450.36
Ib (326)0.870.870.870.900.860.87
IIb (22)0.680.700.680.560.550.54
IIIb (1)0.380.570.450.270.410.33
Ic (326)0.910.870.870.880.860.86
IIc (22)0.650.650.650.660.450.50
IIIc (1)0.690.520.520.360.410.32

The classifiers used different features (I: statistical and fractal features, II: statistical features, III: DF) and were trained with the original training set (a, upper panel), the 30-fold augmented training set (b, middle panel), and the augmented and balanced training set (c, lower panel).

Figure 2 Confusion matrices for the test set obtained with the nine different SVM classifiers Ia–IIIc. Rows: Statistical and fractal features (I), statistical features (II), DF (III). Columns: Original (A), augmented (B), augmented and balanced (C) training set. For each true class, colors towards magenta encode a higher tendency of a classifier to predict a particular class. Higher values along the main diagonal are desired.
Figure 2

Confusion matrices for the test set obtained with the nine different SVM classifiers Ia–IIIc. Rows: Statistical and fractal features (I), statistical features (II), DF (III). Columns: Original (A), augmented (B), augmented and balanced (C) training set. For each true class, colors towards magenta encode a higher tendency of a classifier to predict a particular class. Higher values along the main diagonal are desired.

Generally, results obtained by models that used all available features for classification slightly improved, when an augmented training set was used. This behavior was not observed for classifiers trained on statistical features or DF. The results for all classifiers are comparable for unbalanced and balanced training sets.

Figure 3 illustrates qualitative results for four images by presenting their ground truth labels and the grades that were predicted by our trained classifiers. For this illustration, one image per class was chosen randomly from the test set.

Figure 3 Qualitative comparison of evaluated AIN grading methods. Text in red color denotes classification errors, top right corner shows the ground truth label.
Figure 3

Qualitative comparison of evaluated AIN grading methods. Text in red color denotes classification errors, top right corner shows the ground truth label.

4 Discussion and conclusion

We examined different strategies to learn a classification model using SVM for grading histopathological images of AIN. Our results indicate that a combination of multiple fractal and statistical features greatly improved the outcome. For models that used all available features, we obtained highly similar performance on the validation and test set, which emphasizes our system’s ability to generalize well to unseen samples without over-fitting. Balancing the training set did not generally result in increased performance. Nevertheless, we could verify our hypothesis that augmentation aids classifiers during learning phase.

The authors of [3] claimed that DF reflected AIN grades well, but the mean recall actually was <0.5, excluding AIN0. Here, we included AIN0 and could not confirm that DF properly represents AIN grades. A much larger feature set was required to achieve generalization rates acceptable for the use in biomedical diagnostics. In practice, physicians frequently discriminate only low- and high-grade AIN. Our best performing system (Ib) can predict these two classes with an accuracy of 96.55%.

This much higher performance can be explained by the fact that compared to previous work [3], [4] not only a single value for the fractal dimension, but a multitude of values derived from measurements over varying scale-ranges was used. Features from different scale-ranges reflect measures at different scales, which are important when grading AIN (density, shape, texture of cell nuclei, distribution of cells).

Nevertheless, manually extracting image features remains subject to experience and is application-specific. End-to-end machine learning approaches, e.g. convolutional neural networks [14], are able to automatically tackle this problem. However, they usually require much larger training datasets. It is common that huge sets of labeled training data are scarce in biomedical imaging. Hence, an evaluation of our approach on more extensive AIN datasets is required as they become available. Depending on the available size of a dataset, a semi-supervised learning setting, i.e. making use of unlabeled instances, should also be considered.

Acknowledgement

PK and MMR equally contributed to this publication.

Author’s Statement

Research funding: The author state no funding involved. 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 complies with all the relevant national regulations, institutional policies and was performed in accordance with the tenets of the Helsinki Declaration, and has been approved by the authors’ institutional review board or equivalent committee.

References

[1] Simpson JAD, Scholefield JH. Diagnosis and management of anal intraepithelial neoplasia and anal cancer. Br Med J. 2011;343:d6818.10.1136/bmj.d6818Suche in Google Scholar

[2] Bejarano PA, Boutros M, Berho M. Anal squamous intraepithelial neoplasia. Gastroenterol Clin North Am. 2013;42:893–912.10.1016/j.gtc.2013.09.005Suche in Google Scholar

[3] Ahammer H, Kroepfl JM, Hackl C, Sedivy R. Fractal dimension and image statistics of anal intraepithelial neoplasia. Chaos Soliton Fract. 2011;44:86–92.10.1016/j.chaos.2010.12.004Suche in Google Scholar

[4] Klonowski W, Pierzchalski M, Stepien P, Stepien R, Sedivy R, Ahammer H. Application of Higuchi’s fractal dimension in analysis of images of Anal Intraepithelial Neoplasia. Chaos Soliton Fract. 2013;48:54–60.10.1016/j.chaos.2013.01.004Suche in Google Scholar

[5] Fabrizii M, Moinfar F, Jelinek HF, Karperien A, Ahammer H. Fractal analysis of cervical intraepithelial neoplasia. PLoS One. 2014;9:1–9.10.1371/journal.pone.0108457Suche in Google Scholar

[6] Ahammer H, Kroepfl JM, Hackl C, Sedivy R. Image statistics and data mining of anal intraepithelial neoplasia. Pattern Recogn Lett. 2008;29:2189–96.10.1016/j.patrec.2008.08.008Suche in Google Scholar

[7] Kononenko I. Machine learning for medical diagnosis: history, state of the art and perspective. Artif Intell Med. 2001;23:89–109.10.1016/S0933-3657(01)00077-XSuche in Google Scholar

[8] Cortes C, Vapnik V. Support-vector networks. Mach Learn. 1995;20:273–97.10.1007/BF00994018Suche in Google Scholar

[9] Gonzalez RC, Woods RE. Digital image processing. Upper Saddle River, NJ: Prentice Hall International; 2008.Suche in Google Scholar

[10] Mayrhofer-Reinhartshuber M, Ahammer H. Pyramidal fractal dimension for high resolution images. Chaos. 2016;26:073109.10.1063/1.4958709Suche in Google Scholar PubMed

[11] Kainz P, Mayrhofer-Reinhartshuber M, Ahammer H. IQM: an extensible and portable open source application for image and signal analysis in Java. PLoS One. 2015;10:e0116329.10.1371/journal.pone.0116329Suche in Google Scholar PubMed PubMed Central

[12] Chang CC, Lin CJ. LIBSVM: a library for support vector machines. ACM Trans Intell Syst Technol. 2011;2:27:1–27:27.10.1145/1961189.1961199Suche in Google Scholar

[13] Hall M, Frank E, Holmes G, Pfahringer B, Reutemann P, Witten IH. The WEKA data mining software: an update. SIGKDD Explor. 2009;11:10–8.10.1145/1656274.1656278Suche in Google Scholar

[14] LeCun Y, Bottou L, Bengio Y, Haffner P. Gradient-based learning applied to document recognition. Proc IEEE. 1998;86:2278–324.10.1109/5.726791Suche in Google Scholar

Published Online: 2016-9-30
Published in Print: 2016-9-1

©2016 Philipp Kainz et al., licensee De Gruyter.

This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 License.

Artikel in diesem Heft

  1. Synthesis and characterization of PIL/pNIPAAm hybrid hydrogels
  2. Novel blood protein based scaffolds for cardiovascular tissue engineering
  3. Cell adhesion and viability of human endothelial cells on electrospun polymer scaffolds
  4. Effects of heat treatment and welding process on superelastic behaviour and microstructure of micro electron beam welded NiTi
  5. Long-term stable modifications of silicone elastomer for improved hemocompatibility
  6. The effect of thermal treatment on the mechanical properties of PLLA tubular specimens
  7. Biocompatible wear-resistant thick ceramic coating
  8. Protection of active implant electronics with organosilicon open air plasma coating for plastic overmolding
  9. Examination of dielectric strength of thin Parylene C films under various conditions
  10. Open air plasma deposited antimicrobial SiOx/TiOx composite films for biomedical applications
  11. Systemic analysis about residual chloroform in PLLA films
  12. A macrophage model of osseointegration
  13. Towards in silico prognosis using big data
  14. Technical concept and evaluation of a novel shoulder simulator with adaptive muscle force generation and free motion
  15. Usability evaluation of a locomotor therapy device considering different strategies
  16. Hypoxia-on-a-chip
  17. Integration of a semi-automatic in-vitro RFA procedure into an experimental setup
  18. Fabrication of MEMS-based 3D-μECoG-MEAs
  19. High speed digital interfacing for a neural data acquisition system
  20. Bionic forceps for the handling of sensitive tissue
  21. Experimental studies on 3D printing of barium titanate ceramics for medical applications
  22. Patient specific root-analogue dental implants – additive manufacturing and finite element analysis
  23. 3D printing – a key technology for tailored biomedical cell culture lab ware
  24. 3D printing of hydrogels in a temperature controlled environment with high spatial resolution
  25. Biocompatibility of photopolymers for additive manufacturing
  26. Biochemical piezoresistive sensors based on pH- and glucose-sensitive hydrogels for medical applications
  27. Novel wireless measurement system of pressure dedicated to in vivo studies
  28. Portable auricular device for real-time swallow and chew detection
  29. Detection of miRNA using a surface plasmon resonance biosensor and antibody amplification
  30. Simulation and evaluation of stimulation scenarios for targeted vestibular nerve excitation
  31. Deep brain stimulation: increasing efficiency by alternative waveforms
  32. Prediction of immediately occurring microsleep events from brain electric signals
  33. Determining cardiac vagal threshold from short term heart rate complexity
  34. Classification of cardiac excitation patterns during atrial fibrillation
  35. An algorithm to automatically determine the cycle length coverage to identify rotational activity during atrial fibrillation – a simulation study
  36. Deriving respiration from high resolution 12-channel-ECG during cycling exercise
  37. Reducing of gradient induced artifacts on the ECG signal during MRI examinations using Wilcoxon filter
  38. Automatic detection and mapping of double potentials in intracardiac electrograms
  39. Modeling the pelvic region for non-invasive pelvic intraoperative neuromonitoring
  40. Postprocessing algorithm for automated analysis of pelvic intraoperative neuromonitoring signals
  41. Best practice: surgeon driven application in pelvic operations
  42. Vasomotor assessment by camera-based photoplethysmography
  43. Classification of morphologic changes in photoplethysmographic waveforms
  44. Novel computation of pulse transit time from multi-channel PPG signals by wavelet transform
  45. Efficient design of FIR filter based low-pass differentiators for biomedical signal processing
  46. Nonlinear causal influences assessed by mutual compression entropy
  47. Comparative study of methods for solving the correspondence problem in EMD applications
  48. fNIRS for future use in auditory diagnostics
  49. Semi-automated detection of fractional shortening in zebrafish embryo heart videos
  50. Blood pressure measurement on the cheek
  51. Derivation of the respiratory rate from directly and indirectly measured respiratory signals using autocorrelation
  52. Left cardiac atrioventricular delay and inter-ventricular delay in cardiac resynchronization therapy responder and non-responder
  53. An automatic systolic peak detector of blood pressure waveforms using 4th order cumulants
  54. Real-time QRS detection using integrated variance for ECG gated cardiac MRI
  55. Preprocessing of unipolar signals acquired by a novel intracardiac mapping system
  56. In-vitro experiments to characterize ventricular electromechanics
  57. Continuous non-invasive monitoring of blood pressure in the operating room: a cuffless optical technology at the fingertip
  58. Application of microwave sensor technology in cardiovascular disease for plaque detection
  59. Artificial blood circulatory and special Ultrasound Doppler probes for detecting and sizing gaseous embolism
  60. Detection of microsleep events in a car driving simulation study using electrocardiographic features
  61. A method to determine the kink resistance of stents and stent delivery systems according to international standards
  62. Comparison of stented bifurcation and straight vessel 3D-simulation with a prior simulated velocity profile inlet
  63. Transient Euler-Lagrange/DEM simulation of stent thrombosis
  64. Automated control of the laser welding process of heart valve scaffolds
  65. Automation of a test bench for accessing the bendability of electrospun vascular grafts
  66. Influence of storage conditions on the release of growth factors in platelet-rich blood derivatives
  67. Cryopreservation of cells using defined serum-free cryoprotective agents
  68. New bioreactor vessel for tissue engineering of human nasal septal chondrocytes
  69. Determination of the membrane hydraulic permeability of MSCs
  70. Climate retainment in carbon dioxide incubators
  71. Multiple factors influencing OR ventilation system effectiveness
  72. Evaluation of an app-based stress protocol
  73. Medication process in Styrian hospitals
  74. Control tower to surgical theater
  75. Development of a skull phantom for the assessment of implant X-ray visibility
  76. Surgical navigation with QR codes
  77. Investigation of the pressure gradient of embolic protection devices
  78. Computer assistance in femoral derotation osteotomy: a bottom-up approach
  79. Automatic depth scanning system for 3D infrared thermography
  80. A service for monitoring the quality of intraoperative cone beam CT images
  81. Resectoscope with an easy to use twist mechanism for improved handling
  82. In vitro simulation of distribution processes following intramuscular injection
  83. Adjusting inkjet printhead parameters to deposit drugs into micro-sized reservoirs
  84. A flexible standalone system with integrated sensor feedback for multi-pad electrode FES of the hand
  85. Smart control for functional electrical stimulation with optimal pulse intensity
  86. Tactile display on the remaining hand for unilateral hand amputees
  87. Effects of sustained electrical stimulation on spasticity assessed by the pendulum test
  88. An improved tracking framework for ultrasound probe localization in image-guided radiosurgery
  89. Improvement of a subviral particle tracker by the use of a LAP-Kalman-algorithm
  90. Learning discriminative classification models for grading anal intraepithelial neoplasia
  91. Regularization of EIT reconstruction based on multi-scales wavelet transforms
  92. Assessing MRI susceptibility artefact through an indicator of image distortion
  93. EyeGuidance – a computer controlled system to guide eye movements
  94. A framework for feedback-based segmentation of 3D image stacks
  95. Doppler optical coherence tomography as a promising tool for detecting fluid in the human middle ear
  96. 3D Local in vivo Environment (LivE) imaging for single cell protein analysis of bone tissue
  97. Inside-Out access strategy using new trans-vascular catheter approach
  98. US/MRI fusion with new optical tracking and marker approach for interventional procedures inside the MRI suite
  99. Impact of different registration methods in MEG source analysis
  100. 3D segmentation of thyroid ultrasound images using active contours
  101. Designing a compact MRI motion phantom
  102. Cerebral cortex classification by conditional random fields applied to intraoperative thermal imaging
  103. Classification of indirect immunofluorescence images using thresholded local binary count features
  104. Analysis of muscle fatigue conditions using time-frequency images and GLCM features
  105. Numerical evaluation of image parameters of ETR-1
  106. Fabrication of a compliant phantom of the human aortic arch for use in Particle Image Velocimetry (PIV) experimentation
  107. Effect of the number of electrodes on the reconstructed lung shape in electrical impedance tomography
  108. Hardware dependencies of GPU-accelerated beamformer performances for microwave breast cancer detection
  109. Computer assisted assessment of progressing osteoradionecrosis of the jaw for clinical diagnosis and treatment
  110. Evaluation of reconstruction parameters of electrical impedance tomography on aorta detection during saline bolus injection
  111. Evaluation of open-source software for the lung segmentation
  112. Automatic determination of lung features of CF patients in CT scans
  113. Image analysis of self-organized multicellular patterns
  114. Effect of key parameters on synthesis of superparamagnetic nanoparticles (SPIONs)
  115. Radiopacity assessment of neurovascular implants
  116. Development of a desiccant based dielectric for monitoring humidity conditions in miniaturized hermetic implantable packages
  117. Development of an artifact-free aneurysm clip
  118. Enhancing the regeneration of bone defects by alkalizing the peri-implant zone – an in vitro approach
  119. Rapid prototyping of replica knee implants for in vitro testing
  120. Protecting ultra- and hyperhydrophilic implant surfaces in dry state from loss of wettability
  121. Advanced wettability analysis of implant surfaces
  122. Patient-specific hip prostheses designed by surgeons
  123. Plasma treatment on novel carbon fiber reinforced PEEK cages to enhance bioactivity
  124. Wear of a total intervertebral disc prosthesis
  125. Digital health and digital biomarkers – enabling value chains on health data
  126. Usability in the lifecycle of medical software development
  127. Influence of different test gases in a non-destructive 100% quality control system for medical devices
  128. Device development guided by user satisfaction survey on auricular vagus nerve stimulation
  129. Empirical assessment of the time course of innovation in biomedical engineering: first results of a comparative approach
  130. Effect of left atrial hypertrophy on P-wave morphology in a computational model
  131. Simulation of intracardiac electrograms around acute ablation lesions
  132. Parametrization of activation based cardiac electrophysiology models using bidomain model simulations
  133. Assessment of nasal resistance using computational fluid dynamics
  134. Resistance in a non-linear autoregressive model of pulmonary mechanics
  135. Inspiratory and expiratory elastance in a non-linear autoregressive model of pulmonary mechanics
  136. Determination of regional lung function in cystic fibrosis using electrical impedance tomography
  137. Development of parietal bone surrogates for parietal graft lift training
  138. Numerical simulation of mechanically stimulated bone remodelling
  139. Conversion of engineering stresses to Cauchy stresses in tensile and compression tests of thermoplastic polymers
  140. Numerical examinations of simplified spondylodesis models concerning energy absorption in magnetic resonance imaging
  141. Principle study on the signal connection at transabdominal fetal pulse oximetry
  142. Influence of Siluron® insertion on model drug distribution in the simulated vitreous body
  143. Evaluating different approaches to identify a three parameter gas exchange model
  144. Effects of fibrosis on the extracellular potential based on 3D reconstructions from histological sections of heart tissue
  145. From imaging to hemodynamics – how reconstruction kernels influence the blood flow predictions in intracranial aneurysms
  146. Flow optimised design of a novel point-of-care diagnostic device for the detection of disease specific biomarkers
  147. Improved FPGA controlled artificial vascular system for plethysmographic measurements
  148. Minimally spaced electrode positions for multi-functional chest sensors: ECG and respiratory signal estimation
  149. Automated detection of alveolar arches for nasoalveolar molding in cleft lip and palate treatment
  150. Control scheme selection in human-machine- interfaces by analysis of activity signals
  151. Event-based sampling for reducing communication load in realtime human motion analysis by wireless inertial sensor networks
  152. Automatic pairing of inertial sensors to lower limb segments – a plug-and-play approach
  153. Contactless respiratory monitoring system for magnetic resonance imaging applications using a laser range sensor
  154. Interactive monitoring system for visual respiratory biofeedback
  155. Development of a low-cost senor based aid for visually impaired people
  156. Patient assistive system for the shoulder joint
  157. A passive beating heart setup for interventional cardiology training
Heruntergeladen am 7.9.2025 von https://www.degruyterbrill.com/document/doi/10.1515/cdbme-2016-0093/html
Button zum nach oben scrollen