MORPHOLOGY ANALYSIS OF HUMAN KNEE USING MR IMAGERY

Size: px
Start display at page:

Download "MORPHOLOGY ANALYSIS OF HUMAN KNEE USING MR IMAGERY"

Transcription

1 MORPHOLOGY ANALYSIS OF HUMAN KNEE USING MR IMAGERY D. Chetverikov 1,2, G. Renner 1 1 Computer and Automation Research Institute, Budapest, Hungary; 2 Eötvös Loránd University, Budapest, Hungary We present a novel system for building a 3D model of human knee based on a sequence MR images. The system applies sophisticated modern image analysis and geometric modelling methods as well as graphical tools developed to investigate the morphology and functionality of human knee joint. The process of building a 3D model is described and illustrated by results for real measured data, followed by a discussion of system applications. Introduction The knee joint plays an essential role in the human motion. During human phylogeny, the anatomy of the knee has accommodated to the requirements of every day life activities, according to the interaction of form and function. The description of the kinematical geometry of the joint and the geometry of the contacting parts during motion has a primary importance from the point of view of the function of the knee. Deficiencies, deformations and deterioration in the human knee can be investigated by medical imaging techniques, such as X-ray, CT, MRI. In everyday clinical praxis X-ray is used, which shows anatomical structures in well defined projections. The knee is a complicated structure in space, therefore MRI or CT image sequences provide more detailed spatial information on the internal structures (bone, cartilage, ligament) than X-ray. By making visible the shape and morphology of some of the joint diseases these methods offer invaluable support to the practising physician and also to the orthopaedic surgeon. The same tools can be applied to the analysis of the kinematic behaviour of the knee. In the medical practice, MR and CT images are usually evaluated by a human evaluator. In the case of the human knee, however, this can be very difficult due to the low contrast of the anatomical components. In addition, the synovial fluid between the opposite cartilage surfaces of femur and tibia (upper and lower leg) blurs the images. Efficient and sensitive computer methods for contour detection and segmentation can improve the quality of evaluation. Based on the contours of the knee surfaces, accurate computation of distances, directions and angles within the joint is possible, which provides solid basis for orthopaedic handling and surgery. Many important properties of the healthy or pathological knee joint can only be evaluated in three dimensions. Pre-operative computer planning of surgical interventions also demand three dimensional representation of the knee. Consequently, a 3D computer model must be built using information extracted from the 2D images. Boundary surfaces of different anatomical structures appear as contours in MR images of the knee. The most important contours are that of the bone and the cartilage. These contours can be delineated manually by using the interactive facilities of the computer, or by an automatic process. Both approaches are based on the fact that different anatomical structures have different intensity values. Contour detection algorithms extract region boundaries as the lines where the intensity gradient is large. Most of the investigators in the literature of medical imaging [2, 4] use manually specified contour points and constructs a contour line by connecting and smoothing them. Patel et al. [6] reconstruct complete joint surfaces from MR images, but the emphasis is on recovering the knee motion by subsequent registrations, so accurate extraction of the contours is not needed. We have developed computer tools to extract bone and cartilage contours from a series of MR or CT slice images of the knee. They are carefully tailored to the specific contrast and shape features of knee images. Our aim was twofold: to provide a robust, easy to use tool for the physician to evaluate anatomical properties of the knee (shape defects, contact regions of

2 the joint, etc.) based on the contours; and to use them to build three dimensional computer models. Sequences of three-dimensional contours were used to reconstruct the geometry of tibia and femur. Because of the large number of the contours and the satisfactory contrast along the contours, automatic or semi-automatic contour detection is feasible. In addition to the gradients, geometric properties (continuity, smoothness) were taken into consideration to improve the quality of the contour. Contour detection proceeds slice by slice, and the procedure uses the result obtained for the previous slice. The deviation is measured and minimised, in order to maintain smooth transition between consecutive contours. The algorithm provides discrete 3D data points. Then continuous contour curves are created, which improves the quality of graphical representations and facilitates the mathematical analysis of the shape. The shape of a contour curve is influenced by the anatomical expectations of the physician. This paper presents the major image processing, segmentation and geometric modelling tools of our system. 1. Data acquisition and image analysis CT and/or MR image sequences of the knee are read in DICOM format A computer program was built for visualising the acquired data of the scans, using commercial programs [10]), assembled and modified according to the requirements of the knee investigations. The image sequences are stored on a 3D grid as a volumetric model, allowing to create images in the main anatomical directions (sagital, coronal, horizontal). Different image analysis and graphical tools have been developed to analyse the morphology of the knee. The MR images the system receives as input are of relatively low quality. Contrast stretching, adaptive nonlinear intensity mapping and noise removal are needed to enhance the slice images, improve their visibility and make them suitable for segmentation. While standard techniques can be used to enhance intensity, care should be taken not to blur the contours during noise removal. Adaptive histogram equalisation [7] helps enhance contrast and details; however, it may amplify noise as well. To remove noise without blurring the contours, we apply an adaptive filter that operates as follows. In a sliding window, the algorithm considers all pairs of pixels that are symmetric with respect to the central pixel of the window. From each pair, the pixel is selected whose value is closer to that of the central one. The selected pixels together with the central pixel form a set from which the output value, the mean of the set, is calculated. The selected pixel is likely to belong to the same class, either object or background, as the central one. This solution allows us to avoid averaging across contour that leads to contour blur. Figure 1 provides an example of blur-free MR image enhancement using the symmetric adaptive filter. original enhanced Fig. 1. Illustration of blur-free MR image enhancement using symmetric adaptive filter.

3 Fig. 2. Example of segmentation by contour expansion with the Fast Marching method. After enhancing all images of the MRI sequence, we proceed with image segmentation which is a critical step of system operation: the stability and accuracy of all further steps depend heavily on the bone and cartilage contours extracted during the segmentation. We have implemented and compared two different segmentation methods: Fast Marching and Active Contours. Below, we present the two methods separately Segmentation using Fast Marching and Level Set methods The Fast Marching method [8, 9] is an efficient segmentation algorithm. The method is applicable to bone segmentation if the intensity of the bone differs significantly from that of the adjacent tissue, that is, the contour of the bone is clearly visible. This condition holds for the noise-filtered MR images. The basic idea of Fast Marching is propagating a contour with a speed depending on local contrast. An initial closed contour must be given. In our case, this is a circle of small radius automatically selected within the bone area. A point (x, y) of the contour is moving outwards orthogonally to the contour with the speed determined by the intensity gradient: 1 v(x, y) = ɛ + I(x, y), where I(x, y) is the intensity value at (x, y), and ɛ = 1 is added for numerical stability. An example of propagation is shown in figure 2. Regions produced by the Fast Marching method are usually good, but sometimes they may contain outflows due to the occasional low contrast of the bone region contours. To detect an outflow, we calculate the area of the segmented region in each slice. A defective region is indicated if the relative absolute area variation with respect to the previous slice exceeds a certain limit. To correct segmentation errors due to outflow, we calculate the union of the regions in the slices adjacent to the erroneous one, then obtain the corrected region as the intersection of this union and the defective region. Figure 3 exemplifies the process of outflow correction. original corrected Fig. 3. Outflow correction: original and corrected 3D surfaces. The segmented regions obtained by the Fast Marching are noisy. To smooth them we use the Min/Max Flow which is a Level Set Method [9]. The method is based on the partial

