Home Development and implementation of algorithms for automatic and robust measurement of the 2D:4D digit ratio using image data
Article Open Access

Development and implementation of algorithms for automatic and robust measurement of the 2D:4D digit ratio using image data

  • Robert Koch EMAIL logo , Erik Haßlmeyer , Daniel Tantinger , Martin Rulsch , Christian Weigand and Matthias Struck
Published/Copyright: September 12, 2015

Abstract

Early in the 20th century it could be observed that the finger lengths of second (2D) and fourth digit (4D) represents a sexually dimorphic feature, whereby in general the second digit is longer than the fourth digit for men and vice versa for women. In the early 1980s first studies could show a correlation between the 2D:4D ratio and the concentration of androgens one is exposed to during a short window within the prenatal development phase. Therefore, the 2D:4D digit ratio can serve as an additional marker for certain physiological and psychological traits like fertility, assertiveness, aggressiveness and alcohol addiction. Manual measurements are the established method to retrieve the finger lengths e.g. by using a ruler on printed scans of hands. For higher reliability these extremely time-consuming procedures have to be done multiple times. In this contribution two automated procedures are proposed to reduce the time for measurements whilst maintaining the accuracy. A deviation of maximal 2% from the manual measurement could be achieved for more than 75% of the 22 participants.

1 Introduction

The 2D:4D ratio describes the length ratio of the second digit (index finger - 2D) to the fourth digit (ring finger - 4D). First studies relating to the ratio date back to the end of the 19th century which revealed a difference between women and men. In 1930 R. George could confirm the 2D:4D ratio as a sexually dimorphic feature by measuring the finger lengths of 620 hands (two out of three were men) [2]. In a short period during the prenatal development phase the ratio of second to fourth digit takes shape and does not change throughout life [10]. It could be shown that the ratio itself depends on the concentration of androgens one is exposed to in this phase [6],[13]. A first correlation between the 2D:4D ratio and a psychological trait could be established by G. Wilson in 1982. Furthermore, it could be proven that women with a longer ring finger considered themselves as more assertive in comparison to other women.[12] Further studies revealed a correlation between fertility [6], physical competitiveness [7], homosexuality for men [5], attention deficit hyperactivity disorder (ADHD) [11], alcohol addiction and video game addiction [3].

Up to now measurements are performed manually in order to retrieve the necessary data. In most of the cases the hands of test persons were scanned in a first step. Depending on the scanning device used, the images of these hands were printed out or digitalized. In the first case the finger lengths are determined using rulers [1] or vernier calipers [7]. In the second case, measuring is done using appropriate software tools which includes virtual rulers [3]. To assure a certain degree of reliability, the measurements have to be revised multiple times and often by distinct experts. This approach is both cumbersome and time-consuming. Therefore, a method is proposed to automatize the image acquisition and measuring of finger lengths in order to provide a standardized and robust way to obtain the 2D:4D digit ratio.

This paper is structured as follows. The proposed method is explained in detail in Section 2. This includes the segmentation method and two different approaches to measure the finger lengths. In Section 3 the results of the automatized measurements of 22 participants are compared to the manual measurements using a graphics editor. The results are discussed and concluded in Section 4.

2 Method

The left and right hands of the participants were scanned with the multifunction printer at a resolution of 200 dpi (dots per inch). This digital images are the basis for the method proposed in this section to automatically segment images of hands. These images are processed to detect the position of the second and fourth digit and furthermore to determine their lengths. In general, the distance of the last finger crease (between finger and palm) to the fingertip defines the digit length. This definition is used for both presented methods to determine the finger lengths. The accuracy of the results depends highly on the used segmentation approach. Besides that a background of arbitrary complexity should be taken into account to provide higher flexibility. Therefore, an algorithm is proposed which uses color structure code as described by Priese et al. [8] in combination with a brute-force approach to achieve a segmented image fulfilling the necessary requirements.

2.1 Segmentation

