Home A service for monitoring the quality of intraoperative cone beam CT images
Article Open Access

A service for monitoring the quality of intraoperative cone beam CT images

  • Frank Heckel EMAIL logo , Jan Schlamelcher , Hanna Rotermund , Max Rockstroh , Stephan Zidowitz and Thomas Neumuth
Published/Copyright: September 30, 2016

Abstract

In recent years, operating rooms (ORs) have transformed into integrated operating rooms, where devices are able to communicate, exchange data, or even steer and control each other. However, image data processing is commonly done by dedicated workstations for specific clinical use-cases. In this paper, we propose a concept for a dynamic service component for image data processing on the example of automatic image quality assessment (AQUA) of intraoperative cone beam computed tomography (CBCT) images. The service is build using the Open Surgical Communication Protocol (OSCP) and the standard for Digital Imaging and Communications in Medicine (DICOM). We have validated the proposed concept in an integrated demonstrator OR.

1 Introduction

Three-dimensional medical images acquired by computed tomography (CT) and magnetic resonance imaging (MRI) play a central role in today’s medicine. They are used preoperatively for diagnosis and therapy planning in order to find the best treatment for the patient. Intraoperative imaging is used to guide the surgeon during the intervention, so he or she is able to apply the preoperative plan such that the patient gets the best possible outcome. A common intraoperative imaging modality is ultrasound. A 3D imaging modality that is becoming more and more popular is cone beam computed tomography (CBCT). CBCT is often acquired by a mobile “C-arm” and used in various clinical applications, such as spine surgery, dental surgery, and interventional radiology [1], [2], [3], [4]. One drawback of CBCT is the fact that the surgeon frequently has to leave the operating room (OR) during acquisition due to radiation exposure [5]. After inspection of the images, the surgeon decides whether their quality is sufficient. If not, the acquisition has to be repeated.

In recent years, operating rooms have transformed from a collection of independent medical devices into interconnected digital (“integrated”) operating rooms, where devices are able to communicate, exchange data, or even steer and control each other [6]. While large vendors, such as Karl Storz, provide proprietary solutions for integrated ORs (Karl Storz OR1[1]), there are also attempts for standardization and open communication protocols. Examples include OpenIGTLink [7], TiCoLi [8], SCOT [9], smartOR [10], and the Open Surgical Communication Protocol (OSCP) [11]. For image data exchange, the standard for Digital Imaging and Communications in Medicine (DICOM) has been widely accepted and implemented [12].

Despite this trend to interconnected devices, image data processing is commonly done by dedicated workstations for specific clinical use-cases, such as navigation systems. In this paper, we propose a concept for a dynamic service component for image data processing on the example of automatic image quality assessment (AQUA) of intraoperative CBCT images. The service is build using OSCP and DICOM.

2 Material and methods

The devices involved in the implementation of the proposed concept are shown in Table 1. For OSCP we used version 0.96_06 of the C++ library OSCLib[2] that has been developed by SurgiTAIX AG.

Table 1

Devices involved in the image quality analysis setting.

ComponentDevice
C-armZiehm Vision RFD 3Da
PACSVISUS JiveXb
DICOM gatewayPrototype by OFFIS e.V. [13]
AQUA servicePrototype by Fraunhofer MEVIS based on MeVisLabc

2.1 The open surgical communication protocol

OSCP has been developed as part of the project OR.NET [11], whose goal was to create a service-oriented architecture (SOA) for the safe and secure dynamic (plug-and-play) interconnection of medical devices in the OR. OR.NET builds on the methods and information models defined in ISO/IEEE 11073 [14]. In contrast to the binary protocol specified in ISO/IEEE 11073, OR.NET defines the alternative communication protocol OSCP that is based on Medical Device Profile for Web Services (MDPWS). MDPWS is currently in the process of standardization.

Using OSCP, a medical device is represented by a description and a state, which are given in the Medical Device Information Base (MDIB). A device is accessed by retrieving its description, which models its values and available controls. For each value in the description, a corresponding value exists in the state, which can be retrieved or set by any other device. MDPWS also defines a discovery mechanism that uses multicast messages in order to find devices in a network. Finally, MDPWS offers events and alarms.

2.2 Automatic image quality assessment

The basis of the AQUA framework are so called tests that calculate a certain property or feature of an image. For those tests we distinguish between atomic tests, which only require the input image, and complex tests, which require additional inputs. The additional inputs are computed by test preconditions. An example for a complex test is the signal-to-noise ratio that requires both a fore- and background mask as preconditions. Multiple tests and preconditions for a specific use-case can be combined in a test set. The tests are controlled by a management layer that sets up the execution environment, executes the tests with a problem-specific parametrization, and stores their results. The last step is the use-case specific interpretation of all test results (cf. Figure 1).