4 Fig. 4. Region smoothing by Min/Max Flow. Top row: Original regions. Bottom row: Smoothed regions. differential equation I t = F min/max I, where I t is the temporal derivative of the time-varying image function I(x, y, t), the spatial gradient, F min/max the propagation speed. The latter is calculated as F min/max = { max( κ, 0) min( κ, 0) if average r (x, y) < 0 otherwise Here κ is the curvature, average r (x, y) the average intensity value within radius r around a point (x, y). The curvature is calculated as κ = I xxi 2 y 2I x I y I xx + I yy I x (I 2 x + I 2 y ) 3/2 An example of region smoothing with the Min/Max Flow is shown in figure 4. For very noisy images, the efficiency of the Min/Max Flow algorithm can be improved by replacing average r (x, y) by the median. The Fast Marching method can be extended to volumetric images. However, we do not use 3D Fast Marching because the outflow problem is more severe in the 3D case: an outflow in a slice can propagate to many voxels of the 3D volume. In 2D, an outflow can only affect the pixels of the processed slice Segmentation using Active Contours An alternative to the Fast Marching is the Active Contour method [1]. To initialise the Active Contour based segmentation, we apply manual initialisation of the contour following process. For a sequence of MRI images, the manual initialisation is done only once: for the slice image in the middle of the sequence. The time needed for the initialisation is negligible compared to the overall time required by data acquisition and processing. The semi-automatic approach improves robustness without significantly increasing the overall time. Figure 5 shows a sagital slice image with manually specified initial bone contours overlaid. Note that in the case of tibia (the lower bone) the initial contour is imprecise and not smooth enough. The contour is refined and made smoother by an iterative active contour algorithm [1]. Assuming the continuity of most of the data volume, the refined initial contour is then extended to a neighbouring slice by adapting it to the slice data. This is done by a similar active contour procedure. In this way, the algorithm propagates through the slices of the data until a

5 manual refined Fig. 5. Segmentation by Active Contours. Left: Manually specified contour. Right: Refined active contour. drastic change in the contour geometry occurs due to a significant change of the bone shape in that view. The cost function of the active contour includes a number of weighted components such as contour smoothness, intensity changes along and across the contour and the distance between neighbouring points of the contour. Adding a shape prior is planned to further improve the robustness of the procedure. We have compared the Active Contour based segmentation procedure to the Fast Marching method on numerous real data. Currently, we prefer using the Active Contour approach since it is usually more robust and precise. However, the Fast Marching method is also applicable, and it has the advantage of being completely automatic. 2. Building 3D model of the knee For detailed investigations of the knee, especially for motion analysis and designing surgical interventions, 3D modelling and visualisation of bone and cartilage surfaces are needed. Isosurface representation of spatial anatomical structures is provided by most medical imaging software. Using it physician get can an idea of the 3D morphology of the knee; however, it is suitable neither for exact representation of the shape nor for numerical evaluations. We have developed different types of surface reconstructions, triangulated surfaces and continuous surfaces, based on the information extracted from MR images. Triangulated representations of knee surfaces are sufficient for most medical investigations. High degree, smooth surfaces are needed for analysis of fine details and motion Relevant geometric properties (normal vectors, tangent planes, curvatures, plane intersections, etc.) can be computed for both surface representations, but the accuracies are considerably different. Figure 6 demonstrates examples of a measured point set and a triangulated set. A triangulated surface consists of very small triangles between data points that are consecutively connected to each other. The data points come from MRI scans, as the points of the corresponding contours. The sequence of contour points is positioned in 3D according to the spatial position of a slice containing the contour. In the case of cadaver studies, data points from internal anatomical structures can be collected by a (laser) scanning process. A good triangulation must meet several requirements: it must be topologically correct (no holes or flying triangles), must eliminate outlier points, triangles must have comparable side lengths and angles, their size must reflect the curvatures of the surface, etc. We have developed algorithms and computer programs to triangulate and decimate point sets of anatomical structures, which are able to handle imperfections coming from contour detection and measurements [11]. If necessary, topological corrections are performed, or the triangulation is decimated to reduce the

6 points triangles Fig. 6. A measured point set and a triangulated set. size of the data set. Figure 7 shows the femur and tibia as triangulated surfaces. Although they look quite smooth, the surfaces are not tangential continuous because of triangulation. femur tibia Fig. 7. Triangulated surfaces of the femur and tibia. For detailed biological or medical investigations, especially for studying the size and shape of the contacting regions of cartilage and motion of the knee, accurate and smooth representations of the functional surfaces of the knee are needed. Input data for creating high quality smooth surfaces is a point set coming from the contours of MR images, or from 3D scanning. The point set must be noise-filtered and decimated. First data points must be topological ordered, which is usually done by creating a triangulation over the surface points. Triangulation provides neighbourhood relations, which is important for fitting surfaces and for geometric calculations. Because we fit parametric surfaces commonly used in computer graphics and CAD (e.g. Bézier, B-spline, NURBS) over the point set, parameter values must be attached to the data points. This is performed by projecting the data points to a simple and rough approximating surface, which is usually the bicubic Coons surface defined by the boundary points of the point set [5]. The shape defining data of the surface are computed by minimising the functional F (C ij ) = N ( ) 2 S(uk, v k ) P k + λ k=1 S(u, v) = i,j B ij (u, v)c ij, S ( S 2 uu + 2S 2 uv + S 2 ) vv du dv where the continuous surface S(u, v) is fitted to N data points P k. The surface is defined by the basis functions B ij (u, v) and control points as shape parameters C ij. The functional contains

7 Fig. 8. Active surfaces of the femur and tibia. two terms. The first one is the squared distances of data points to the surface points with the same parameter value; it reflects the accuracy of the surface. The other one describes some geometric quantity responsible for smoothness, here the approximation of the surface curvatures (lower indices denote derivatives). Parameter λ (set by the user) defines the ratio between accuracy and smoothness. Minimisation of the functional defines control points of the surface and thus its unique mathematical representation. We have developed methods for parametrising point sets, solving the functional minimisation problem, and improving parameterisation during the fitting process; the details can be found in [11]. In figure 8 active surfaces of femur and tibia (where motion occurs) are shown, together with the underlying point sets. 3. Geometric evaluation There are numerous ways to analyse the shape and metric properties of knee surfaces, based on a precise geometric model. Various geometric properties such as tangent planes, normal vectors, extreme points, lines of intersections, distribution of mean and Gaussian curvatures, feature points, characteristic lines, etc. can be calculated, visualised and evaluated. Combining these procedures, we have developed computer programs that perform knee specific evaluations; either for clinical praxis or for preoperative surgical planning. As examples for both of them we demonstrate determination of the locus of contact points on the femur, and finding fixing points for crucial ligament replacement surgery. Fig. 9. Paths of contact points on the femur and tibia surfaces. Contact points (more precisely gravity centre of contact areas) between femur and tibia are important in detecting deficiencies in knee motion. They can be determined by analysing contour curves (looking for common points) of tibia and femur on images containing the contact point. When MR image sequences are acquired in different flexion angles of the knee, the path of the contact point on knee surfaces can be evaluated. Its location and different geometric properties (curvatures, torsions) are good indicators for different kinds of pathological states. Figure 9 shows paths of contact points on the femur and tibia surfaces; in the latter case, the top

8 view is given. The big difference in the lengths of the tibia and femur contact paths indicates the considerable sliding of the parts during flexion. Finding the motion path on the tibia surface is difficult. The motion path here is short compared to the femoral side, and the measured contact points are scattered, although in reality they probably form a single point or a very small area. A small side motion of in the knee could also contribute to the dispersion of the contact points. MRI sequences acquired for different knee flexions also facilitate detailed study of the knee kinematics, including the internal joint motions. First, precise geometric models of the femur and the tibia the cartilage surfaces are constructed. Using the robust registration algorithm [3], the transformation is then computed that brings the tibia surfaces in each flexion position into the starting position. The same transformation is applied to the femur surfaces, which gives the femur positions relative to the tibia. In this way three-dimensional motion of the knee can be investigated, and the curves describing the knee motion can be derived. Most important of such curves are the rotation and abduction as a function of the flexion. Sample rotation and abduction curves computed from the MRI sequence of a knee are shown in figure 10. Fig. 10. Rotation and abduction as a function of flexion. Important parameters of knee motion are the position, size and shape of the contact region between the tibia and femur during motion, investigated mainly on the tibia surface. These parameters can also be evaluated applying the above technique. Having an accurate computer model of the femur and tibia in a given position in space, distances between them can easily be computed and contact properties can be analysed. This is illustrated in figure 11 where the varying distances are shown by colour coding. Pictures for different flexions provide information on the variation of the contact region on the tibia surface during knee motion. Fig. 11. Contact region on the tibia surface during knee motion. Replacing seceded crucial ligaments (Anterior Crucial Ligament, ACL surgery) is an operation frequently performed in orthopaedic practice. The success of the operation is greatly affected by finding appropriate fixing points for the ligament on the tibia and femur surfaces. These points must maintain approximately constant distance during motion of the knee and

9 satisfy certain anatomical constraints. It is highly advantageous to determine them before operation and perform the surgical intervention using their position on the knee surfaces. Whenever MR image sequences of the patient s knee in different flexion angles are available before operation, it is possible to localise optimal fixing points for the crucial ligament. An accurate 3D model of the knee surfaces can be constructed using MR images and the above methods. With the spatial model all necessary geometric computations can be performed. Sample results of the distance evaluation are shown in figure 12. On the left-hand side the femur surface is coloured according to distances between a fixed point on the tibia and moving points on the femur; on the right-hand side ligament distances between the two points are shown as a function of the flexion angle. distance map ligament distance plot Fig. 12. Distance evaluation for ACL surgery. Conclusion Analysis of the geometric properties of the knee is important from many points of view. Based on shape information physicians can draw conclusions on the healthy and pathological state of the knee. Surgeons can design surgical intervention using geometric data of the knee. Better understanding of the morphology and functionality of the knee may lead to improvement of existing prostheses. Accurate geometric information facilitates preoperative design of knee surgery and computer control during surgery. We have developed efficient and robust tools to analyse MR and CT images, perform geometric calculations in 2D, reconstruct medical/biological surfaces from images and scans, register and merge them and evaluate them in 3D. Although the methods and programs were developed to satisfy specific aims and requirements of knee studies, many of the elements can be efficiently used to investigate similar biological structures. Our aim in the future is to develop a complete computer aided knee surgery and navigational system based on the image processing, geometric and graphic components discussed above. Acknowledments The medical and surgical expertise of this study was provided by Prof. G. Krakovits. The authors also acknowledge the valuable contributions of L. Szobonya, L. Hajder, F. Pongrácz and I. Kardos. References 1. A. Blake and M. Isard. Active Contours. Springer, 1998.

10 2. Z.A. Cohen, D.M. McCarthy, S.D. Kwak, P. Legrand, F. Fogarasi, E.J. Ciaccio, and G.A.Ateshian. Knee cartilage topography, thickness, and contact areas from MRI: in-vitro calibration and in-vivo measurements. Osteoartritis and Cartilage, 7:95 109, D.Chetverikov, D.Stepanov, and P.Krsek. Robust Euclidean alignment of 3D point sets: the trimmed iterative closest point algorithm. Image and Vision Computing, 23(3): , F. Eckstein, M. Reiser, K.H. Englmeier, and R. Putz. In vivo morphometry and functional analysis of human articular cartilage with quantitative magnetic resonance imaging from image to data, from data to theory. Anat. Embryol., 203: , J. Hoschek and D. Lasser. Fundamentals of Computer Aided Geometric Design. Peters, V.V. Patel et al. A three-dimensional MRI analysis of knee kinematics. Journ. of Orthopaedic Research, 22: , S.M. Pizer et al. Adaptive Histogram Equalization and Its Variants. Computer Vision, Graphics and Image Processing, 39: , J.A. Sethian. Fast marching methods. SIAM Review, 41(2): , J.A. Sethian. Level Set Methods and Fast Marching Methods: Evolving Interfaces in Computational Geometry, Fluid Mechanics, Computer Vision and Material Science. Cambridge University Press, Cambridge, UK, Volume Graphics GmbH. VGL Online Manual: Documentation for VGL V. Weiss, L. Andor, G. Renner, and T. Varady. Advanced surface fitting techniques. Computer-Aided Geometric Design, 19:19 42, 2002.

Semi-Automatic Segmentation of the Patellar Cartilage in MRI

Semi-Automatic Segmentation of the Patellar Cartilage in MRI Semi-Automatic Segmentation of the Patellar Cartilage in MRI Lorenz König 1, Martin Groher 1, Andreas Keil 1, Christian Glaser 2, Maximilian Reiser 2, Nassir Navab 1 1 Chair for Computer Aided Medical

More information

3D VISUALIZATION OF SEGMENTED CRUCIATE LIGAMENTS 1. INTRODUCTION

3D VISUALIZATION OF SEGMENTED CRUCIATE LIGAMENTS 1. INTRODUCTION JOURNAL OF MEDICAL INFORMATICS & TECHNOLOGIES Vol. 10/006, ISSN 164-6037 Paweł BADURA * cruciate ligament, segmentation, fuzzy connectedness,3d visualization 3D VISUALIZATION OF SEGMENTED CRUCIATE LIGAMENTS

More information

2 Michael E. Leventon and Sarah F. F. Gibson a b c d Fig. 1. (a, b) Two MR scans of a person's knee. Both images have high resolution in-plane, but ha

2 Michael E. Leventon and Sarah F. F. Gibson a b c d Fig. 1. (a, b) Two MR scans of a person's knee. Both images have high resolution in-plane, but ha Model Generation from Multiple Volumes using Constrained Elastic SurfaceNets Michael E. Leventon and Sarah F. F. Gibson 1 MIT Artificial Intelligence Laboratory, Cambridge, MA 02139, USA leventon@ai.mit.edu

More information

Measuring Motion and Shape in Biomechanics

Measuring Motion and Shape in Biomechanics Measuring Motion and Shape in Biomechanics G. Renner*, K. Andronyi** * Computer and Automation Research Institute of HAS, Budapest, Hungary (e-mail: renner@sztaki.hu). **Semmelweis University, Orthopaedic

More information

Accurate 3D Face and Body Modeling from a Single Fixed Kinect

Accurate 3D Face and Body Modeling from a Single Fixed Kinect Accurate 3D Face and Body Modeling from a Single Fixed Kinect Ruizhe Wang*, Matthias Hernandez*, Jongmoo Choi, Gérard Medioni Computer Vision Lab, IRIS University of Southern California Abstract In this

More information

Generation of Triangle Meshes from Time-of-Flight Data for Surface Registration

Generation of Triangle Meshes from Time-of-Flight Data for Surface Registration Generation of Triangle Meshes from Time-of-Flight Data for Surface Registration Thomas Kilgus, Thiago R. dos Santos, Alexander Seitel, Kwong Yung, Alfred M. Franz, Anja Groch, Ivo Wolf, Hans-Peter Meinzer,

More information

Chapter 3 Set Redundancy in Magnetic Resonance Brain Images

Chapter 3 Set Redundancy in Magnetic Resonance Brain Images 16 Chapter 3 Set Redundancy in Magnetic Resonance Brain Images 3.1 MRI (magnetic resonance imaging) MRI is a technique of measuring physical structure within the human anatomy. Our proposed research focuses

More information

Biomedical Image Processing for Human Elbow

Biomedical Image Processing for Human Elbow Biomedical Image Processing for Human Elbow Akshay Vishnoi, Sharad Mehta, Arpan Gupta Department of Mechanical Engineering Graphic Era University Dehradun, India akshaygeu001@gmail.com, sharadm158@gmail.com

More information

Volume visualization. Volume visualization. Volume visualization methods. Sources of volume visualization. Sources of volume visualization

Volume visualization. Volume visualization. Volume visualization methods. Sources of volume visualization. Sources of volume visualization Volume visualization Volume visualization Volumes are special cases of scalar data: regular 3D grids of scalars, typically interpreted as density values. Each data value is assumed to describe a cubic

More information

Calculating the Distance Map for Binary Sampled Data

Calculating the Distance Map for Binary Sampled Data MITSUBISHI ELECTRIC RESEARCH LABORATORIES http://www.merl.com Calculating the Distance Map for Binary Sampled Data Sarah F. Frisken Gibson TR99-6 December 999 Abstract High quality rendering and physics-based

More information

coding of various parts showing different features, the possibility of rotation or of hiding covering parts of the object's surface to gain an insight

coding of various parts showing different features, the possibility of rotation or of hiding covering parts of the object's surface to gain an insight Three-Dimensional Object Reconstruction from Layered Spatial Data Michael Dangl and Robert Sablatnig Vienna University of Technology, Institute of Computer Aided Automation, Pattern Recognition and Image

More information

Image Analysis, Geometrical Modelling and Image Synthesis for 3D Medical Imaging

Image Analysis, Geometrical Modelling and Image Synthesis for 3D Medical Imaging Image Analysis, Geometrical Modelling and Image Synthesis for 3D Medical Imaging J. SEQUEIRA Laboratoire d'informatique de Marseille - FRE CNRS 2246 Faculté des Sciences de Luminy, 163 avenue de Luminy,

More information

Computational Medical Imaging Analysis Chapter 4: Image Visualization

Computational Medical Imaging Analysis Chapter 4: Image Visualization Computational Medical Imaging Analysis Chapter 4: Image Visualization Jun Zhang Laboratory for Computational Medical Imaging & Data Analysis Department of Computer Science University of Kentucky Lexington,

More information

Visualisation : Lecture 1. So what is visualisation? Visualisation

Visualisation : Lecture 1. So what is visualisation? Visualisation So what is visualisation? UG4 / M.Sc. Course 2006 toby.breckon@ed.ac.uk Computer Vision Lab. Institute for Perception, Action & Behaviour Introducing 1 Application of interactive 3D computer graphics to

More information

An Improved Tracking Technique for Assessment of High Resolution Dynamic Radiography Kinematics

An Improved Tracking Technique for Assessment of High Resolution Dynamic Radiography Kinematics Copyright c 2008 ICCES ICCES, vol.8, no.2, pp.41-46 An Improved Tracking Technique for Assessment of High Resolution Dynamic Radiography Kinematics G. Papaioannou 1, C. Mitrogiannis 1 and G. Nianios 1

More information

CT Protocol Clinical Graphics Move Forward 3D motion analysis service

CT Protocol Clinical Graphics Move Forward 3D motion analysis service CT Protocol Clinical Graphics Move Forward 3D motion analysis service Version 1.4 Description of contents This document describes the CT protocol of scans for Clinical Graphics Move Forward 3D Motion Simulation

More information

Assessing Accuracy Factors in Deformable 2D/3D Medical Image Registration Using a Statistical Pelvis Model

Assessing Accuracy Factors in Deformable 2D/3D Medical Image Registration Using a Statistical Pelvis Model Assessing Accuracy Factors in Deformable 2D/3D Medical Image Registration Using a Statistical Pelvis Model Jianhua Yao National Institute of Health Bethesda, MD USA jyao@cc.nih.gov Russell Taylor The Johns

More information

CHAPTER 2. Morphometry on rodent brains. A.E.H. Scheenstra J. Dijkstra L. van der Weerd

CHAPTER 2. Morphometry on rodent brains. A.E.H. Scheenstra J. Dijkstra L. van der Weerd CHAPTER 2 Morphometry on rodent brains A.E.H. Scheenstra J. Dijkstra L. van der Weerd This chapter was adapted from: Volumetry and other quantitative measurements to assess the rodent brain, In vivo NMR

More information

A Method of Automated Landmark Generation for Automated 3D PDM Construction

A Method of Automated Landmark Generation for Automated 3D PDM Construction A Method of Automated Landmark Generation for Automated 3D PDM Construction A. D. Brett and C. J. Taylor Department of Medical Biophysics University of Manchester Manchester M13 9PT, Uk adb@sv1.smb.man.ac.uk

More information

Navigation System for ACL Reconstruction Using Registration between Multi-Viewpoint X-ray Images and CT Images

Navigation System for ACL Reconstruction Using Registration between Multi-Viewpoint X-ray Images and CT Images Navigation System for ACL Reconstruction Using Registration between Multi-Viewpoint X-ray Images and CT Images Mamoru Kuga a*, Kazunori Yasuda b, Nobuhiko Hata a, Takeyoshi Dohi a a Graduate School of

More information

Almost Curvature Continuous Fitting of B-Spline Surfaces

Almost Curvature Continuous Fitting of B-Spline Surfaces Journal for Geometry and Graphics Volume 2 (1998), No. 1, 33 43 Almost Curvature Continuous Fitting of B-Spline Surfaces Márta Szilvási-Nagy Department of Geometry, Mathematical Institute, Technical University

More information

Contours & Implicit Modelling 4

Contours & Implicit Modelling 4 Brief Recap Contouring & Implicit Modelling Contouring Implicit Functions Visualisation Lecture 8 lecture 6 Marching Cubes lecture 3 visualisation of a Quadric toby.breckon@ed.ac.uk Computer Vision Lab.

More information

Segmentation of Bony Structures with Ligament Attachment Sites

Segmentation of Bony Structures with Ligament Attachment Sites Segmentation of Bony Structures with Ligament Attachment Sites Heiko Seim 1, Hans Lamecker 1, Markus Heller 2, Stefan Zachow 1 1 Visualisierung und Datenanalyse, Zuse-Institut Berlin (ZIB), 14195 Berlin

More information

A Model-Independent, Multi-Image Approach to MR Inhomogeneity Correction

A Model-Independent, Multi-Image Approach to MR Inhomogeneity Correction Tina Memo No. 2007-003 Published in Proc. MIUA 2007 A Model-Independent, Multi-Image Approach to MR Inhomogeneity Correction P. A. Bromiley and N.A. Thacker Last updated 13 / 4 / 2007 Imaging Science and

More information

Exploiting Typical Clinical Imaging Constraints for 3D Outer Bone Surface Segmentation

Exploiting Typical Clinical Imaging Constraints for 3D Outer Bone Surface Segmentation Exploiting Typical Clinical Imaging Constraints for 3D Outer Bone Surface Segmentation Chris Mack, Vishali Mogallapu, Andrew Willis, Thomas P. Weldon UNC Charlotte, Department of Electrical and Computer

More information

Automated segmentation methods for liver analysis in oncology applications

Automated segmentation methods for liver analysis in oncology applications University of Szeged Department of Image Processing and Computer Graphics Automated segmentation methods for liver analysis in oncology applications Ph. D. Thesis László Ruskó Thesis Advisor Dr. Antal

More information

Computed tomography (Item No.: P )

Computed tomography (Item No.: P ) Computed tomography (Item No.: P2550100) Curricular Relevance Area of Expertise: Biology Education Level: University Topic: Modern Imaging Methods Subtopic: X-ray Imaging Experiment: Computed tomography

More information

Volume Illumination and Segmentation

Volume Illumination and Segmentation Volume Illumination and Segmentation Computer Animation and Visualisation Lecture 13 Institute for Perception, Action & Behaviour School of Informatics Overview Volume illumination Segmentation Volume

More information

Volumetric Deformable Models for Simulation of Laparoscopic Surgery

Volumetric Deformable Models for Simulation of Laparoscopic Surgery Volumetric Deformable Models for Simulation of Laparoscopic Surgery S. Cotin y, H. Delingette y, J.M. Clément z V. Tassetti z, J. Marescaux z, N. Ayache y y INRIA, Epidaure Project 2004, route des Lucioles,

More information

Computed tomography of simple objects. Related topics. Principle. Equipment TEP Beam hardening, artefacts, and algorithms

Computed tomography of simple objects. Related topics. Principle. Equipment TEP Beam hardening, artefacts, and algorithms Related topics Beam hardening, artefacts, and algorithms Principle The CT principle is demonstrated with the aid of simple objects. In the case of very simple targets, only a few images need to be taken

More information

Dr. Ulas Bagci

Dr. Ulas Bagci Lecture 9: Deformable Models and Segmentation CAP-Computer Vision Lecture 9-Deformable Models and Segmentation Dr. Ulas Bagci bagci@ucf.edu Lecture 9: Deformable Models and Segmentation Motivation A limitation

More information

Whole Body MRI Intensity Standardization

Whole Body MRI Intensity Standardization Whole Body MRI Intensity Standardization Florian Jäger 1, László Nyúl 1, Bernd Frericks 2, Frank Wacker 2 and Joachim Hornegger 1 1 Institute of Pattern Recognition, University of Erlangen, {jaeger,nyul,hornegger}@informatik.uni-erlangen.de

More information

3D Volume Mesh Generation of Human Organs Using Surface Geometries Created from the Visible Human Data Set

3D Volume Mesh Generation of Human Organs Using Surface Geometries Created from the Visible Human Data Set 3D Volume Mesh Generation of Human Organs Using Surface Geometries Created from the Visible Human Data Set John M. Sullivan, Jr., Ziji Wu, and Anand Kulkarni Worcester Polytechnic Institute Worcester,

More information

NIH Public Access Author Manuscript Proc Soc Photo Opt Instrum Eng. Author manuscript; available in PMC 2014 October 07.

NIH Public Access Author Manuscript Proc Soc Photo Opt Instrum Eng. Author manuscript; available in PMC 2014 October 07. NIH Public Access Author Manuscript Published in final edited form as: Proc Soc Photo Opt Instrum Eng. 2014 March 21; 9034: 903442. doi:10.1117/12.2042915. MRI Brain Tumor Segmentation and Necrosis Detection

More information

Curvature Estimation on Smoothed 3-D Meshes

Curvature Estimation on Smoothed 3-D Meshes Curvature Estimation on Smoothed 3-D Meshes Peter Yuen, Nasser Khalili and Farzin Mokhtarian Centre for Vision, Speech and Signal Processing School of Electronic Engineering, Information Technology and

More information

A second order algorithm for orthogonal projection onto curves and surfaces

A second order algorithm for orthogonal projection onto curves and surfaces A second order algorithm for orthogonal projection onto curves and surfaces Shi-min Hu and Johannes Wallner Dept. of Computer Science and Technology, Tsinghua University, Beijing, China shimin@tsinghua.edu.cn;

More information

Modelling a Lamb Hind Leg

Modelling a Lamb Hind Leg Modelling a Lamb Hind Leg Joanne P. Crocombe Ross D. Clarke MIRINZ Food Technology & Research East Street (Ruakura Campus), PO Box 617 HAMILTON, NEW ZEALAND Andrew J. Pullan Department of Engineering Science

More information

Combined surface and volume processing for fused joint segmentation

Combined surface and volume processing for fused joint segmentation 2 Combined surface and volume processing for fused joint segmentation Peter R. Krekel 1,2, Edward R. Valstar 1,3, Frits H. Post 2, Piet M. Rozing 1, Charl P. Botha 2 1 Department of Orthopaedics, Leiden

More information

Contours & Implicit Modelling 1

Contours & Implicit Modelling 1 Contouring & Implicit Modelling Visualisation Lecture 8 Institute for Perception, Action & Behaviour School of Informatics Contours & Implicit Modelling 1 Brief Recap Contouring Implicit Functions lecture

More information

Edge and local feature detection - 2. Importance of edge detection in computer vision

Edge and local feature detection - 2. Importance of edge detection in computer vision Edge and local feature detection Gradient based edge detection Edge detection by function fitting Second derivative edge detectors Edge linking and the construction of the chain graph Edge and local feature

More information

Scientific Visualization Example exam questions with commented answers

Scientific Visualization Example exam questions with commented answers Scientific Visualization Example exam questions with commented answers The theoretical part of this course is evaluated by means of a multiple- choice exam. The questions cover the material mentioned during

More information

Computation Method for Evaluation of Surface Fine Structure by Highlight Lines

Computation Method for Evaluation of Surface Fine Structure by Highlight Lines Computation Method for Evaluation of Surface Fine Structure by Highlight Lines György Gyurecz 1, Dr. Gábor Renner 2 1 Institute of Machine Design and Safety Engineering, Óbuda University 2 Computer and

More information

Computer Vision 2. SS 18 Dr. Benjamin Guthier Professur für Bildverarbeitung. Computer Vision 2 Dr. Benjamin Guthier

Computer Vision 2. SS 18 Dr. Benjamin Guthier Professur für Bildverarbeitung. Computer Vision 2 Dr. Benjamin Guthier Computer Vision 2 SS 18 Dr. Benjamin Guthier Professur für Bildverarbeitung Computer Vision 2 Dr. Benjamin Guthier 1. IMAGE PROCESSING Computer Vision 2 Dr. Benjamin Guthier Content of this Chapter Non-linear

More information

Multi-Scale Free-Form Surface Description

Multi-Scale Free-Form Surface Description Multi-Scale Free-Form Surface Description Farzin Mokhtarian, Nasser Khalili and Peter Yuen Centre for Vision Speech and Signal Processing Dept. of Electronic and Electrical Engineering University of Surrey,

More information

Lecture 12 Level Sets & Parametric Transforms. sec & ch. 11 of Machine Vision by Wesley E. Snyder & Hairong Qi

Lecture 12 Level Sets & Parametric Transforms. sec & ch. 11 of Machine Vision by Wesley E. Snyder & Hairong Qi Lecture 12 Level Sets & Parametric Transforms sec. 8.5.2 & ch. 11 of Machine Vision by Wesley E. Snyder & Hairong Qi Spring 2017 16-725 (CMU RI) : BioE 2630 (Pitt) Dr. John Galeotti The content of these

More information

A Study of Medical Image Analysis System

A Study of Medical Image Analysis System Indian Journal of Science and Technology, Vol 8(25), DOI: 10.17485/ijst/2015/v8i25/80492, October 2015 ISSN (Print) : 0974-6846 ISSN (Online) : 0974-5645 A Study of Medical Image Analysis System Kim Tae-Eun

More information

Isophote-Based Interpolation

Isophote-Based Interpolation Isophote-Based Interpolation Bryan S. Morse and Duane Schwartzwald Department of Computer Science, Brigham Young University 3361 TMCB, Provo, UT 84602 {morse,duane}@cs.byu.edu Abstract Standard methods

More information

CT IMAGE PROCESSING IN HIP ARTHROPLASTY

CT IMAGE PROCESSING IN HIP ARTHROPLASTY U.P.B. Sci. Bull., Series C, Vol. 75, Iss. 3, 2013 ISSN 2286 3540 CT IMAGE PROCESSING IN HIP ARTHROPLASTY Anca MORAR 1, Florica MOLDOVEANU 2, Alin MOLDOVEANU 3, Victor ASAVEI 4, Alexandru EGNER 5 The use

More information

MEDICAL IMAGE NOISE REDUCTION AND REGION CONTRAST ENHANCEMENT USING PARTIAL DIFFERENTIAL EQUATIONS

MEDICAL IMAGE NOISE REDUCTION AND REGION CONTRAST ENHANCEMENT USING PARTIAL DIFFERENTIAL EQUATIONS MEDICAL IMAGE NOISE REDUCTION AND REGION CONTRAST ENHANCEMENT USING PARTIAL DIFFERENTIAL EQUATIONS Miguel Alemán-Flores, Luis Álvarez-León Departamento de Informática y Sistemas, Universidad de Las Palmas

More information

CSC Computer Graphics

CSC Computer Graphics // CSC. Computer Graphics Lecture Kasun@dscs.sjp.ac.lk Department of Computer Science University of Sri Jayewardanepura Polygon Filling Scan-Line Polygon Fill Algorithm Span Flood-Fill Algorithm Inside-outside

More information

Segmentation and Modeling of the Spinal Cord for Reality-based Surgical Simulator

Segmentation and Modeling of the Spinal Cord for Reality-based Surgical Simulator Segmentation and Modeling of the Spinal Cord for Reality-based Surgical Simulator Li X.C.,, Chui C. K.,, and Ong S. H.,* Dept. of Electrical and Computer Engineering Dept. of Mechanical Engineering, National

More information

An Automated Image-based Method for Multi-Leaf Collimator Positioning Verification in Intensity Modulated Radiation Therapy

An Automated Image-based Method for Multi-Leaf Collimator Positioning Verification in Intensity Modulated Radiation Therapy An Automated Image-based Method for Multi-Leaf Collimator Positioning Verification in Intensity Modulated Radiation Therapy Chenyang Xu 1, Siemens Corporate Research, Inc., Princeton, NJ, USA Xiaolei Huang,

More information

Level set methods Formulation of Interface Propagation Boundary Value PDE Initial Value PDE Motion in an externally generated velocity field

Level set methods Formulation of Interface Propagation Boundary Value PDE Initial Value PDE Motion in an externally generated velocity field Level Set Methods Overview Level set methods Formulation of Interface Propagation Boundary Value PDE Initial Value PDE Motion in an externally generated velocity field Convection Upwind ddifferencingi

More information

6th International DAAAM Baltic Conference INDUSTRIAL ENGINEERING April 2008, Tallinn, Estonia. Radu, C. & Roşca, I.C.

6th International DAAAM Baltic Conference INDUSTRIAL ENGINEERING April 2008, Tallinn, Estonia. Radu, C. & Roşca, I.C. 6th International DAAAM Baltic Conference INDUSTRIAL ENGINEERING 24-26 April 2008, Tallinn, Estonia ON THE DESIGN OF A MEDICAL IMPLANT USED FOR OSTEOSYNTHESIS OF THE TRANSSINDESMOTIC FIBULAR FRACTURE PART

More information

Towards the completion of assignment 1

Towards the completion of assignment 1 Towards the completion of assignment 1 What to do for calibration What to do for point matching What to do for tracking What to do for GUI COMPSCI 773 Feature Point Detection Why study feature point detection?

More information

Ellipse fitting using orthogonal hyperbolae and Stirling s oval

Ellipse fitting using orthogonal hyperbolae and Stirling s oval Ellipse fitting using orthogonal hyperbolae and Stirling s oval Paul L. Rosin Abstract Two methods for approximating the normal distance to an ellipse using a) its orthogonal hyperbolae, and b) Stirling