A region segmentation that was proposed for color images is the so–called color structure code, CSC [9]. The color structure code is used in a pre-processing step in order to segment the image into several uniform areas with unique color. The number of areas building up the mosaic-like image depends on a single threshold, which is used to determine whether certain areas are fused or split. Each area is assigned to a unique number to generate a label image (see Figure 1, right).

Figure 1 Left: Original image, Center: Color structure code applied to original image, Right: Label image generated from color structure code image.
Figure 1

Left: Original image, Center: Color structure code applied to original image, Right: Label image generated from color structure code image.

Afterwards the hand is segmented from the background by using a brute-force approach, where regions with same label are hidden subsequently and in all possible combinations (see Figure 2). Finally, the remaining regions are checked if they build up the shape of a hand. Generally, this is a very time-consuming step, but with respect to some restrictions (e.g., consider only bigger regions or merge adjacent regions) the segmented image can be achieved within a finite amount of time (a few minutes at maximum).

Figure 2 Left: Original image, Right: Selection of binary images containing different sets of regions generated by the brute-force algorithm.
Figure 2

Left: Original image, Right: Selection of binary images containing different sets of regions generated by the brute-force algorithm.

Furthermore, meaningless combinations can be discarded if regions are not connected (directly or indirectly) to each other. This can be done by arranging the labels in a graph data structure and applying a depth-first search which results in combinations of connected regions. Using a fixed label as searching root, which definitely belongs to the hand, can further reduce the amount of combinations to be considered.

The check for hand shape is done by considering each combination of regions as a binary image and examining a generated contour signal representing the shape. This signal can be achieved by rotating a line around the centroid (PS). The distance between the centroid and the first intersection of the line with the contour of the binary image expresses a data point in the contour signal. The signal can then be examined for the characteristic sequence of maxima in the contour signal generated by the hand-shaped binary image (see Figure 3). These sequence also helps to distinguish between the right and left hand. Are there two local maxima to the left and one to the right of the global maximum (= middle finger) it is the right hand; for the left hand it is vice versa.

Figure 3 Left: Binary image, Right: Contour signal generated by the intersection of a rotating line around PS with the contour.
Figure 3

Left: Binary image, Right: Contour signal generated by the intersection of a rotating line around PS with the contour.

2.2 Length measurement using finger creases

The first approach is making use of the contour signal generated in previous the segmentation step (cf. Figure 3). The borders of the region of interests (ROI) for the second and fourth digit can be deduced from the local minima and maxima. In general, the highest maximum represents the third digit (middle finger). Therefore, the second and fourth digits are represented by the local maxima on the left and right side of the global maximum. The finger gaps can be directly taken from the local minima besides the respective maxima. These gaps also serve as the right and left boundary of the corresponding region of interest. The upper border is determined by the location of the finger tip. The lower border is determined by the smaller minimum of the ones representing the finger gaps. Converting the ROI in the color image of the separated finger to a gray-scale image allows the direct detection of the creases by establishing a brightness profile. A longitudinal portion of the ROI is taken. In this portion the grey-scale values for each row are summed up building a one dimensional signal (brightness profile). The local minima in this signal corresponds to finger creases whereas the uprising flank starting by zero represents the fingertip(see red arrows in Figure 4). The distance of the fingertip and the last crease expresses the length of the finger.

Figure 4 Brightness profile generated by summing up gray-scale values in each row of a defined area in the region of interest.
Figure 4

Brightness profile generated by summing up gray-scale values in each row of a defined area in the region of interest.

2.3 Length measurement using geometry

As the second approach the shape of the finger itself is used to estimate its length. This method is more robust against artifacts caused by skin irritations and rings worn which would disturb the brightness profile used for the direct detection of the finger creases. The position of the finger gaps are used as reference points in order to define the finger length. For the fourth digit this can be done by connecting the gaps on the left and right side through a straight line. The center of this line is then used as an approximation of the corresponding finger crease. Due to the missing second gap for the second digit, a straight line is constructed which intersects the existing gap and is oriented orthogonal to the finger itself. A second line parallel to the finger and running through the tip intersects the first line at some point. Finally, this point serves as an approximation for the finger crease of the second digit (see Figure 5).

