Abstract
Analysis of multicellular patterns is required to understand tissue organizational processes. By using a multi-scale object oriented image processing method, the spatial information of cells can be extracted automatically. Instead of manual segmentation or indirect measurements, such as general distribution of contrast or flow, the orientation and distribution of individual cells is extracted for quantitative analysis. Relevant objects are identified by feature queries and no low-level knowledge of image processing is required.
1 Introduction
Spatial organization of tissue and multicellular pattern formation are crucial biological processes in development, wound repair, and maintenance of tissue [1]. Understanding the underlying mechanism is of general interest and may be helpful for generation of organoid cultures or in tissue engineering. Tissue organizational processes are considered to be regulated by various physical and chemical factors, such as differently diffusive morphogens, cell–cell contacts, microenvironments and cell mechanics [2]. Accordingly, various theoretical models, often based on reaction-diffusion models, try to explain underlying principles.
In most tissues cells are emended in a complex extracellular matrix, a mesh of fibrous polymers attached to each other and to cells by a series of complex molecular links. The cells organize the geometrical and physical topography as well as the mechanical properties of the matrix, and are in turn responsive to these properties. It is commonly believed that the sensitivity of cells to the mechanical properties of their environment depends on their ability to exert contractile forces into their surroundings [3]. Indeed, many cell types including fibroblasts generate contractile forces via the actin cytoskeleton. The resulting matrix deformations generated by the cells may be felt by other cells at long distances and thus may lead to elastic interactions of cells [4], [5]. An interesting consequence of these interactions can be a spontaneous alignment and pattering of cells. Despite the implications of this organizing principle the pattering phenomenon has not been extensively studied in cell mechanics experiments. Interestingly, patterning phenomena can also be observed in simple 2D in vitro cultures (Figure 1), a fact well known by cell biologists. In order to investigate systematically how mechanical interactions of cells may govern their self-organization in a soft elastic environment we developed compliant elastomer substrates for in-vitro studies. On such functionalized surfaces we studied temporal aspects of pattern formation observed by long-term microscopy (phase contrast). However, the analysis of cell position and alignment direction requires either manual analysis or the application of specifically automated image analysis.

A culture of dermal fibroblasts on a collagen-coated compliant (70 kPa) PDMS-substrate at two different time points. On the left image (day 2 of culture) cells are at a low density and no apparent order is visible. On the right image (day 7 of culture), cells are in full confluence arrange in a pattern with high orientational order.
In our approach the overall pattern is analyzed based on the individual orientation of single cells. The required explicit identification and measurement of biomedical objects must respect heterogeneous representations of characteristic features such as shape or texture of a single type of object. In addition, automated processing of large series of images must also cope with technical limitations and artifacts such as inhomogeneous densities of objects or illumination within single exposures as well as in the series of images. In this approach a three-step multi-scale object oriented approach is proposed to extract visually plausible regions, identify relevant objects and measure the orientation and center of mass. This ensures a comprehensible, reproducible and therefore quantitatively assessable automation.
2 Cell experiments
2.1 Material and methods
We studied how the elastic properties of an in-vitro cell culture substrate and the density of cells affects the spontaneous and collective alignment of the cells. To elucidate the contribution of elastic interactions to the ordering phenomena, experiments with soft substrates in the regime of a few kPa (Young’s modulus) are required. In our experiments we used poly(dimethylsiloxane) (PDMS) Sylgard 184 (Dow Corning Corporation) – a commercially available 2 component elastomer. By varying the base to crosslinker ratio we achieved elastomers with elastic moduli from 10 kPa to 70 kPa. Due to the high hydrophobicity of PDMS and in order to promote cell adhesion and proliferation, surface modifications of the substrates were necessary. These modifications were performed through introduction of ECM proteins such as human fibronectin and bovine collagen I onto the substrate. Cellular pattern formation was observed over 7–9 days period using phase contrast microscopy. The cells were cultured at standard cell culture conditions.
2.2 Results
A typical example of an ordered pattern formation is presented in Figure 1. The cells – human dermal fibroblasts – have initially no particular positional order at low cell densities and a diverse cell shape. At higher cell densities they elongate their cell shape and align along each other creating a spatial pattern with far-reaching orientation order. Similar collective arrangements can be observed with self-propelled organisms, biological polymers or synthetic particles. The observed patterns in the 2D cell layers show a remarkable similarity with nematic phases in liquid crystals previously observed with other cell types [6]. At high cell densities, the cells interact with other cells in the surrounding, and get increasingly oriented in a nematic state.
A very similar observation can be made in our experiments. The cells in this example show no apparent order at low densities, but with increasing cell number, they form ordered patches, and finally arranging in long-range orientational order. We propose that spontaneous cellular alignment may be detectable at specific cell densities. Elastic interactions may arise from the cell-generated deformations of the substrate and may lead to the ordered cell alignment.
Due to the different image sceneries (single isolated cells and cells in confluent layers) a thorough quantitative analysis requires the application of robust image analysis algorithms.
3 Automated multi-scale object analysis
Cells are identified in three steps in digitized micrographs (Figure 2) [7]. At first an image is partitioned on different scales by a causal morphological scale space analysis, where the edges represent the zeroes of the second derivatives (Figure 3). This corresponds to human visual perception and is independent of local variations in illumination. In the second step the hierarchical structure of the regions is transferred into a tree where each node holds a set of attributes describing the region formally such as mean grey value, size, curvature, texture, etc. (Figure 4). In the third step regions that represent cells are extracted from the tree by application of a task specific top-down query on the attributes of the tree nodes.