More information

3D Surface Reconstruction of the Brain based on Level Set Method

3D Surface Reconstruction of the Brain based on Level Set Method 3D Surface Reconstruction of the Brain based on Level Set Method Shijun Tang, Bill P. Buckles, and Kamesh Namuduri Department of Computer Science & Engineering Department of Electrical Engineering University

More information

Image Acquisition Systems

Image Acquisition Systems Image Acquisition Systems Goals and Terminology Conventional Radiography Axial Tomography Computer Axial Tomography (CAT) Magnetic Resonance Imaging (MRI) PET, SPECT Ultrasound Microscopy Imaging ITCS

More information

Digital Image Processing

Digital Image Processing Digital Image Processing SPECIAL TOPICS CT IMAGES Hamid R. Rabiee Fall 2015 What is an image? 2 Are images only about visual concepts? We ve already seen that there are other kinds of image. In this lecture

More information

Classification of Subject Motion for Improved Reconstruction of Dynamic Magnetic Resonance Imaging

Classification of Subject Motion for Improved Reconstruction of Dynamic Magnetic Resonance Imaging 1 CS 9 Final Project Classification of Subject Motion for Improved Reconstruction of Dynamic Magnetic Resonance Imaging Feiyu Chen Department of Electrical Engineering ABSTRACT Subject motion is a significant