Figure 5 Geometric approximation of the creases: Left: Ring finger, Right: Index finger.
Figure 5

Geometric approximation of the creases: Left: Ring finger, Right: Index finger.

3 Results

The left and right hands of the 22 participants (5 female and 17 male) were scanned with the multifunction printer Typs Xerox WorkCentre 7120 at a resolution of 200 dpi (dots per inch). The participants were advised to place their hands in the same relaxed position such that neighboring digits did not touch each other and to ensure the correct detection of the finger gaps. Both approaches, the direct detection of the finger crease and the approximation of the creases based on the geometry, were compared to the manual measurements using a virtual ruler in the image editing tool GIMP (GNU Image Manipulation Program). Hereby, the measured finger lengths and the results for the 2D:4D digit ratios of the three methods were compared. The direct detection of finger creases revealed a high accuracy against the manual measurement. A deviation of up to 2% from the manual measurement could be reached for about 75% of all participants for the second and fourth digit. In comparison, the approximations of the creases using the geometric approach, only ∼33% of all measured index fingers and ∼55% of all measured ring fingers yielded a derivation of up to 2% from the manual measurements (see Table 1).

Table 1

Overall results. Each column contains the percentage share of digits for each method with deviations of 1%, 1-2%, 2-3% and above 3% from the manual measurement. Additionally the percentage share of outliers

Digit (method)< 1%1 − 2%2 − 3%> 3%Outliers
2D (crease)55%23%7%7%9%
4D (crease)59%9%5%9%18%
2D (geom.)20%14%25%32%9%
4D (geom.)32%25%9%16%18%

The geometric approximation as well as the direct detection of the creases provided a similar 2D:4D ratio for each participant. For both approaches nearly 40% of the measurements differ up to 2% from the 2D:4D ratios calculated using the manual measurements.

4 Discussion

The goal was the automatization and standardization of the process of retrieving the 2D:4D ratio of a person, which has to be done manually until today. In order to achieve accurate results the images have to be segmented robustly. This was achieved by applying color structure code in conjunction with a brute-force approach. Finally, two differently methods were proposed to measure the finger lengths. The direct detection of the finger creases corresponds to the manual measurement. This approach is accurate, but is susceptible against artifacts caused by e.g., noise, skin irritations or rings. Approximating the creases using a geometric approach is more robust but less accurate. This is due to the high differences in finger creases between humans. An improved model using natural fixed proportions in the human hand could increase the accuracy of the geometric approach. This work also showed up that using more suitable hardware can improve the performance of the brute-force segmentation step.

Author's Statement

  1. Conflict of interest: Authors state no conflict of interest. Material and Methods: Informed consent: Informed consent has been obtained from all individuals included in this study. Ethical approval: The research related to human use has been complied with all the relevant national regulations, institutional policies and in accordance the tenets of the Helsinki Declaration, and has been approved by the authors’ institutional review board or equivalent committee.

References

[1] Brown WM, Hines M, Fane BA, Breedlove SM. Masculinized finger length patterns in human males and females with congenital adrenal hyperplasia. Hormones and Behavior 2002; 42: 380–38610.1006/hbeh.2002.1830Search in Google Scholar

[2] George R. Human Finger Types. The Anatomical Record 1930; 46: 199–20410.1002/ar.1090460210Search in Google Scholar

[3] Kornhuber J, Erhard G, Lenz B, et al. Low digit ratio 2d:4d in alcohol dependent patients. PLoS ONE 2011; 610.1371/journal.pone.0019332Search in Google Scholar

[4] Kornhuber J, Zenses EM, Lenz B, et al. Low 2d:4d values are associated with video game addiction. PLoS ONE 2013; 810.1371/journal.pone.0079539Search in Google Scholar

[5] Lippa RA. Are 2d:4d finger-length ratios related to sexual orientation? yes for men, no for women. Journal of Personality and Social Psychology 2003; 85(1): 179–18810.1037/0022-3514.85.1.179Search in Google Scholar

