Abstract
An ever increasing number of research is examining the question to what extent physiological information beyond the blood oxygen saturation could be drawn from the photoplethysmogram. One important approach to elicit that information from the photoplethysmogram is the analysis of its waveform. One prominent example for the value of photoplethysmographic waveform analysis in cardiovascular monitoring that has emerged is hemodynamic compensation assessment in the peri-operative setting or trauma situations, as digital pulse waveform dynamically changes with alterations in vascular tone or pulse wave velocity. In this work, we present an algorithm based on modern machine learning techniques that automatically finds individual digital volume pulses in photoplethysmographic signals and sorts them into one of the pulse classes defined by Dawber et al. We evaluate our approach based on two major datasets – a measurement study that we conducted ourselves as well as data from the PhysioNet MIMIC II database. As the results are satisfying we could demonstrate the capabilities of classification algorithms in the automated assessment of the digital volume pulse waveform measured by photoplethysmographic devices.
1 Introduction
Despite the fact that the photoplethysmography (PPG) has been one of the standard monitoring modalities for vital parameters for many years, the waveform of the PPG is ignored in the clinical daily routine. That kind of attitude towards the PPG waveform changed in recent years, and is still changing. An ever increasing number of research is examining the question to what extent physiological information beyond the blood oxygen saturation could be drawn from the PPG. One important approach to elicit that information from the PPG is the analysis of its waveform.
One prominent example for the value of PPG waveform analysis that has emerged is that of hemodynamic compensation assessment in the peri-operative setting or trauma situations. It could be shown that the width of the digital volume pulse measured by a photoplethysmographic device on the index finger is sensitive to changes in the systemic vascular resistance and thus allows for early detection of active compensatory mechanisms during hemorrhage [1]. Recently Convertino et al. [2] demonstrated how modern machine learning techniques can be beneficially utilized to reveal subtle waveform features that trend the compensatory phase of hemorrhage.
Digital pulse waveform dynamically changes, among others, with alterations in vascular tone or changes in pulse wave velocity induced for example by blood pressure variations or medication. The aim of this work is the development of a classification algorithm that automatically groups individual digital volume pulses measured with photoplethysmographic devices based on their specific waveform.
This paper is organized as follows. In Section 2, the class definitions for grouping of the pulses are given. Also, the developed approach for automated pulse classification is outlined. The results are presented in Section 3. Finally, concluding remarks are given in Section 4.
2 Methods
2.1 Class definitions for digital volume pulses
In their pioneering paper about pulse waveform analysis [3], Dawber et al. defined four classes for the categorization of arterial pulse waves:
Class 1: A dicrotic notch (i.e. an incisura) is apparent on the downward slope of the pulse wave.
Class 2: No distinct dicrotic notch is visible, but the downward slope becomes horizontal.
Class 3: No distinct dicrotic notch is visible, but a well-defined change in the angle of descent is observed.
Class 4: No evidence of a dicrotic notch is visible.
An example waveform for each class is presented in Figure 1. Under the most simple assumptions digital volume pulses can be thought of as a superposition of two Gaussian shaped waves, where the leading (systolic) wave is the direct wave that travels from the heart to the finger after coronary contraction and the lagging (diastolic) wave results from reflections mainly at the Iliac arteries in the lower body.

Periphal pulse wave classes as defined by Dawber.
Although Dawber et al. based their definitions on the assessment of arterial pressure pulses measured with a pressure cuff on the finger, these classes are equally applicable to digital volume pulse signals recorded by a photoplethysmographic device, as Millasseau et al. have shown that a simple transfer function can be found to transform the volume pulses into pressure pulses [4].
2.2 Automated classification of pulse waves
In this work, we present an algorithm based on modern machine learning techniques that automatically finds individual pulses in photoplethysmographic signals and sorts them into one of the pulse classes defined by Dawber et al. The main steps of our approach is outlined in Figure 2.