More information

Segmentation of 3-D medical image data sets with a combination of region based initial segmentation and active surfaces

Segmentation of 3-D medical image data sets with a combination of region based initial segmentation and active surfaces Header for SPIE use Segmentation of 3-D medical image data sets with a combination of region based initial segmentation and active surfaces Regina Pohle, Thomas Behlau, Klaus D. Toennies Otto-von-Guericke

More information

Introduction to Medical Image Processing

Introduction to Medical Image Processing Introduction to Medical Image Processing Δ Essential environments of a medical imaging system Subject Image Analysis Energy Imaging System Images Image Processing Feature Images Image processing may be

More information

A Toolbox of Level Set Methods

A Toolbox of Level Set Methods A Toolbox of Level Set Methods Ian Mitchell Department of Computer Science University of British Columbia http://www.cs.ubc.ca/~mitchell mitchell@cs.ubc.ca research supported by the Natural Science and

More information

3D Modeling of Objects Using Laser Scanning

3D Modeling of Objects Using Laser Scanning 1 3D Modeling of Objects Using Laser Scanning D. Jaya Deepu, LPU University, Punjab, India Email: Jaideepudadi@gmail.com Abstract: In the last few decades, constructing accurate three-dimensional models

More information

Announcements. Edges. Last Lecture. Gradients: Numerical Derivatives f(x) Edge Detection, Lines. Intro Computer Vision. CSE 152 Lecture 10