[6] Manning JT, Scutt D, Wilson J, Lewis-Jones DI. The ratio of 2nd to 4th digit length: a predictor of sperm numbers and concentrations of testosterone, luteinizing hormone and oestrogen. The ratio of 2nd to 4th digit length: a predictor of sperm numbers and concentrations of testosterone, luteinizing hormone and oestrogen 1998; 13(11): 3000–300410.1093/humrep/13.11.3000Search in Google Scholar

[7] Manning JT, Taylor RP. Second to fourth digit ratio and male ability in sport: implications for sexual selection in humans. Evolution and Human Behavior 2001; 22:61–6910.1016/S1090-5138(00)00063-5Search in Google Scholar

[8] Priese L, Sturm P. Introduction to the color structure code and its implementation. 2003; URL https://www.uni-koblenzlandau.de/koblenz/fb4/icv/agpriese/research/ColorImgSeg/ download/csc.pdf. [accessed: 25.04.2014]Search in Google Scholar

[9] Rehrmann V, Birkhoff M. Echtzeitfähige Objektverfolgung in Farbbildern. In Rehrmann ”Erster Workshop Farbbildverarbeitung”, Vol. 15 of Fachhberiche Informatik, University Koblenz-Landa, 1995, pages 13–16.Search in Google Scholar

[10] Schultz AH. Fetal growth in man. American Journal of Physical Anthropology 1923; 6: 389–39910.1002/ajpa.1330060404Search in Google Scholar

[11] Stevenson JC, Everson PM, Williams DC, Hipskind G, Grimes M, Mahoney ER. Attention deficit/hyperactivity disorder (adhd) symptoms and digit ratios in a college sample. American Journal of Human Biology 2007; 19: 41–5010.1002/ajhb.20571Search in Google Scholar

[12] Wilson GD. Finger-length as an index of assertiveness in women. Personality and Individual Differences 1983; 4: 111–11210.1016/0191-8869(83)90061-2Search in Google Scholar

[13] Zhenga Z, Cohn MJ. Developmental basis of sexually dimorphic digit ratios. PNAS 2011; 108(39): 16289–1629410.1073/pnas.1108312108Search in Google Scholar PubMed PubMed Central

Published Online: 2015-9-12
Published in Print: 2015-9-1

© 2015 by Walter de Gruyter GmbH, Berlin/Boston

This article is distributed under the terms of the Creative Commons Attribution Non-Commercial License, which permits unrestricted non-commercial use, distribution, and reproduction in any medium, provided the original work is properly cited.

