Abstract
Quantifying cardiac functions in model organisms like embryonic zebrafish is of high importance in small molecule screens for new therapeutic compounds. One relevant cardiac parameter is the fractional shortening (FS). A method for semi-automatic quantification of FS in video recordings of zebrafish embryo hearts is presented. The software provides automated visual information about the end-systolic and end-diastolic stages of the heart by displaying corresponding colored lines into a Motion-mode display. After manually marking the ventricle diameters in frames of end-systolic and end-diastolic stages, the FS is calculated. The software was evaluated by comparing the results of the determination of FS with results obtained from another established method. Correlations of 0.96 < r < 0.99 between the two methods were found indicating that the new software provides comparable results for the determination of the FS.
1 Introduction
Over the past 25 years, the zebrafish has become a model organism to study cardiogenesis and heart diseases, for fundamental research as well as other biomedical applications [1], [2], [3], [4]. Due to the transparency of zebrafish embryos throughout embryogenesis, a real time in-vivo observation of physiological or pathological events occurring during organ development is possible [4], [5], [6]. Determination of cardiac contractility is useful to elucidate cardiac and circulation defects in zebrafish embryos. Fractional shortening (FS) measurement has been shown to be a simple and fast method to determine the contractile force of embryonic zebrafish hearts. The transparency of the embryos allows to easily capture videos of the beating heart [6], which then enables the measurement of the systolic and diastolic diameters. After the determination of these diameters, FS is calculated by the following formula:
Image processing has increasingly become a powerful approach leading to the continuous development of automated methods that help to quantify and analyse many cardiac parameters of interest [4], [5], [7], [8], [6], [9]. In fact, automated analysis methods are of great value as they can drastically accelerate the evaluation of heartbeat parameters such as frequency, beat-to-beat intervals, and arrythmicity [6]. Unsurprisingly, many image- and video-based studies of zebrafish require the build-up of custom video analysis software for various domains of research and experiments, allowing flexible and quick handling and processing of input and output data [6], [9]. For instance, high throughput screenings of zebrafish as needed in small molecule evaluations, toxicological experiments and behavioural analysis is only made possible with custom video analysis software [9]. Using this factual background about the importance and advantages of customizing software applications for image analysis [6], [9], the development of a reliable, semi-automated detection method of FS was made possible.
2 Methods
2.1 Procedure and materials
The algorithms used to semi-automatically determine the FS are implemented in Microsoft Visual Studio Community 2015 with C# using the .NET Framework 4.5.2. Additionally the image processing-related classes and functions were composed using the AForge.NET framework. This approach allowed us to develop a stand-alone application capable of being easily deployed to a large number of computer systems as well as delivering sufficient performance even on standard office computer hardware.
Videos of embryonic wild type zebrafish hearts with various resolutions (from 288 × 256 up to 1392 × 1056 pixels) and frame rates (between 7 and 100 frames per second) as well as different video codecs (Motion JPEG, MPEG-4 (DX50) or H264/MPEG-4 AVC) were used to test the software.
2.1.1 Determination of the end-diastolic phase
The heart repetitively changes its shape during systole and diastole with a short end-diastolic rest. This rhythmically altering of shape can be distinguished automatically by means of image analysis, if the frame rate of a video of a beating heart is several times the heartbeat frequency (e.g. > 30 frames per second for zebrafish embryos). The similarity coefficient between two consecutive images can be calculated by first summing up the absolute pixel value differences between two consecutive images in both h and w direction and then dividing them by the maximum pixel byte value, 255 multiplied with the total pixel count. This process is referred to as a normalized sum of absolute differences (SAD). For 8 bit grayscale images the similarity coefficient can be described by equation 2, while for RGB images every colour channel needs to be taken into account.
where h is the image’s height, w is the image’s width in pixels, bs is an image, bt is the consecutive or template image and 255 is the standard maximum byte value.
The similarity coefficient between two consecutive end-diastolic images will be higher (closer to 1) than between two subsequent images where the heart shape changes quickly and the ratio for the similarity coefficient is closer to 0. By choosing consecutive pairs of images with the highest similarity coefficients the end-diastolic phase can be determined automatically. When comparing every individual frame with the subsequent one in the video frames series, a uniform pattern of oscillation occurs, as depicted in Figure 1.