Outline of the automated pulse waveform classification algorithm. Employed classifiers are artificial neural network (ANN), support vector machine (SVM) and bagged tree classifier (BTC).
At first, in the pre-processing stage, the raw signals are filtered by an 8th order, zero-phase Butterworth filter with cut-off frequencies of 0.2 Hz and 16 Hz, respectively, in order to remove noise and baseline variations. The high-pass cut-off frequency was chosen because for higher cut-off frequencies, not neglegible pulse shape distortions can be observed. The low-pass cut-off frequency was found empirically and constitutes a good trade-off between shape distortions and high-frequent noise rejection.
In the pulse detection state, individual pulses are found by means of an open-source peak-detection algorithm presented by Zong et al. [5].
In the next stage, a set of features that facilitates separating the pulse waveform classes is calculated for every single pulse. Initially, we designed 24 features with the goal to map the information on class affiliation, that is easily visible for the human eye, onto numerical values that the classification algorithms can utilize for model training and subsequent classification. We identified a subset of 13 features that showed a positive interaction with respect to the classification problem by means of the INTERACT [6] feature selection algorithm. A list of the employed features including a short description and corresponding abbreviations is given in Table 1.
List and description of the interacting feature set.
| Feature name | Abb. | Description |
|---|---|---|
| Relative rise time | RRT | Time between the onset an the systolic peak. Normalized by pulse duration. |
| Relative slope time | RST | Time between the systolic peak and the end of the pulse. Normalized by pulse duration. |
| Dicrotic-diastolic ratio | DDR | Amplitude relation between the dicrotic notch and the diastolic peak. Set to 1.1 if no diastolic peak could be detected. |
| Relative downslope sum | RDS | Cumulative sum of the downslope. Normalized with pulse duration. |
| Relative euclidean length | REL | Euclidean length of the downslope. Normalized by pulse duration. |
| Downslope derivative mean | DDM | Mean value of the pulse derivative during the downslope. |
| Downslope derivative variance | DDV | Variance of the pulse derivative during the downslope. |
| Downslope positive derivative | DPD | Number of downslope samples exceeding a fixed threshold. Normalized with downslope duration. |
| Relative horizontal streak | RHS | Longest streak of samples with slope values within a fixed interval. Normalized with the downslope length. |
The features are either calculated from the time domain signal (see Figure 3) or its first derivative (see Figure 4). For better generalization, all features are calculated on pulses with normalized peak-to-peak amplitude.
In the classifier training stage, modern machine learning algorithms are trained to generate a model that is able to automatically group unknown pulses into one of the four classes. In this work, we utilized and evaluated an artificial neural network (ANN), a support vector machine (SVM) and a bagged tree classifier (BTC). The SVM algorithm is only applicable to binary separation problems, therefore we decomposed the four-class pulse classification into a sequence of two binary classification steps. In order to avoid overfitting during classifier training and to get an unbiased estimation of classification performance, we divided all available data into training and test sets. Consequently, the algorithms learned only from the training sets and performance metrics were solely calculated from the test sets.

Features derived from the time domain signal.