Announcements. Edges. Last Lecture. Gradients: Numerical Derivatives f(x) Edge Detection, Lines. Intro Computer Vision. CSE 152 Lecture 10 Announcements Assignment 2 due Tuesday, May 4. Edge Detection, Lines Midterm: Thursday, May 6. Introduction to Computer Vision CSE 152 Lecture 10 Edges Last Lecture 1. Object boundaries 2. Surface normal

More information

Methodological progress in image registration for ventilation estimation, segmentation propagation and multi-modal fusion

Methodological progress in image registration for ventilation estimation, segmentation propagation and multi-modal fusion Methodological progress in image registration for ventilation estimation, segmentation propagation and multi-modal fusion Mattias P. Heinrich Julia A. Schnabel, Mark Jenkinson, Sir Michael Brady 2 Clinical

More information

LOCAL-GLOBAL OPTICAL FLOW FOR IMAGE REGISTRATION

LOCAL-GLOBAL OPTICAL FLOW FOR IMAGE REGISTRATION LOCAL-GLOBAL OPTICAL FLOW FOR IMAGE REGISTRATION Ammar Zayouna Richard Comley Daming Shi Middlesex University School of Engineering and Information Sciences Middlesex University, London NW4 4BT, UK A.Zayouna@mdx.ac.uk