Figure 1 Basic architecture of the AQUA framework.
Figure 1

Basic architecture of the AQUA framework.

In the CBCT use-case we are testing four image quality characteristics: the resolution, the signal-to-noise ratio, a generic quality index that measures sharpness, and the amount of metal artifacts. The results are combined using a voting mechanism, for which we first define a set of possible options, represented by a value o ∈ [0, 1]. Each option oi is rated based on the result of each test tj with a vote v ∈ [0, 1], where v = 1 refers to “fully agree” and v = 0 to “fully disagree”. The best option r is given by

(1)r=argmaxi(minj(v(oi,tj))).

In our use-case we defined the options o1 = 0.0 as “bad”, o2 = 0.7 as “acceptable”, and o3 = 1.0 as “good”. The specific test results are mapped ∈ [0, 1] according to the empirically defined functions shown in Figure 2A. The voting v for each option o is computed according to the test-specific linear mapping of shown in Figure 2B. As the overall quality of the CBCT images is mainly influences by metal artifacts and the signal-to-noise ratio, the votes of those tests are more restrictive. For visualization of the test results, the user interface shown in Figure 3 is provided, where the overall rating of the image’s quality is summarized by an intuitive traffic sign pictogram.

Figure 2 Mapping functions for voting: (A) mapping of test-specific results to [0, 1], and (B) rating of a specific option o.
Figure 2

Mapping functions for voting: (A) mapping of test-specific results to [0, 1], and (B) rating of a specific option o.

Figure 3 Graphical user interface of the AQUA component.
Figure 3

Graphical user interface of the AQUA component.

The design of the voting system also allows the deduction of the reason for bad image quality. Assuming that the options oi are sorted by increasing quality, all tests tj with v(oi, tj) < minj(v(or, tj)) and i > r prevent a better voting. The features that are measured by those tests can hence be assumed to cause the bad image quality.

2.3 Device communication

The communication between the devices is shown in Figure 4. The devices use the MDPWS discovery mechanism to find each other. The AQUA component provides two DICOM services: one that listens to Modality Performed Procedure Step (MPPS) messages and one that allows a Picture Archiving and Communication System (PACS) to send DICOM files. After sending the image data to the PACS, the C-arm sends an MPPS message to the AQUA service. This message contains, besides others, the unique Series Instance UID that allows the AQUA service to request the image data from the PACS using the standard DICOM Query/Retrieve service. All DICOM communication in done transparently through the DICOM gateway [13].

Figure 4 Communication of the devices in the CBCT setting.
Figure 4

Communication of the devices in the CBCT setting.

The analysis is initiated as soon as the image data becomes available to the AQUA service. Finally, the results of the image quality analysis are send to other devices in the OR network using OSCP so they can be shown on a central or mobile display for example.

3 Results

We have validated our prototypical implementation of the described concept as part of a demonstrator operating room that has also been presented during this year’s conhIT conference. Besides the components shown in Table 1, this demo OR also integrated a lot of other medical devices using OSCP. In this setting, ionizing radiation was not allowed. Therefore, image acquisition and reconstruction was simulated by the C-arm. For image quality assessment, three exemplary 3D images of a head phantom were provided: one high-quality image, one reconstruction with suboptimal signal-to-noise ratio, and one image with severe metal artifacts. The AQUA service was able to distinguish between these exemplary images and it correctly returned the reason for bad image quality.

The overall time required by the whole processing pipeline (i.e. from sending the CBCT images to the PACS until the image quality analysis) was about one minute. The DICOM-based communication was reliable. At the time of evaluation, we had some significant delays during the discovery process, which took several minutes, and which did not always work robustly. As a workaround, we cached the devices that have been found. Since the gateway ignores inaccessible devices anyway, this does not affect the runtime behavior.

4 Discussion and conclusion

We have shown a concept for implementing a dynamic service component for image processing in an integrated OR using standardized and open protocols. The setting included hard- and software from different vendors and research institutes. We were able to successfully connect different devices using OSCP, notify an image processing component about intraoperatively acquired CBCT data in real time, and retrieve it from PACS using DICOM.

The proposed solutions enable an immediate and fully automatic 3D image processing pipeline within an integrated OR. Image processing services can run on any device that can be dynamically added and removed from the network in order to provide specific functionality. This is not limited to image analysis. For example, a service that automatically prepares a 3D reconstruction of an intraoperative 3D image could be implemented using the same concepts.

The image quality assessment service provides a monitoring component that is able to permanently review the quality and validity of intraoperatively acquired images in an integrated OR. Applications to this include for instance navigated interventions, where high accuracy is required that is often limited by image quality. Another use-case for an AQUA service is surgery documentation, where low-quality images could automatically be tagged or excluded for example.