Features derived from the first derivative of the time domain signal.
3 Results
In this section we present the results of the performance evaluation of the proposed approach. We carried out simulations on two major datasets. A summary of the class distribution within the two datasets can be found in Table 2.
Class distribution in the training and test data.
| Class | I | II | III | IV | Sum |
|---|---|---|---|---|---|
| Arm lift (train.) | 1153 | 396 | 440 | 389 | 2378 |
| Arm lift (test) | 1005 | 431 | 458 | 156 | 2047 |
| MIMIC II (train.) | 800 | 500 | 200 | 700 | 2200 |
| MIMIC II (test) | 994 | 298 | 94 | 494 | 1880 |
| Total | 3952 | 1625 | 1192 | 1739 | 8505 |
The first dataset comprises a measurement study with ten healthy subjects, eight males and two females, aged between 21 and 28 years, that was conducted at our laboratory. During each measurement, a custom-made, wireless PPG sensor node that is part of our body sensor network rBSN [7] was attached to the right index finger. The sample rate of the sensor was 500 Hertz. All measurements were conducted in standing position. At the beginning of the measurement, the subject’s right arm was pointing towards the floor. After 1 min elapsed, the right arm was lifted by 45°. This was repeated until the subject’s arm pointed towards the ceiling. This measurement protocol was developed and chosen, because incrementally lifting the arm reliably generates the digital volume pulses that gradually shift from class I to IV.
The second dataset was extracted from the MIMIC II waveform database [8], which is available online from the PhysioNet archive. Because accurately timed annotations of cardiovascular events that dynamically change the digital pulse waveform are missing, we used the patients age to identify recordings with different pulse classes. For obtaining class I pulses, we chose recordings from patients aged 35 years and less. Class II and class III pulses could be extracted from recordings of patients aged between 40 and 65. Class IV pulses were obtained from subjects older than 80 years. The PPG recordings in the MIMIC II database were sampled at 125 Hz. Reference labelling was obtained by consensus of multiple experts after independent visual inspection. We estimated the performance in form of the F1-score as it is a measure of a classifiers accuracy that considers both precision and recall. F1 = 1 means perfect classification and F1 = 0 means that all classifier decisions are wrong.
The classification results on the test datasets are given in Table 3. As one can see, in the arm lift dateset, all classifiers produce comparable results. In the PhysioNet dataset, the ANN and the BTC get slightly higher F1-scores for class II than the SVM. In return, the SVM gets a better F1-score in class III. Overall, the detection accuracy for class I pulses is much better than for the others. This effect can be explained by taking a look at class distribution shown in Table 2. As there are much more class I pulses in the training datasets, their shape is learned better. Furthermore, the separation of class II from class III and class III from class IV pulses during the annotation process was not trivial, so labelling errors might also cause a degradation of the classification performance. To evaluate if a combination of the classifiers could be used to improve classification, we fused the classifiers by calculating the mean of their individual class votes and then rounding the result. The result of this fusion can be found in the last row in Table 3. For both datesets, this fusion did not lead to a significant improvement, hence suggesting that the classifiers have a strong agreement also when they are misclassifying.
Summary of the classification results on the test datasets.
| Classification algorithm | Arm lift | MIMIC II | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| Class I | Class II | Class III | Class IV | Overall | Class I | Class II | Class III | Class IV | Overall | |
| ANN | 0.949 | 0.724 | 0.7595 | 0.676 | 0.842 | 0.970 | 0.875 | 0.647 | 0.936 | 0.928 |
| SVM | 0.949 | 0.732 | 0.791 | 0.729 | 0.852 | 0.935 | 0.793 | 0.891 | 0.991 | 0.921 |
| BTC | 0.953 | 0.753 | 0.795 | 0.705 | 0.857 | 0.967 | 0.857 | 0.675 | 0.933 | 0.920 |
| FUSION | 0.955 | 0.753 | 0.799 | 0.712 | 0.86 | 0.968 | 0.863 | 0.765 | 0.962 | 0.937 |
4 Conclusion
Due to its unobtrusiveness and its cheap and easy obtainability, automated interpretation of the digital volume pulse waveform measured by photoplethysmography will play a significant role in the development of novel hemodynamic monitoring devices. In this work we have successfully demonstrated a novel approach for pulse waveform classification based on modern machine learning techniques that automatically groups digital volume pulses into the waveform classes defined by Dawber et al. This information could for example prove valuable in the assessment of the cardiovascular system during surgical operations or monitoring on intensive care units. In future works, we aim at improving the classification performance by exploring more features.
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] Awad AA, Haddadin AS, Tantawy H, Badr TM, Stout RG, Silverman DG, et al. The relationship between the photoplethysmographic waveform and systemic vascular resistance. J Clin Monit Comput. 2007;21:365–72.10.1007/s10877-007-9097-5Search in Google Scholar PubMed
[2] Convertino VA, Grudic G, Mulligan J, Moulton S. Estimation of individual-specific progression to impending cardiovascular instability using arterial waveforms. J Appl Physiol. 2013;115:1196–202.10.1152/japplphysiol.00668.2013Search in Google Scholar PubMed
[3] Dawber T, Thomas H, McNamara P. Characteristics of the dicrotic notch of the arterial pulse wave in coronary heart disease. Angiology. 1973;24:244–55.10.1177/000331977302400407Search in Google Scholar PubMed
[4] Millasseau SC, Ritter JM, Takazawa K, Chowienczyk PJ. Contour analysis of the photoplethysmographic pulse measured at the finger. J Hypertens. 2006;24:1449–56.10.1097/01.hjh.0000239277.05068.87Search in Google Scholar PubMed
[5] Zong W, Heldt T, Moody G, Mark R. An open-source algorithm to detect onset of arterial blood pressure pulses. In: Computers in Cardiology; 2003. p. 259–62.10.1109/CIC.2003.1291140Search in Google Scholar
[6] Zhao Z, Liu H. Searching for interacting features. In: International Joint Conference on Artificial Intelligence; 2007.Search in Google Scholar
[7] Pflugradt M, Mann S, Tigges T, Görnig M, Orglmeister R. Multi-modal signal acquisition using a synchronized wireless body sensor network in geriatric patients. Biomed Eng. 2015;61:57–86.10.1515/bmt-2014-0178Search in Google Scholar PubMed
[8] Saeed M, Villarroel M, Reisner AT, Clifford G, Lehman LW, Moody G, et al. Multiparameter intelligent monitoring in intensive care II (MIMIC-II): a public-access intensive care unit database. Crit Care Med. 2011;39:952–60.10.1097/CCM.0b013e31820a92c6Search in Google Scholar PubMed PubMed Central
©2016 Timo Tigges et al., licensee De Gruyter.
This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 License.
Articles in the same Issue
- Synthesis and characterization of PIL/pNIPAAm hybrid hydrogels
- Novel blood protein based scaffolds for cardiovascular tissue engineering
- Cell adhesion and viability of human endothelial cells on electrospun polymer scaffolds
- Effects of heat treatment and welding process on superelastic behaviour and microstructure of micro electron beam welded NiTi
- Long-term stable modifications of silicone elastomer for improved hemocompatibility
- The effect of thermal treatment on the mechanical properties of PLLA tubular specimens
- Biocompatible wear-resistant thick ceramic coating
- Protection of active implant electronics with organosilicon open air plasma coating for plastic overmolding
- Examination of dielectric strength of thin Parylene C films under various conditions
- Open air plasma deposited antimicrobial SiOx/TiOx composite films for biomedical applications
- Systemic analysis about residual chloroform in PLLA films
- A macrophage model of osseointegration
- Towards in silico prognosis using big data
- Technical concept and evaluation of a novel shoulder simulator with adaptive muscle force generation and free motion
- Usability evaluation of a locomotor therapy device considering different strategies
- Hypoxia-on-a-chip
- Integration of a semi-automatic in-vitro RFA procedure into an experimental setup
- Fabrication of MEMS-based 3D-μECoG-MEAs
- High speed digital interfacing for a neural data acquisition system
- Bionic forceps for the handling of sensitive tissue
- Experimental studies on 3D printing of barium titanate ceramics for medical applications
- Patient specific root-analogue dental implants – additive manufacturing and finite element analysis
- 3D printing – a key technology for tailored biomedical cell culture lab ware
- 3D printing of hydrogels in a temperature controlled environment with high spatial resolution
- Biocompatibility of photopolymers for additive manufacturing
- Biochemical piezoresistive sensors based on pH- and glucose-sensitive hydrogels for medical applications
- Novel wireless measurement system of pressure dedicated to in vivo studies
- Portable auricular device for real-time swallow and chew detection
- Detection of miRNA using a surface plasmon resonance biosensor and antibody amplification
- Simulation and evaluation of stimulation scenarios for targeted vestibular nerve excitation
- Deep brain stimulation: increasing efficiency by alternative waveforms
- Prediction of immediately occurring microsleep events from brain electric signals
- Determining cardiac vagal threshold from short term heart rate complexity
- Classification of cardiac excitation patterns during atrial fibrillation
- An algorithm to automatically determine the cycle length coverage to identify rotational activity during atrial fibrillation – a simulation study
- Deriving respiration from high resolution 12-channel-ECG during cycling exercise
- Reducing of gradient induced artifacts on the ECG signal during MRI examinations using Wilcoxon filter
- Automatic detection and mapping of double potentials in intracardiac electrograms
- Modeling the pelvic region for non-invasive pelvic intraoperative neuromonitoring
- Postprocessing algorithm for automated analysis of pelvic intraoperative neuromonitoring signals
- Best practice: surgeon driven application in pelvic operations
- Vasomotor assessment by camera-based photoplethysmography
- Classification of morphologic changes in photoplethysmographic waveforms
- Novel computation of pulse transit time from multi-channel PPG signals by wavelet transform
- Efficient design of FIR filter based low-pass differentiators for biomedical signal processing
- Nonlinear causal influences assessed by mutual compression entropy
- Comparative study of methods for solving the correspondence problem in EMD applications
- fNIRS for future use in auditory diagnostics
- Semi-automated detection of fractional shortening in zebrafish embryo heart videos
- Blood pressure measurement on the cheek
- Derivation of the respiratory rate from directly and indirectly measured respiratory signals using autocorrelation
- Left cardiac atrioventricular delay and inter-ventricular delay in cardiac resynchronization therapy responder and non-responder
- An automatic systolic peak detector of blood pressure waveforms using 4th order cumulants
- Real-time QRS detection using integrated variance for ECG gated cardiac MRI
- Preprocessing of unipolar signals acquired by a novel intracardiac mapping system
- In-vitro experiments to characterize ventricular electromechanics
- Continuous non-invasive monitoring of blood pressure in the operating room: a cuffless optical technology at the fingertip
- Application of microwave sensor technology in cardiovascular disease for plaque detection
- Artificial blood circulatory and special Ultrasound Doppler probes for detecting and sizing gaseous embolism
- Detection of microsleep events in a car driving simulation study using electrocardiographic features
- A method to determine the kink resistance of stents and stent delivery systems according to international standards
- Comparison of stented bifurcation and straight vessel 3D-simulation with a prior simulated velocity profile inlet
- Transient Euler-Lagrange/DEM simulation of stent thrombosis
- Automated control of the laser welding process of heart valve scaffolds
- Automation of a test bench for accessing the bendability of electrospun vascular grafts
- Influence of storage conditions on the release of growth factors in platelet-rich blood derivatives
- Cryopreservation of cells using defined serum-free cryoprotective agents
- New bioreactor vessel for tissue engineering of human nasal septal chondrocytes
- Determination of the membrane hydraulic permeability of MSCs
- Climate retainment in carbon dioxide incubators
- Multiple factors influencing OR ventilation system effectiveness
- Evaluation of an app-based stress protocol
- Medication process in Styrian hospitals
- Control tower to surgical theater
- Development of a skull phantom for the assessment of implant X-ray visibility
- Surgical navigation with QR codes
- Investigation of the pressure gradient of embolic protection devices
- Computer assistance in femoral derotation osteotomy: a bottom-up approach
- Automatic depth scanning system for 3D infrared thermography
- A service for monitoring the quality of intraoperative cone beam CT images
- Resectoscope with an easy to use twist mechanism for improved handling
- In vitro simulation of distribution processes following intramuscular injection
- Adjusting inkjet printhead parameters to deposit drugs into micro-sized reservoirs
- A flexible standalone system with integrated sensor feedback for multi-pad electrode FES of the hand
- Smart control for functional electrical stimulation with optimal pulse intensity
- Tactile display on the remaining hand for unilateral hand amputees
- Effects of sustained electrical stimulation on spasticity assessed by the pendulum test
- An improved tracking framework for ultrasound probe localization in image-guided radiosurgery
- Improvement of a subviral particle tracker by the use of a LAP-Kalman-algorithm
- Learning discriminative classification models for grading anal intraepithelial neoplasia
- Regularization of EIT reconstruction based on multi-scales wavelet transforms
- Assessing MRI susceptibility artefact through an indicator of image distortion
- EyeGuidance – a computer controlled system to guide eye movements
- A framework for feedback-based segmentation of 3D image stacks
- Doppler optical coherence tomography as a promising tool for detecting fluid in the human middle ear
- 3D Local in vivo Environment (LivE) imaging for single cell protein analysis of bone tissue
- Inside-Out access strategy using new trans-vascular catheter approach
- US/MRI fusion with new optical tracking and marker approach for interventional procedures inside the MRI suite
- Impact of different registration methods in MEG source analysis
- 3D segmentation of thyroid ultrasound images using active contours
- Designing a compact MRI motion phantom
- Cerebral cortex classification by conditional random fields applied to intraoperative thermal imaging
- Classification of indirect immunofluorescence images using thresholded local binary count features
- Analysis of muscle fatigue conditions using time-frequency images and GLCM features
- Numerical evaluation of image parameters of ETR-1
- Fabrication of a compliant phantom of the human aortic arch for use in Particle Image Velocimetry (PIV) experimentation
- Effect of the number of electrodes on the reconstructed lung shape in electrical impedance tomography
- Hardware dependencies of GPU-accelerated beamformer performances for microwave breast cancer detection
- Computer assisted assessment of progressing osteoradionecrosis of the jaw for clinical diagnosis and treatment
- Evaluation of reconstruction parameters of electrical impedance tomography on aorta detection during saline bolus injection
- Evaluation of open-source software for the lung segmentation
- Automatic determination of lung features of CF patients in CT scans
- Image analysis of self-organized multicellular patterns
- Effect of key parameters on synthesis of superparamagnetic nanoparticles (SPIONs)
- Radiopacity assessment of neurovascular implants
- Development of a desiccant based dielectric for monitoring humidity conditions in miniaturized hermetic implantable packages
- Development of an artifact-free aneurysm clip
- Enhancing the regeneration of bone defects by alkalizing the peri-implant zone – an in vitro approach
- Rapid prototyping of replica knee implants for in vitro testing
- Protecting ultra- and hyperhydrophilic implant surfaces in dry state from loss of wettability
- Advanced wettability analysis of implant surfaces
- Patient-specific hip prostheses designed by surgeons
- Plasma treatment on novel carbon fiber reinforced PEEK cages to enhance bioactivity
- Wear of a total intervertebral disc prosthesis
- Digital health and digital biomarkers – enabling value chains on health data
- Usability in the lifecycle of medical software development
- Influence of different test gases in a non-destructive 100% quality control system for medical devices
- Device development guided by user satisfaction survey on auricular vagus nerve stimulation
- Empirical assessment of the time course of innovation in biomedical engineering: first results of a comparative approach
- Effect of left atrial hypertrophy on P-wave morphology in a computational model
- Simulation of intracardiac electrograms around acute ablation lesions
- Parametrization of activation based cardiac electrophysiology models using bidomain model simulations
- Assessment of nasal resistance using computational fluid dynamics
- Resistance in a non-linear autoregressive model of pulmonary mechanics
- Inspiratory and expiratory elastance in a non-linear autoregressive model of pulmonary mechanics
- Determination of regional lung function in cystic fibrosis using electrical impedance tomography
- Development of parietal bone surrogates for parietal graft lift training
- Numerical simulation of mechanically stimulated bone remodelling
- Conversion of engineering stresses to Cauchy stresses in tensile and compression tests of thermoplastic polymers
- Numerical examinations of simplified spondylodesis models concerning energy absorption in magnetic resonance imaging
- Principle study on the signal connection at transabdominal fetal pulse oximetry
- Influence of Siluron® insertion on model drug distribution in the simulated vitreous body
- Evaluating different approaches to identify a three parameter gas exchange model
- Effects of fibrosis on the extracellular potential based on 3D reconstructions from histological sections of heart tissue
- From imaging to hemodynamics – how reconstruction kernels influence the blood flow predictions in intracranial aneurysms
- Flow optimised design of a novel point-of-care diagnostic device for the detection of disease specific biomarkers
- Improved FPGA controlled artificial vascular system for plethysmographic measurements
- Minimally spaced electrode positions for multi-functional chest sensors: ECG and respiratory signal estimation
- Automated detection of alveolar arches for nasoalveolar molding in cleft lip and palate treatment
- Control scheme selection in human-machine- interfaces by analysis of activity signals
- Event-based sampling for reducing communication load in realtime human motion analysis by wireless inertial sensor networks
- Automatic pairing of inertial sensors to lower limb segments – a plug-and-play approach
- Contactless respiratory monitoring system for magnetic resonance imaging applications using a laser range sensor
- Interactive monitoring system for visual respiratory biofeedback
- Development of a low-cost senor based aid for visually impaired people
- Patient assistive system for the shoulder joint
- A passive beating heart setup for interventional cardiology training
Articles in the same Issue
- Synthesis and characterization of PIL/pNIPAAm hybrid hydrogels
- Novel blood protein based scaffolds for cardiovascular tissue engineering
- Cell adhesion and viability of human endothelial cells on electrospun polymer scaffolds
- Effects of heat treatment and welding process on superelastic behaviour and microstructure of micro electron beam welded NiTi
- Long-term stable modifications of silicone elastomer for improved hemocompatibility
- The effect of thermal treatment on the mechanical properties of PLLA tubular specimens
- Biocompatible wear-resistant thick ceramic coating
- Protection of active implant electronics with organosilicon open air plasma coating for plastic overmolding
- Examination of dielectric strength of thin Parylene C films under various conditions
- Open air plasma deposited antimicrobial SiOx/TiOx composite films for biomedical applications
- Systemic analysis about residual chloroform in PLLA films
- A macrophage model of osseointegration
- Towards in silico prognosis using big data
- Technical concept and evaluation of a novel shoulder simulator with adaptive muscle force generation and free motion
- Usability evaluation of a locomotor therapy device considering different strategies
- Hypoxia-on-a-chip
- Integration of a semi-automatic in-vitro RFA procedure into an experimental setup
- Fabrication of MEMS-based 3D-μECoG-MEAs
- High speed digital interfacing for a neural data acquisition system
- Bionic forceps for the handling of sensitive tissue
- Experimental studies on 3D printing of barium titanate ceramics for medical applications
- Patient specific root-analogue dental implants – additive manufacturing and finite element analysis
- 3D printing – a key technology for tailored biomedical cell culture lab ware
- 3D printing of hydrogels in a temperature controlled environment with high spatial resolution
- Biocompatibility of photopolymers for additive manufacturing
- Biochemical piezoresistive sensors based on pH- and glucose-sensitive hydrogels for medical applications
- Novel wireless measurement system of pressure dedicated to in vivo studies
- Portable auricular device for real-time swallow and chew detection
- Detection of miRNA using a surface plasmon resonance biosensor and antibody amplification
- Simulation and evaluation of stimulation scenarios for targeted vestibular nerve excitation
- Deep brain stimulation: increasing efficiency by alternative waveforms
- Prediction of immediately occurring microsleep events from brain electric signals
- Determining cardiac vagal threshold from short term heart rate complexity
- Classification of cardiac excitation patterns during atrial fibrillation
- An algorithm to automatically determine the cycle length coverage to identify rotational activity during atrial fibrillation – a simulation study
- Deriving respiration from high resolution 12-channel-ECG during cycling exercise
- Reducing of gradient induced artifacts on the ECG signal during MRI examinations using Wilcoxon filter
- Automatic detection and mapping of double potentials in intracardiac electrograms
- Modeling the pelvic region for non-invasive pelvic intraoperative neuromonitoring
- Postprocessing algorithm for automated analysis of pelvic intraoperative neuromonitoring signals
- Best practice: surgeon driven application in pelvic operations
- Vasomotor assessment by camera-based photoplethysmography
- Classification of morphologic changes in photoplethysmographic waveforms
- Novel computation of pulse transit time from multi-channel PPG signals by wavelet transform
- Efficient design of FIR filter based low-pass differentiators for biomedical signal processing
- Nonlinear causal influences assessed by mutual compression entropy
- Comparative study of methods for solving the correspondence problem in EMD applications
- fNIRS for future use in auditory diagnostics
- Semi-automated detection of fractional shortening in zebrafish embryo heart videos
- Blood pressure measurement on the cheek
- Derivation of the respiratory rate from directly and indirectly measured respiratory signals using autocorrelation
- Left cardiac atrioventricular delay and inter-ventricular delay in cardiac resynchronization therapy responder and non-responder
- An automatic systolic peak detector of blood pressure waveforms using 4th order cumulants
- Real-time QRS detection using integrated variance for ECG gated cardiac MRI
- Preprocessing of unipolar signals acquired by a novel intracardiac mapping system
- In-vitro experiments to characterize ventricular electromechanics
- Continuous non-invasive monitoring of blood pressure in the operating room: a cuffless optical technology at the fingertip
- Application of microwave sensor technology in cardiovascular disease for plaque detection
- Artificial blood circulatory and special Ultrasound Doppler probes for detecting and sizing gaseous embolism
- Detection of microsleep events in a car driving simulation study using electrocardiographic features
- A method to determine the kink resistance of stents and stent delivery systems according to international standards
- Comparison of stented bifurcation and straight vessel 3D-simulation with a prior simulated velocity profile inlet
- Transient Euler-Lagrange/DEM simulation of stent thrombosis
- Automated control of the laser welding process of heart valve scaffolds
- Automation of a test bench for accessing the bendability of electrospun vascular grafts
- Influence of storage conditions on the release of growth factors in platelet-rich blood derivatives
- Cryopreservation of cells using defined serum-free cryoprotective agents
- New bioreactor vessel for tissue engineering of human nasal septal chondrocytes
- Determination of the membrane hydraulic permeability of MSCs
- Climate retainment in carbon dioxide incubators
- Multiple factors influencing OR ventilation system effectiveness
- Evaluation of an app-based stress protocol
- Medication process in Styrian hospitals
- Control tower to surgical theater
- Development of a skull phantom for the assessment of implant X-ray visibility
- Surgical navigation with QR codes
- Investigation of the pressure gradient of embolic protection devices
- Computer assistance in femoral derotation osteotomy: a bottom-up approach
- Automatic depth scanning system for 3D infrared thermography
- A service for monitoring the quality of intraoperative cone beam CT images
- Resectoscope with an easy to use twist mechanism for improved handling
- In vitro simulation of distribution processes following intramuscular injection
- Adjusting inkjet printhead parameters to deposit drugs into micro-sized reservoirs
- A flexible standalone system with integrated sensor feedback for multi-pad electrode FES of the hand
- Smart control for functional electrical stimulation with optimal pulse intensity
- Tactile display on the remaining hand for unilateral hand amputees
- Effects of sustained electrical stimulation on spasticity assessed by the pendulum test
- An improved tracking framework for ultrasound probe localization in image-guided radiosurgery
- Improvement of a subviral particle tracker by the use of a LAP-Kalman-algorithm
- Learning discriminative classification models for grading anal intraepithelial neoplasia
- Regularization of EIT reconstruction based on multi-scales wavelet transforms
- Assessing MRI susceptibility artefact through an indicator of image distortion
- EyeGuidance – a computer controlled system to guide eye movements
- A framework for feedback-based segmentation of 3D image stacks
- Doppler optical coherence tomography as a promising tool for detecting fluid in the human middle ear
- 3D Local in vivo Environment (LivE) imaging for single cell protein analysis of bone tissue
- Inside-Out access strategy using new trans-vascular catheter approach
- US/MRI fusion with new optical tracking and marker approach for interventional procedures inside the MRI suite
- Impact of different registration methods in MEG source analysis
- 3D segmentation of thyroid ultrasound images using active contours
- Designing a compact MRI motion phantom
- Cerebral cortex classification by conditional random fields applied to intraoperative thermal imaging
- Classification of indirect immunofluorescence images using thresholded local binary count features
- Analysis of muscle fatigue conditions using time-frequency images and GLCM features
- Numerical evaluation of image parameters of ETR-1
- Fabrication of a compliant phantom of the human aortic arch for use in Particle Image Velocimetry (PIV) experimentation
- Effect of the number of electrodes on the reconstructed lung shape in electrical impedance tomography
- Hardware dependencies of GPU-accelerated beamformer performances for microwave breast cancer detection
- Computer assisted assessment of progressing osteoradionecrosis of the jaw for clinical diagnosis and treatment
- Evaluation of reconstruction parameters of electrical impedance tomography on aorta detection during saline bolus injection
- Evaluation of open-source software for the lung segmentation
- Automatic determination of lung features of CF patients in CT scans
- Image analysis of self-organized multicellular patterns
- Effect of key parameters on synthesis of superparamagnetic nanoparticles (SPIONs)
- Radiopacity assessment of neurovascular implants
- Development of a desiccant based dielectric for monitoring humidity conditions in miniaturized hermetic implantable packages
- Development of an artifact-free aneurysm clip
- Enhancing the regeneration of bone defects by alkalizing the peri-implant zone – an in vitro approach
- Rapid prototyping of replica knee implants for in vitro testing
- Protecting ultra- and hyperhydrophilic implant surfaces in dry state from loss of wettability
- Advanced wettability analysis of implant surfaces
- Patient-specific hip prostheses designed by surgeons
- Plasma treatment on novel carbon fiber reinforced PEEK cages to enhance bioactivity
- Wear of a total intervertebral disc prosthesis
- Digital health and digital biomarkers – enabling value chains on health data
- Usability in the lifecycle of medical software development
- Influence of different test gases in a non-destructive 100% quality control system for medical devices
- Device development guided by user satisfaction survey on auricular vagus nerve stimulation
- Empirical assessment of the time course of innovation in biomedical engineering: first results of a comparative approach
- Effect of left atrial hypertrophy on P-wave morphology in a computational model
- Simulation of intracardiac electrograms around acute ablation lesions
- Parametrization of activation based cardiac electrophysiology models using bidomain model simulations
- Assessment of nasal resistance using computational fluid dynamics
- Resistance in a non-linear autoregressive model of pulmonary mechanics
- Inspiratory and expiratory elastance in a non-linear autoregressive model of pulmonary mechanics
- Determination of regional lung function in cystic fibrosis using electrical impedance tomography
- Development of parietal bone surrogates for parietal graft lift training
- Numerical simulation of mechanically stimulated bone remodelling
- Conversion of engineering stresses to Cauchy stresses in tensile and compression tests of thermoplastic polymers
- Numerical examinations of simplified spondylodesis models concerning energy absorption in magnetic resonance imaging
- Principle study on the signal connection at transabdominal fetal pulse oximetry
- Influence of Siluron® insertion on model drug distribution in the simulated vitreous body
- Evaluating different approaches to identify a three parameter gas exchange model
- Effects of fibrosis on the extracellular potential based on 3D reconstructions from histological sections of heart tissue
- From imaging to hemodynamics – how reconstruction kernels influence the blood flow predictions in intracranial aneurysms
- Flow optimised design of a novel point-of-care diagnostic device for the detection of disease specific biomarkers
- Improved FPGA controlled artificial vascular system for plethysmographic measurements
- Minimally spaced electrode positions for multi-functional chest sensors: ECG and respiratory signal estimation
- Automated detection of alveolar arches for nasoalveolar molding in cleft lip and palate treatment
- Control scheme selection in human-machine- interfaces by analysis of activity signals
- Event-based sampling for reducing communication load in realtime human motion analysis by wireless inertial sensor networks
- Automatic pairing of inertial sensors to lower limb segments – a plug-and-play approach
- Contactless respiratory monitoring system for magnetic resonance imaging applications using a laser range sensor
- Interactive monitoring system for visual respiratory biofeedback
- Development of a low-cost senor based aid for visually impaired people
- Patient assistive system for the shoulder joint
- A passive beating heart setup for interventional cardiology training