More information

ROBUST LINE-BASED CALIBRATION OF LENS DISTORTION FROM A SINGLE VIEW

ROBUST LINE-BASED CALIBRATION OF LENS DISTORTION FROM A SINGLE VIEW ROBUST LINE-BASED CALIBRATION OF LENS DISTORTION FROM A SINGLE VIEW Thorsten Thormählen, Hellward Broszio, Ingolf Wassermann thormae@tnt.uni-hannover.de University of Hannover, Information Technology Laboratory,

More information

Scalar Data. Visualization Torsten Möller. Weiskopf/Machiraju/Möller

Scalar Data. Visualization Torsten Möller. Weiskopf/Machiraju/Möller Scalar Data Visualization Torsten Möller Weiskopf/Machiraju/Möller Overview Basic strategies Function plots and height fields Isolines Color coding Volume visualization (overview) Classification Segmentation

More information

Digital Image Processing Fundamentals

Digital Image Processing Fundamentals Ioannis Pitas Digital Image Processing Fundamentals Chapter 7 Shape Description Answers to the Chapter Questions Thessaloniki 1998 Chapter 7: Shape description 7.1 Introduction 1. Why is invariance to

More information

Using Perspective Rays and Symmetry to Model Duality

Using Perspective Rays and Symmetry to Model Duality Using Perspective Rays and Symmetry to Model Duality Alex Wang Electrical Engineering and Computer Sciences University of California at Berkeley Technical Report No. UCB/EECS-2016-13 http://www.eecs.berkeley.edu/pubs/techrpts/2016/eecs-2016-13.html