The remaining problems with the discovery process have already been reduced in the latest version of OSCLib (0.97_09) and can be expected to be completely solved in the future as the implementations of OSCP become final. As an extension of the proposed solution and in order to provide the results of the AQUA service to other DICOM devices, the test results as well as the ratings could be stored as DICOM Structured Reporting (SR) documents using the Key Object Selection document template[3].

Author’s Statement

Research funding: This work was funded by the German Ministry of Education and Research (BMBF) as part of the project OR. NET (reference number: 16KT1232). Conflict of interest: Authors state no conflict of interest. Material and methods: Informed consent: Not applicable. Ethical approval: The conducted research is not related to either human or animals use.

References

[1] Rafferty MA, Siewerdsen JH, Chan Y, Daly MJ, Moseley DJ, Jaffray DA, et al. Intraoperative cone-beam CT for guidance of temporal bone surgery. Otolaryngol Head Neck Surg. 2006;134:801–8.10.1016/j.otohns.2005.12.007Search in Google Scholar PubMed

[2] Scarfe WC, Farman AG. What is cone-beam CT and how does it work? Dental Clinics of North America. 2008;52;707–30.10.1016/j.cden.2008.05.005Search in Google Scholar PubMed

[3] Wallace MJ, Kuo MD, Glaiberman C, Binkert CA, Orth RC, Soulez G, et al. Three-dimensional c-arm cone-beam CT: applications in the interventional suite. J Vasc Interv Radiol. 2009;20:S523–37.10.1016/j.jvir.2009.04.059Search in Google Scholar PubMed

[4] Schafer S, Nithiananthan S, Mirota DJ, Uneri A, Stayman JW, Zbijewski W, et al. Mobile c-arm cone-beam CT for guidance of spine surgery: image quality, radiation dose, and integration with interventional guidance. Med Phys. 2011;38:4563–74.10.1118/1.3597566Search in Google Scholar PubMed PubMed Central

[5] Nottmeier EW, Bowman C, Nelson KL. Surgeon radiation exposure in cone beam computed tomography-based, image-guided spinal surgery. Int J Med Robot. 2012;8:196–200.10.1002/rcs.450Search in Google Scholar PubMed

[6] Mildner A, Janß A, Dell’Anna-Pudlik J, Merz P, Leucker M, Radermacher K. Device- and service profiles for integrated or systems based on open standards. Curr Dir Biomed Eng. 2015;1:538–42.10.1515/cdbme-2015-0128Search in Google Scholar

[7] Tokuda J, Fischer GS, Papademetris X, Yaniv Z, Ibanez L, Cheng P, et al. Openigtlink: an open network protocol for image-guided therapy environment. Int J Med Robot. 2009;5:423–34.10.1002/rcs.274Search in Google Scholar PubMed PubMed Central

[8] Gessat M, Bohn S, Vorunganti A et al. “TiCoLi: an open software infrastructure for device integration in the digital OR. Int J Comput Assist Radiol Surg. 2011;1:284.Search in Google Scholar

[9] Iseki H, Muragaki Y. Sensor technology and the medical information guided operating theater (smart cyber operating theater: SCOT). Journal of the Institute of Electrical Engineers of Japan. 2012;132:409–12.10.1541/ieejjournal.132.409Search in Google Scholar

[10] Köny M, Benzko J, Czaplik M, et al. Distributed Networks: Intelligence, Security, and Applications. CRC Press; 2013, ch. The Smart Operating Room: smartOR. p. 291–315.10.1201/b15282-12Search in Google Scholar

[11] Kühn F, Leucker M. OR.NET: safe interconnection of medical devices. In International Symposium on Foundations of Health Information Engineering and Systems; 2014. p. 188–98.10.1007/978-3-642-53956-5_13Search in Google Scholar

[12] Mildenberger P, Eichelberg M, Martin E. Introduction to the DICOM standard. Eur Radiol. 2001;12:920–7.10.1007/s003300101100Search in Google Scholar PubMed

[13] Schlamelcher J, Onken M, Eichelberg M, Hein A. Dynamic DICOM configuration in a service-oriented medical device architecture. Conf Proc IEEE Eng Med Biol Soc. 2015;2015:1717–20.10.1109/EMBC.2015.7318708Search in Google Scholar PubMed

[14] Andersen B, Dehm J, Gessner C et al. Intraoperabilität von Geräten und Systemen in OP und Klinik, 2nd ed. VDE Verband der Elektrotechnik Elektronik Informationstechnik e.V., 2015.Search in Google Scholar

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

©2016 Frank Heckel et al., licensee De Gruyter.

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

Articles in the same Issue

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