Plot of the similarity coefficients for a heart video. Lower similarity is found during rapid changes of the heart shape and high similarity during end-diastole.
If the frame rate of the video is too low (e.g. < 20 frames per second for zebrafish embryos) the automatic determination of the end-systolic and end-diastolic phase by calculation of the similarity coefficient does not work reliably. In this case the number of frames between every transitional instance of the heart beat cycle is too small to locate the end-systolic and diastolic stages using this kind of minimum values. In order to refine the large set of video frames to only those showing the end-systolic and the end-diastolic stages of the heart beat cycle a single template frame has to be selected manually. This is supported by a graphical user interface where a selected video recording of the heart is accessed by the DirectShow interface. All video frames are temporarily stored in memory for further processing and displayed to the user. The first most likely frame pertaining to the end-diastolic stage of the heart beat cycle has to be chosen by the user. This template image is then used for a template matching algorithm, where the selected template image is compared to all other frames of the video for its similarity coefficient, as given in equation 2. The maxima values represent the frames being most similar to the selected template frame and correspond to frames of the same end-diastolic phase of heartbeat. Furthermore, the frames least similar to the template frame deliver minima values for the similarity coefficient and denote the end-systolic phase.
2.1.2 M-mode Plot
Subsequently, the patterned change in the shape of the heart throughout the cycle is displayed in an M-Mode, as given in Figure 2.

M-Mode, displaying changes in movement of the heart edges (pixel number in y-axis) over time (frame number in x-axis). Automatically computed end-systolic and diastolic frames are also plotted as vertical lines in red (end-diastolic) and blue (end-systolic).
The M-Mode is generated by the excision and alignment of 1-pixel-wide, vertical strips from successive video frames. Maximum contraction (end-systole) and relaxation (end-diastole) of the heart ventricle can be more readily viewed at once. Results of the automatically determined end-systolic and end-diastolic frames are also plotted as vertical lines in red (end-diastolic) and blue (end-systolic) and green for the current frame that is displayed for marker setting. Each strip lies at the middle of its corresponding frame passing through the centre of the heart [7], [10]. Hereafter, only the end-systolic and end-diastolic frames are displayed to the user to navigate through, excluding the other frames, because they are of no obvious significance for the user anymore.
2.1.3 Calculation of the fractional shortening
To calculate the FS percentage, it is necessary to have readings of the end-systolic and end-diastolic heart diameters. This is obtained by manually marking the heart edges during end-diastole or end-systole. Two pairs of marking points identifying the diastolic heart edges and two pairs identifying the systolic heart edges have to be set. In each marked frame, the two pairs of markings give length readings for two lines. One line is drawn across the longest segment of the heart, and the other is much shorter, almost perpendicularly drawn (Figure 3). By marking the heart edges of one pair or several equal numbers of end-systolic frames and end-diastolic frames, an average value of the FS for the large diameters and another average value for the small diameters are obtained. This way the interface outputs two average values for the FS percentage. In addition, the standard deviation of the calculated FS averages is displayed.