More information

A Statistical Consistency Check for the Space Carving Algorithm.

A Statistical Consistency Check for the Space Carving Algorithm. A Statistical Consistency Check for the Space Carving Algorithm. A. Broadhurst and R. Cipolla Dept. of Engineering, Univ. of Cambridge, Cambridge, CB2 1PZ aeb29 cipolla @eng.cam.ac.uk Abstract This paper

More information

(Refer Slide Time: 00:02:24 min)

(Refer Slide Time: 00:02:24 min) CAD / CAM Prof. Dr. P. V. Madhusudhan Rao Department of Mechanical Engineering Indian Institute of Technology, Delhi Lecture No. # 9 Parametric Surfaces II So these days, we are discussing the subject

More information

VALLIAMMAI ENGINEERING COLLEGE

VALLIAMMAI ENGINEERING COLLEGE VALLIAMMAI ENGINEERING COLLEGE SRM Nagar, Kattankulathur 603 203 DEPARTMENT OF MECHANICAL ENGINEERING QUESTION BANK M.E: CAD/CAM I SEMESTER ED5151 COMPUTER APPLICATIONS IN DESIGN Regulation 2017 Academic

More information

The organization of the human cerebral cortex estimated by intrinsic functional connectivity

The organization of the human cerebral cortex estimated by intrinsic functional connectivity 1 The organization of the human cerebral cortex estimated by intrinsic functional connectivity Journal: Journal of Neurophysiology Author: B. T. Thomas Yeo, et al Link: https://www.ncbi.nlm.nih.gov/pubmed/21653723

More information

Progressive Surface Modeling Based On 3D Motion Sketch

Progressive Surface Modeling Based On 3D Motion Sketch Progressive Surface Modeling Based On 3D Motion Sketch SHENGFENG IN, and DAVID K WRIGHT School of Engineering and Design Brunel University Uxbridge, Middlesex UB8 3PH UK Abstract: - This paper presents

More information

weighted minimal surface model for surface reconstruction from scattered points, curves, and/or pieces of surfaces.

weighted minimal surface model for surface reconstruction from scattered points, curves, and/or pieces of surfaces. weighted minimal surface model for surface reconstruction from scattered points, curves, and/or pieces of surfaces. joint work with (S. Osher, R. Fedkiw and M. Kang) Desired properties for surface reconstruction:

More information

A MORPHOLOGY-BASED FILTER STRUCTURE FOR EDGE-ENHANCING SMOOTHING

A MORPHOLOGY-BASED FILTER STRUCTURE FOR EDGE-ENHANCING SMOOTHING Proceedings of the 1994 IEEE International Conference on Image Processing (ICIP-94), pp. 530-534. (Austin, Texas, 13-16 November 1994.) A MORPHOLOGY-BASED FILTER STRUCTURE FOR EDGE-ENHANCING SMOOTHING

More information

STATISTICAL ATLAS-BASED SUB-VOXEL SEGMENTATION OF 3D BRAIN MRI

STATISTICAL ATLAS-BASED SUB-VOXEL SEGMENTATION OF 3D BRAIN MRI STATISTICA ATAS-BASED SUB-VOXE SEGMENTATION OF 3D BRAIN MRI Marcel Bosc 1,2, Fabrice Heitz 1, Jean-Paul Armspach 2 (1) SIIT UMR-7005 CNRS / Strasbourg I University, 67400 Illkirch, France (2) IPB UMR-7004

More information

The Anatomical Equivalence Class Formulation and its Application to Shape-based Computational Neuroanatomy

The Anatomical Equivalence Class Formulation and its Application to Shape-based Computational Neuroanatomy The Anatomical Equivalence Class Formulation and its Application to Shape-based Computational Neuroanatomy Sokratis K. Makrogiannis, PhD From post-doctoral research at SBIA lab, Department of Radiology,

More information

Automatic segmentation of the cortical grey and white matter in MRI using a Region Growing approach based on anatomical knowledge