Articles in the same Issue

  1. Research Article
  2. Development and characterization of superparamagnetic coatings
  3. Research Article
  4. The development of an experimental setup to measure acousto-electric interaction signal
  5. Research Article
  6. Stability analysis of ferrofluids
  7. Research Article
  8. Investigation of endothelial growth using a sensors-integrated microfluidic system to simulate physiological barriers
  9. Research Article
  10. Energy harvesting for active implants: powering a ruminal pH-monitoring system
  11. Research Article
  12. New type of fluxgate magnetometer for the heart’s magnetic fields detection
  13. Research Article
  14. Field mapping of ballistic pressure pulse sources
  15. Research Article
  16. Development of a new homecare sleep monitor using body sounds and motion tracking
  17. Research Article
  18. Noise properties of textile, capacitive EEG electrodes
  19. Research Article
  20. Detecting phase singularities and rotor center trajectories based on the Hilbert transform of intraatrial electrograms in an atrial voxel model
  21. Research Article
  22. Spike sorting: the overlapping spikes challenge
  23. Research Article
  24. Separating the effect of respiration from the heart rate variability for cases of constant harmonic breathing
  25. Research Article
  26. Locating regions of arrhythmogenic substrate by analyzing the duration of triggered atrial activities
  27. Research Article
  28. Combining different ECG derived respiration tracking methods to create an optimal reconstruction of the breathing pattern
  29. Research Article
  30. Atrial and ventricular signal averaging electrocardiography in pacemaker and cardiac resynchronization therapy
  31. Research Article
  32. Estimation of a respiratory signal from a single-lead ECG using the 4th order central moments
  33. Research Article
  34. Compressed sensing of multi-lead ECG signals by compressive multiplexing
  35. Research Article
  36. Heart rate monitoring in ultra-high-field MRI using frequency information obtained from video signals of the human skin compared to electrocardiography and pulse oximetry
  37. Research Article
  38. Synchronization in wireless biomedical-sensor networks with Bluetooth Low Energy
  39. Research Article
  40. Automated classification of stages of anaesthesia by populations of evolutionary optimized fuzzy rules
  41. Research Article
  42. Effects of sampling rate on automated fatigue recognition in surface EMG signals
  43. Research Article
  44. Closed-loop transcranial alternating current stimulation of slow oscillations
  45. Research Article
  46. Cardiac index in atrio- and interventricular delay optimized cardiac resynchronization therapy and cardiac contractility modulation
  47. Research Article
  48. The role of expert evaluation for microsleep detection
  49. Research Article
  50. The impact of baseline wander removal techniques on the ST segment in simulated ischemic 12-lead ECGs
  51. Research Article
  52. Metal artifact reduction by projection replacements and non-local prior image integration
  53. Research Article
  54. A novel coaxial nozzle for in-process adjustment of electrospun scaffolds’ fiber diameter
  55. Research Article
  56. Processing of membranes for oxygenation using the Bellhouse-effect
  57. Research Article
  58. Inkjet printing of viable human dental follicle stem cells
  59. Research Article
  60. The use of an icebindingprotein out of the snowflea Hypogastrura harveyi as a cryoprotectant in the cryopreservation of mesenchymal stem cells
  61. Research Article
  62. New NIR spectroscopy based method to determine ischemia in vivo in liver – a first study on rats
  63. Research Article
  64. QRS and QT ventricular conduction times and permanent pacemaker therapy after transcatheter aortic valve implantation
  65. Research Article
  66. Adopting oculopressure tonometry as a transient in vivo rabbit glaucoma model
  67. Research Article
  68. Next-generation vision testing: the quick CSF
  69. Research Article
  70. Improving tactile sensation in laparoscopic surgery by overcoming size restrictions
  71. Research Article
  72. Design and control of a 3-DOF hydraulic driven surgical instrument
  73. Research Article
  74. Evaluation of endourological tools to improve the diagnosis and therapy of ureteral tumors – from model development to clinical application
  75. Research Article
  76. Frequency based assessment of surgical activities
  77. Research Article
  78. “Hands free for intervention”, a new approach for transoral endoscopic surgery
  79. Research Article
  80. Pseudo-haptic feedback in medical teleoperation
  81. Research Article
  82. Feasibility of interactive gesture control of a robotic microscope
  83. Research Article
  84. Towards structuring contextual information for workflow-driven surgical assistance functionalities
  85. Research Article
  86. Towards a framework for standardized semantic workflow modeling and management in the surgical domain
  87. Research Article
  88. Closed-loop approach for situation awareness of medical devices and operating room infrastructure
  89. Research Article
  90. Kinect based physiotherapy system for home use
  91. Research Article
  92. Evaluating the microsoft kinect skeleton joint tracking as a tool for home-based physiotherapy
  93. Research Article
  94. Integrating multimodal information for intraoperative assistance in neurosurgery
  95. Research Article
  96. Respiratory motion tracking using Microsoft’s Kinect v2 camera
  97. Research Article
  98. Using smart glasses for ultrasound diagnostics
  99. Research Article
  100. Measurement of needle susceptibility artifacts in magnetic resonance images
  101. Research Article
  102. Dimensionality reduction of medical image descriptors for multimodal image registration
  103. Research Article
  104. Experimental evaluation of different weighting schemes in magnetic particle imaging reconstruction
  105. Research Article
  106. Evaluation of CT capability for the detection of thin bone structures
  107. Research Article
  108. Towards contactless optical coherence elastography with acoustic tissue excitation
  109. Research Article
  110. Development and implementation of algorithms for automatic and robust measurement of the 2D:4D digit ratio using image data
  111. Research Article
  112. Automated high-throughput analysis of B cell spreading on immobilized antibodies with whole slide imaging
  113. Research Article
  114. Tissue segmentation from head MRI: a ground truth validation for feature-enhanced tracking
  115. Research Article
  116. Video tracking of swimming rodents on a reflective water surface
  117. Research Article
  118. MR imaging of model drug distribution in simulated vitreous
  119. Research Article
  120. Studying the extracellular contribution to the double wave vector diffusion-weighted signal
  121. Research Article
  122. Artifacts in field free line magnetic particle imaging in the presence of inhomogeneous and nonlinear magnetic fields
  123. Research Article
  124. Introducing a frequency-tunable magnetic particle spectrometer
  125. Research Article
  126. Imaging of aortic valve dynamics in 4D OCT
  127. Research Article
  128. Intravascular optical coherence tomography (OCT) as an additional tool for the assessment of stent structures
  129. Research Article
  130. Simple concept for a wide-field lensless digital holographic microscope using a laser diode
  131. Research Article
  132. Intraoperative identification of somato-sensory brain areas using optical imaging and standard RGB camera equipment – a feasibility study
  133. Research Article
  134. Respiratory surface motion measurement by Microsoft Kinect
  135. Research Article
  136. Improving image quality in EIT imaging by measurement of thorax excursion
  137. Research Article
  138. A clustering based dual model framework for EIT imaging: first experimental results
  139. Research Article
  140. Three-dimensional anisotropic regularization for limited angle tomography
  141. Research Article
  142. GPU-based real-time generation of large ultrasound volumes from freehand 3D sweeps
  143. Research Article
  144. Experimental computer tomograph
  145. Research Article
  146. US-tracked steered FUS in a respiratory ex vivo ovine liver phantom
  147. Research Article
  148. Contribution of brownian rotation and particle assembly polarisation to the particle response in magnetic particle spectrometry
  149. Research Article
  150. Preliminary investigations of magnetic modulated nanoparticles for microwave breast cancer detection
  151. Research Article
  152. Construction of a device for magnetic separation of superparamagnetic iron oxide nanoparticles
  153. Research Article
  154. An IHE-conform telecooperation platform supporting the treatment of dementia patients
  155. Research Article
  156. Automated respiratory therapy system based on the ARDSNet protocol with systemic perfusion control
  157. Research Article
  158. Identification of surgical instruments using UHF-RFID technology
  159. Research Article
  160. A generic concept for the development of model-guided clinical decision support systems
  161. Research Article
  162. Evaluation of local alterations in femoral bone mineral density measured via quantitative CT
  163. Research Article
  164. Creating 3D gelatin phantoms for experimental evaluation in biomedicine
  165. Research Article
  166. Influence of short-term fixation with mixed formalin or ethanol solution on the mechanical properties of human cortical bone
  167. Research Article
  168. Analysis of the release kinetics of surface-bound proteins via laser-induced fluorescence
  169. Research Article
  170. Tomographic particle image velocimetry of a water-jet for low volume harvesting of fat tissue for regenerative medicine
  171. Research Article
  172. Wireless medical sensors – context, robustness and safety
  173. Research Article
  174. Sequences for real-time magnetic particle imaging
  175. Research Article
  176. Speckle-based off-axis holographic detection for non-contact photoacoustic tomography
  177. Research Article
  178. A machine learning approach for planning valve-sparing aortic root reconstruction
  179. Research Article
  180. An in-ear pulse wave velocity measurement system using heart sounds as time reference
  181. Research Article
  182. Measuring different oxygenation levels in a blood perfusion model simulating the human head using NIRS
  183. Research Article
  184. Multisegmental fusion of the lumbar spine a curse or a blessing?
  185. Research Article
  186. Numerical analysis of the biomechanical complications accompanying the total hip replacement with NANOS-Prosthetic: bone remodelling and prosthesis migration
  187. Research Article
  188. A muscle model for hybrid muscle activation
  189. Research Article
  190. Mathematical, numerical and in-vitro investigation of cooling performance of an intra-carotid catheter for selective brain hypothermia
  191. Research Article
  192. An ideally parameterized unscented Kalman filter for the inverse problem of electrocardiography
  193. Research Article
  194. Interactive visualization of cardiac anatomy and atrial excitation for medical diagnosis and research
  195. Research Article
  196. Virtualizing clinical cases of atrial flutter in a fast marching simulation including conduction velocity and ablation scars
  197. Research Article
  198. Mesh structure-independent modeling of patient-specific atrial fiber orientation
  199. Research Article
  200. Accelerating mono-domain cardiac electrophysiology simulations using OpenCL
  201. Research Article
  202. Understanding the cellular mode of action of vernakalant using a computational model: answers and new questions
  203. Research Article
  204. A java based simulator with user interface to simulate ventilated patients
  205. Research Article
  206. Evaluation of an algorithm to choose between competing models of respiratory mechanics
  207. Research Article
  208. Numerical simulation of low-pulsation gerotor pumps for use in the pharmaceutical industry and in biomedicine
  209. Research Article
  210. Numerical and experimental flow analysis in centifluidic systems for rapid allergy screening tests
  211. Research Article
  212. Biomechanical parameter determination of scaffold-free cartilage constructs (SFCCs) with the hyperelastic material models Yeoh, Ogden and Demiray
  213. Research Article
  214. FPGA controlled artificial vascular system
  215. Research Article
  216. Simulation based investigation of source-detector configurations for non-invasive fetal pulse oximetry
  217. Research Article
  218. Test setup for characterizing the efficacy of embolic protection devices
  219. Research Article
  220. Impact of electrode geometry on force generation during functional electrical stimulation
  221. Research Article
  222. 3D-based visual physical activity assessment of children
  223. Research Article
  224. Realtime assessment of foot orientation by Accelerometers and Gyroscopes
  225. Research Article
  226. Image based reconstruction for cystoscopy
  227. Research Article
  228. Image guided surgery innovation with graduate students - a new lecture format
  229. Research Article
  230. Multichannel FES parameterization for controlling foot motion in paretic gait
  231. Research Article
  232. Smartphone supported upper limb prosthesis
  233. Research Article
  234. Use of quantitative tremor evaluation to enhance target selection during deep brain stimulation surgery for essential tremor
  235. Research Article
  236. Evaluation of adhesion promoters for Parylene C on gold metallization
  237. Research Article
  238. The influence of metallic ions from CoCr28Mo6 on the osteogenic differentiation and cytokine release of human osteoblasts
  239. Research Article
  240. Increasing the visibility of thin NITINOL vascular implants
  241. Research Article
  242. Possible reasons for early artificial bone failure in biomechanical tests of ankle arthrodesis systems
  243. Research Article
  244. Development of a bending test procedure for the characterization of flexible ECoG electrode arrays
  245. Research Article
  246. Tubular manipulators: a new concept for intracochlear positioning of an auditory prosthesis
  247. Research Article
  248. Investigation of the dynamic diameter deformation of vascular stents during fatigue testing with radial loading
  249. Research Article
  250. Electrospun vascular grafts with anti-kinking properties
  251. Research Article
  252. Integration of temperature sensors in polyimide-based thin-film electrode arrays
  253. Research Article
  254. Use cases and usability challenges for head-mounted displays in healthcare
  255. Research Article
  256. Device- and service profiles for integrated or systems based on open standards
  257. Research Article
  258. Risk management for medical devices in research projects
  259. Research Article
  260. Simulation of varying femoral attachment sites of medial patellofemoral ligament using a musculoskeletal multi-body model
  261. Research Article
  262. Does enhancing consciousness for strategic planning processes support the effectiveness of problem-based learning concepts in biomedical education?
  263. Research Article
  264. SPIO processing in macrophages for MPI: The breast cancer MPI-SNLB-concept
  265. Research Article
  266. Numerical simulations of airflow in the human pharynx of OSAHS patients
Downloaded on 8.9.2025 from https://www.degruyterbrill.com/document/doi/10.1515/cdbme-2015-0055/html
Scroll to top button