A pair of lines marking the ventricle‘s small and large diameters.
3 Results
The software saves the output in an Excel® file, along with information about the x and y coordinates of the marked points, diameter readings, frame numbers, etc. This way, the data for each video can be easily accessed at any time. The software was evaluated by comparing the results provided from manual analysis by an experienced biologist with those obtained with the software. First the FS of 15 embryonic zebrafish hearts were determined by one author by manually placing markers onto maximum ventricular systole and ventricular diastole frames, comparable to the method in [2]. The FS of the 15 zebrafish hearts were in the range of 32 and 70% (see Figure 4).
![Figure 4 Results of the determined fractional shortenings (FS) from three examiners. The first examiner used a conventional method as a reference as described in [2].](/document/doi/10.1515/cdbme-2016-0052/asset/graphic/j_cdbme-2016-0052_fig_004.jpg)
Results of the determined fractional shortenings (FS) from three examiners. The first examiner used a conventional method as a reference as described in [2].
Afterwards the new software was used by two of the other authors independently from each other to determine the FS of the same zebrafish videos. The FS determined by the second and third examiner were in the range of 30–72% and 37–69%, respectively. Pearson’s linear correlation coefficients between the results of each of the examiners were calculated. Correlations of 0.96 < r 0.99 for all cases indicate that the new software provides comparable results for the determination of the FS with the benefit of increased speed and ease of use.
4 Conclusion
Evaluation of FS is important to determine heart ventricle and atrium function in order to calculate the ejection fraction. Zebrafish can be used as model organism to investigate small molecules for their suitability as potential cardiac drugs. A new software was presented that can accelerate the determination of the FS in zebrafish heart videos by identifying and presenting only those frames, which have been identified as corresponding with the end-systolic and end-diastolic phase. The new method has three steps: (i) Automatic or manual selection of a template frame (ii) Marking of the heart edges to identify end-systolic and diastolic heart diameters for several frames; (iii) Calculation of the average FS and the standard deviation of the set of readings. Videos can be processed independent of rhythmicity. For instance, cardiac arrhythmia should not affect the working of the algorithm as it is independent on the number of frames between each status frame. Similarly, heart conditions which involve absence of blood are not a problem in detection as it is not based on the colours in the frame, but rather the heart shape.
The software has proved to deliver results for the FS of videos from zebrafish embryos that correlated with the results obtained by a standard manual method.
Additionally, there are indications that the new software can also been used to evaluate human cardiac ultrasound videos. The software has been tested with such videos that were provided at a video-sharing website [11], [12], [13]. Again, the results for the FS were in the same range as given in the videos.
In addition, having the ability to input and process many readings from which the average FS percentage and its standard deviation are calculated gives the results a statistically powerful property, which improves robustness and reproducibility of the detection. This helps in future trials to process larger sets of data reliably, as well as in developing a fully automated system.
The new software is available on request by the corresponding author.
Author’s Statement
Research funding: Funding was provided by the Helmholtz Association programme “BioInterfaces: Molecular and cellular interactions at functional interfaces”. 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 animal use has been complied with all the relevant national regulations and institutional policies for the care and use of animals.
References
[1] Yang L, Ho NY, Alshut R, Legradi J, Weiss C, Reischl M, et al. Zebrafish embryos as models for embryotoxic and teratological effects of chemicals. Reprod Toxicol. 2009;28:245–53.10.1016/j.reprotox.2009.04.013Search in Google Scholar PubMed
[2] Hoage T, Ding Y, Xu X. Quantifying cardiac functions in embryonic and adult zebrafish. cardiovascular development. Humana Press; 2012;843. p. 11–20.10.1007/978-1-61779-523-7_2Search in Google Scholar PubMed PubMed Central
[3] Bakkers J. Zebrafish as a model to study cardiac development and human cardiac disease. Cardiovasc Res. 2011;91:279–88.10.1093/cvr/cvr098Search in Google Scholar PubMed PubMed Central
[4] Bührdel JB, Hirth S, Keßler M, Westphal S, Forster M, Manta L, et al. In vivo characterization of human myofibrillar myopathy genes in zebrafish. Biochem Biophys Res Commun. 2015;461:217–23.10.1016/j.bbrc.2015.03.149Search in Google Scholar PubMed
[5] De Luca E, Zaccaria GM, Hadhoud M, Rizzo G, Ponzini R, Morbiducci U, et al. ZebraBeat: a flexible platform for the analysis of the cardiac rate in zebrafish embryos. Scient Reports. 2014;4898:1–13.10.1038/srep04898Search in Google Scholar
[6] Mikut R, Dickmeis T, Driever W, Geurts P, Hamprecht FA, Kausler BX, et al. Automated processing of zebrafish imaging data: a survey. Zebrafish. 2013;10:401–21.10.1089/zeb.2013.0886Search in Google Scholar PubMed PubMed Central
[7] Fink M, Callol-Massot C, Chu A, Ruiz-Lozano P, Izpisua Belmonte JC, Giles W, et al. A new method for detection and quantification of heartbeat parameters in drosophila, zebrafish, and embryonic mouse hearts. Biotechniques. 2009;46:101–13.10.2144/000113078Search in Google Scholar PubMed PubMed Central
[8] Pylatiuk C, Sanchez D, Mikut R, Alshut R, Reischl M, Hirth S, et al. Automatic zebrafish heartbeat detection and analysis for zebrafish embryos. Zebrafish. 2014;11:379–83.10.1089/zeb.2014.1002Search in Google Scholar PubMed PubMed Central
[9] Marcato D, Alshut R, Breitwieser H, Mikut R, Strahle U, Pylatiuk C, et al. An automated and high-throughput Photomotor Response platform for chemical screens. Conf Proc IEEE Eng Med Biol Soc. 2015;7728–31.10.1109/EMBC.2015.7320183Search in Google Scholar PubMed
[10] Ocorr K, Vogler G and Bodmer R. Methods to assess Drosophila heart development, function and aging. Methods. 2014;68:265–72.10.1016/j.ymeth.2014.03.031Search in Google Scholar PubMed PubMed Central
[11] http://youtu.be/izdhV1Owfrk.Search in Google Scholar
©2016 Christian Pylatiuk 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