Automatic segmentation of the cortical grey and white matter in MRI using a Region Growing approach based on anatomical knowledge Automatic segmentation of the cortical grey and white matter in MRI using a Region Growing approach based on anatomical knowledge Christian Wasserthal 1, Karin Engel 1, Karsten Rink 1 und André Brechmann

More information

Reconstruction of complete 3D object model from multi-view range images.

Reconstruction of complete 3D object model from multi-view range images. Header for SPIE use Reconstruction of complete 3D object model from multi-view range images. Yi-Ping Hung *, Chu-Song Chen, Ing-Bor Hsieh, Chiou-Shann Fuh Institute of Information Science, Academia Sinica,

More information

Distance Functions 1

Distance Functions 1 Distance Functions 1 Distance function Given: geometric object F (curve, surface, solid, ) Assigns to each point the shortest distance from F Level sets of the distance function are trimmed offsets F p

More information

Anatomical landmark and region mapping based on a template surface deformation for foot bone morphology

Anatomical landmark and region mapping based on a template surface deformation for foot bone morphology Anatomical landmark and region mapping based on a template surface deformation for foot bone morphology Jaeil Kim 1, Sang Gyo Seo 2, Dong Yeon Lee 2, Jinah Park 1 1 Department of Computer Science, KAIST,

More information

CHAPTER-4 LOCALIZATION AND CONTOUR DETECTION OF OPTIC DISK

CHAPTER-4 LOCALIZATION AND CONTOUR DETECTION OF OPTIC DISK CHAPTER-4 LOCALIZATION AND CONTOUR DETECTION OF OPTIC DISK Ocular fundus images can provide information about ophthalmic, retinal and even systemic diseases such as hypertension, diabetes, macular degeneration

More information

PROSTATE CANCER DETECTION USING LABEL IMAGE CONSTRAINED MULTIATLAS SELECTION

PROSTATE CANCER DETECTION USING LABEL IMAGE CONSTRAINED MULTIATLAS SELECTION PROSTATE CANCER DETECTION USING LABEL IMAGE CONSTRAINED MULTIATLAS SELECTION Ms. Vaibhavi Nandkumar Jagtap 1, Mr. Santosh D. Kale 2 1 PG Scholar, 2 Assistant Professor, Department of Electronics and Telecommunication,

More information

Automatic Subthalamic Nucleus Targeting for Deep Brain Stimulation. A Validation Study

Automatic Subthalamic Nucleus Targeting for Deep Brain Stimulation. A Validation Study Automatic Subthalamic Nucleus Targeting for Deep Brain Stimulation. A Validation Study F. Javier Sánchez Castro a, Claudio Pollo a,b, Jean-Guy Villemure b, Jean-Philippe Thiran a a École Polytechnique

More information

Medical Image Segmentation using Level Sets

Medical Image Segmentation using Level Sets Medical Image Segmentation using Level Sets Technical Report #CS-8-1 Tenn Francis Chen Abstract Segmentation is a vital aspect of medical imaging. It aids in the visualization of medical data and diagnostics

More information

Shape-based Diffeomorphic Registration on Hippocampal Surfaces Using Beltrami Holomorphic Flow

Shape-based Diffeomorphic Registration on Hippocampal Surfaces Using Beltrami Holomorphic Flow Shape-based Diffeomorphic Registration on Hippocampal Surfaces Using Beltrami Holomorphic Flow Abstract. Finding meaningful 1-1 correspondences between hippocampal (HP) surfaces is an important but difficult

More information

Filtering Images. Contents

Filtering Images. Contents Image Processing and Data Visualization with MATLAB Filtering Images Hansrudi Noser June 8-9, 010 UZH, Multimedia and Robotics Summer School Noise Smoothing Filters Sigmoid Filters Gradient Filters Contents

More information

Obtaining Feature Correspondences

Obtaining Feature Correspondences Obtaining Feature Correspondences Neill Campbell May 9, 2008 A state-of-the-art system for finding objects in images has recently been developed by David Lowe. The algorithm is termed the Scale-Invariant

More information

Geometric Representations. Stelian Coros

Geometric Representations. Stelian Coros Geometric Representations Stelian Coros Geometric Representations Languages for describing shape Boundary representations Polygonal meshes Subdivision surfaces Implicit surfaces Volumetric models Parametric

More information

Doyle Spiral Circle Packings Animated

Doyle Spiral Circle Packings Animated Doyle Spiral Circle Packings Animated Alan Sutcliffe 4 Binfield Road Wokingham RG40 1SL, UK E-mail: nsutcliffe@ntlworld.com Abstract Doyle spiral circle packings are described. Two such packings illustrate

More information

Fully Automatic Endoscope Calibration for Intraoperative Use

Fully Automatic Endoscope Calibration for Intraoperative Use Fully Automatic Endoscope Calibration for Intraoperative Use Christian Wengert, Mireille Reeff, Philippe C. Cattin, Gábor Székely Computer Vision Laboratory, ETH Zurich, 8092 Zurich, Switzerland {wengert,

More information

Semantic Context Forests for Learning- Based Knee Cartilage Segmentation in 3D MR Images

Semantic Context Forests for Learning- Based Knee Cartilage Segmentation in 3D MR Images Semantic Context Forests for Learning- Based Knee Cartilage Segmentation in 3D MR Images MICCAI 2013: Workshop on Medical Computer Vision Authors: Quan Wang, Dijia Wu, Le Lu, Meizhu Liu, Kim L. Boyer,

More information

Scalar Visualization

Scalar Visualization Scalar Visualization Visualizing scalar data Popular scalar visualization techniques Color mapping Contouring Height plots outline Recap of Chap 4: Visualization Pipeline 1. Data Importing 2. Data Filtering

More information

n o r d i c B r a i n E x Tutorial DTI Module

n o r d i c B r a i n E x Tutorial DTI Module m a k i n g f u n c t i o n a l M R I e a s y n o r d i c B r a i n E x Tutorial DTI Module Please note that this tutorial is for the latest released nordicbrainex. If you are using an older version please

More information

Basic Algorithms for Digital Image Analysis: a course

Basic Algorithms for Digital Image Analysis: a course Institute of Informatics Eötvös Loránd University Budapest, Hungary Basic Algorithms for Digital Image Analysis: a course Dmitrij Csetverikov with help of Attila Lerch, Judit Verestóy, Zoltán Megyesi,

More information

ME COMPUTER AIDED DESIGN COMPUTER AIDED DESIGN 2 MARKS Q&A

ME COMPUTER AIDED DESIGN COMPUTER AIDED DESIGN 2 MARKS Q&A ME6501 - COMPUTER AIDED DESIGN COMPUTER AIDED DESIGN 2 MARKS Q&A Unit I 1. What is CAD? Computer aided design (CAD) is the technology concerned with the use of computer systems to assist the creation,

More information

Slide 1. Technical Aspects of Quality Control in Magnetic Resonance Imaging. Slide 2. Annual Compliance Testing. of MRI Systems.

Slide 1. Technical Aspects of Quality Control in Magnetic Resonance Imaging. Slide 2. Annual Compliance Testing. of MRI Systems. Slide 1 Technical Aspects of Quality Control in Magnetic Resonance Imaging Slide 2 Compliance Testing of MRI Systems, Ph.D. Department of Radiology Henry Ford Hospital, Detroit, MI Slide 3 Compliance Testing

More information