A multi-scale representation of how an image (left) is transferred into an attributed tree representing the region hierarchy (middle). Relevant regions are extracted by specific attribute queries (right).

Multiscale partitioning of a phase contrast micrograph of 800 × 600 pixels (top left) with scale 1 (top right) scale 3 (bottom left) scale 5 (bottom right), where scale corresponds to a spherical template with radius 1, 3 and 5 pixels, respectively.
The task specific query is generated by heuristic analysis of few images and then applied to the entire series (Figure 5, Rules 1, and 2). On the extracted regions the major axis angle and the centre of mass describe the regions position and orientation (Figure 6). By considering the ratio of minor/major axis the general elongation is characterized. The process is reproducibly applicable to arbitrary series of images.
By inspection of some regions representing cells in the sample image (Figure 4) the following simple query has been composed in the domain specific language (DSL) of the multiscale analysis software (www.morphoscope.com).

In the hierarchy browser the attributes of single regions representing cells (left) can be inspected manually (right).
Rule 1
DECLS:
conv := (4 * area * 3.14176)/(pow((perimeter),2.0));
#DECLS
RULES:
TD:
(meangrey < 90) && (area < 5500) && (area > 500) && (conv < 0.2)
#RULES
In this case meangrey denotes the mean grey value of the corresponding region between 0 and 255, area is the absolute number of pixels and conv represents the roundness which is computed on-the-fly by the ratio of the regions squared outline in pixels (perimeter) and the area proportionally to pi. The declaration of conv is also given in the DSL (DECLS: Section). The extraction rule is defined in the RULES: section and applied in a top-down scheme (TD:).
Since the rule is based on heuristic and arbitrary analysis of single regions it is not a single and sound solution. For instance the following rule yields the same result as Rule 1 on the sample image (Figure 5).

Application of Rule 1 and Rule 2 yield the same result when applied to the sample image.
Rule 2
RULES:
TD:
(meangrey < 90) (area > 1000) && (greyentropy > 0.80)
#RULES
Here the attribute greyentropy denotes the entropy of the grey value histogram of the region. The similar results of two different rules indicate a certain degree of stability of the heuristic approach yet they underline the arbitrariness of the rule based object extraction. However, the blobs of identified regions show a visually comprehensible representation of the orientation distribution of the single cells (Figure 6).
Besides the five attributes for representation of the blobs any set of region features may be defined in the DSL and provided for further analysis such as orientation distribution.
This approach of region extraction by separation of image analysis and content description allows for rapid verification of different extraction queries without the need of parameterization of low-level image processing techniques, or low level development of new algorithms. The knowledge of the biomedical expert is represented by the query rules.
In the image (Figures 3–6) 96 regions were identified by Rule 1. 5 Regions were background (false positive) in 3 cases a single cell was split into two regions. However, a systematic validation of the results found by the algorithm against a manually generated ground-truth is needed, to estimate error rates of automated high-throughput screenings.

Visual representation of attributes: major-axis, minor-axis, center-of-mass-x, center-of-mass-y and angle-of-major-axis, as ellipsoids (blobs) for all regions from Figure 5 (left). Euclidean distance of the mean values for the attributes of all blobs is smallest to the single values of the indicated region (right).
4 Manual object analysis
For manual phase contrast image analysis ImageJ, a public domain, Java based image processing program was used (http://imagej.nih.gov/ij/docs/intro.html). Where necessary, the contrast and brightness of the images was adjusted.
For the low cell density images the cells bodies were manually outlined. By fitting an ellipse to the selected region, the angle between the primary axis of the ellipse and a line parallel to the X-axis of the image was computed, hence providing us with the single cells orientation (Figure 7). The average cell orientation was determined by averaging all the angles obtained from one image.

(Left) Manual analysis of single cell orientation using ImageJ. (Right) Application of the Fast Fourier Transformation analysis to the sample image. The red lines represent the average orientation of each 48 × 48 pixel square. The inaccuracies in the analysis, shown with the green arrows, could be explained by insufficient contrast in phase contrast image between the cells and the background.
The high cell density images were not possible to analyse using the manual delineation method since in such images it is very difficult to distinguish individual cell bodies. For that purposes the cell orientation was obtained by using an ImageJ macro, which was initially written for evaluation of F-actin orientation inside the cells. Shortly, the contrast of the images was enhanced and the cell orientation was extracted by 48 × 48 pixel sliding square analysis. Fast Fourier Transformation (FFT) performed in each square was followed with shape analysis of the FFT image by fitting the ellipse to the Fourier spectra and calculating the angle of the major axis of the fitted ellipse. Rotation by 90 degrees yielded the mean orientation of the analysed region. To visually ensure the accuracy of the data, obtained angle values were used to draw lines above the images (Figure 7). The average cell orientation was obtained by averaging the results obtained from individual analysed squares. The inaccuracies present in this analysis could be explained by insufficient contrast between the cells and the background in the phase contrast images. The obtained results of the regions with falsely computed orientation were disregarded in the quantitative analysis.
5 Discussion
The disadvantage of the manual image analysis is that it is subjective, hardly reproducible and extremely time consuming. It requires two separate methods to identify the cell orientation at low and high cell densities. In contrast to the explicit extraction of visually perceivable objects the analysis of uniformly distributed tiles yields incomprehensible artifacts and results since the orientations cannot be compared directly to an objective ground truth.
In the next step the automated and the manual approach will be quantitatively evaluated against an appropriate ground-truth with respect to accuracy (precision, recall) and coverage of single cell area segmentation and overall extraction rate.
Author’s Statement
Research funding: The authors state no funding involved. Conflict of interest: Authors state no conflict of interest. Material and Methods: Informed consent: Informed consent is not applicable. Ethical approval: The conducted research is not related to either human or animal use.
References
[1] Junkin M, Leung SL, Whitman S, Gregorio CC, Wong PK. Cellular self-organization by autocatalytic alignment feedback. J Cell Sci. 2011;124:4213–20.10.1242/jcs.088898Search in Google Scholar PubMed PubMed Central
[2] Discher DE, Janmey P, Wang Y. Tissue cells feel and respond to the stiffness of their substrate. Science. 2005;310:1139–43.10.1126/science.1116995Search in Google Scholar PubMed
[3] Schwarz US, Bischofs IB. Physical determinants of cell organization in soft media. Med Eng Phys. 2005;27:763–72.10.1016/j.medengphy.2005.04.007Search in Google Scholar PubMed
[4] Bischofs IB, Safran SA, Schwarz US. Elastic interactions of active cells with soft materials. Phys Rev E. 2004;69:021911.10.1103/PhysRevE.69.021911Search in Google Scholar PubMed
[5] Zemel A, Bischofs IB, Safran SA. Active elasticity of gels with contractile cells. Phys Rev Lett. 2006;1297:128103.10.1103/PhysRevLett.97.128103Search in Google Scholar PubMed
[6] Kemkemer R, Teichgraber V, Schrank-Kaufmann S, Kaufmann D, Gruler H. Nematic order-disorder state transition in a liquid crystal analogue formed by oriented and migrating amoeboid cells. Eur Phys J E. 2000;3:101–10.10.1007/s101890070023Search in Google Scholar
[7] Thies C, Metzler V, Aach T. Content based image analysis: object extraction by datamining on hierarchically decomposed medical images. Procs SPIE. 2003;5032:579–89.10.1117/12.481378Search in Google Scholar
©2016 Christian Thies 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