Relational and Spatial 3D Visualisation with Dental Cone Beam CT Images. Ma Tengfei 1, Ong Sim Heng 2

Size: px
Start display at page:

Download "Relational and Spatial 3D Visualisation with Dental Cone Beam CT Images. Ma Tengfei 1, Ong Sim Heng 2"

Transcription

1 Relational and Spatial 3D Visualisation with Dental Cone Beam CT Images Ma Tengfei 1, Ong Sim Heng 2 Department of Electrical & Computer Engineering National University of Singapore, 10 Kent Ridge Crescent, Singapore ABSTRACT Clinicians can scroll through regions of 2D anatomy in three visual planes at 90 degrees to one another using viewing software. Different degrees of tissue transparency may be used to display surface and internal anatomy. However, the problem is that the spatial relationship of internal anatomic air spaces bone cannot be visualized in 3D. In this project, we present a level set algorithm to segment the maxillary sinuses (left and right) from cone beam computed tomography (CBCT) images and use the segmented slices to reconstruct the 3D volume images. BACKGROUND The maxillary sinuses are located beneath the cheeks, above the teeth and on either sides of the nose. The maxillary sinuses (Fig. 1) drain into the nose through a hole located about half way up the side of the sinus wall. Cone beam computed tomography (CBCT) images can be used to view the sinuses. Segmentation of the sinuses followed by 3D visualization will assist the clinician in diagnosis and treatment planning. APPROACH Region Growing: We attempted to segment the slices using region growing. The following algorithm is used. First, construct the image of the same size containing only 1 s and 0 s. As there are only two regions to grow, there are initially only two 1 s and the other pixels are labelled 0. Second, construct two arrays of the same size as the image. One is for pixels that have already been grouped in the region while the other is for border information. In region 1, assign the border value of 1. In region 2, assign the border value of 2. Third, scan the entire image and update the information for the mean, sum and the number of pixels in the region. Finally, add a pixel (using 8-connectivity) to the region if it satisfies the criterion mean pixel value threshold value. It is obvious from Fig. 2 that the boundaries are not smooth using region-growing. When applied to the image with greater noise, the segmentation result is worse. Region growing is not stable when the image is noisy inside or at the boundaries. It also results in boundaries that are not smooth. The criteria used in the region growing is not adaptive. A global threshold value for determing whether regions to grow or not is also not reliable. 1 Student 2 Associate Professor 1

2 Fig.1: (a) maxillary sinus anatomy; one slice of through the maxillary sinus. (a) (c) (d) Fig.2: (a) Segmentation result using region growing on less noisy image; segmentation result using region growing on noisy image; (c) zoomed-in view on maxillary sinus region in (a); (d) zoomed-in view on maxillary sinus region in. 2

3 Level Set Method Geometric active contours have been proposed by Kass et al. [1] and Xu and Prince [2]. In implementing the traditional level set methods, it is necessary to keep the evolving level set function close to a signed distance function: φ = sign ( φ 0 )(1 φ ) (1) t In Li et al. s approach [3] the level set algorithm without re-initialization solves this difficult task and it involves the energy aspect. That energy functional consists of internal energy and external energy terms. The internal energy item penalizes the deviation of the level set function from a signed distance function, whereas the external energy term drives the motion of the zero level set to the desired image features such as object boundaries. The resulting evolution of the level set function is the gradient flow that minimizes the overall energy functional. In the project, we followed [3] in implementing the level set function: εg, λν,( φ) = λlg( φ) + νag( φ) (2) where ε is the external energy, λ > 0 and ν are constants, L ( φ ) is the length term, A ( φ ) is the area term, g is the edge indicator, and φ φ φ = μ [ Δφ div( )] + λδ ( φ ) div g + ν g ( ) t φ φ δ φ (3) When implementing Eq. (3), we should consider the Neumann boundary condition that the normal component of the gradient is specified at each point of the boundary. Comparison Between Level Set and Region Growing To clearly see why we choose the level set instead of region growing, we concentrate on two major aspects: the smoothness of the curve and the robustness. Comparing Figs. 3(a) and, we see the boundaries of the result obtained using the level set method are smoother. Comparing Figs. 3(c) and (d), region growing fails to segment when there is much noise present in the image. The main reason is that level set always evolves in the energy-minimizing direction. Though noise is present, it should not affect much of the result. RESULTS AND DISSCUSION Different Parameters in Level Set Time step: A larger time-step can make the evolution faster but may give rise to a false location of the curve. Increasing the time step can reduce the number of iterations but result in less accurate boundaries. It is always applicable to choose time step less than 10 and bigger than 1 to most images. Weighted length term λ : λ cannot be made so large since it significantly determines the shape (the length) in the curve evolution. To see this result clearly, use λ =6 and λ =16 for comparing. Weighted area term ν : The larger the value of ν, the faster it grows towards the actual shape. A negative value means that the curve is expanding while a positive value means that the curve is shrinking. If ν is small, the curve is not fully expanded; if ν is too big, the curve bends inward and incorrectly traces the boundaries. g g 3

4 (c) (d) Fig.3 : (a) Region growing on an image with less noise; level set on image with less noise; (c) region growing on noisy image; (d) level set segmentation result on noisy image. Robust Parameter Set From the experiment, we confined our test within the following limits: for 4 ν 1, step = 0.3; for 2 ν 7, step = 0.5. We applied the algorithm and plotted the area and length with respect to the two parameters. For the purpose of comparsion, we used a standard template (i.e., the parameters we used to achieve the best result; with ν = 1.5, λ = 5, the area of the best segmentated result was 9005 and the perimeter was 520. The results are shown in Figs. 4 to 6. We than tried different parameter combinations on segmentating the same slice and plotted the area and perimeter to obtain the plots in Figs. 7 and 8. The error here is defined as the absolute difference between the experimented one and the standard value chosen earlier. From the experiment, we located the following robust parameter set ( λ, ν ) is (-1.5:-1.3, 3.5:5) and (-3.4:1.6, 6:7), but the result is only suitable for the particular slice set we want to segment. In other words, given another slice set, if we do not change the time step and iteration, the stable set here may not be appropriate because different slice sets differ in the noise level. The final result is based on the segmented slices, and the 3D volume is constructed. To help the viewer see more clearly, we cut the volume in the x, y, z directions and use the overlay function to display the segmented result (Fig. 9). 4

5 Fig. 4: (a) Segmentation result using time step 2, iteration 600, λ =5, ν =-1.5; Segmentation result using time step 20, iteration 200, λ =5, ν =-1.5. (a) Fig. 5: (a) Segmentation result using time step 2, iteration 200, λ =16, ν =-1.5; Segmentation result using time step 2, iteration 200, λ =6, ν =-1.5. (a) Fig. 6: (a) Segmentation results using time step 2, iteration 200, λ =6, ν =-5; Segmentation result using time step 2, iteration 200, λ =6, ν =

6 (c) (d) Fig. 7: (a) Plot of object area and ν ( λ =5); plot of total perimeter and ν ( λ =5), (c) plot of object area and λ ( ν =-1.5); (d) plot of total perimeter and λ ( ν =-1.5). In all the experiments, number of iteration=1000, time step=2. (a) Fig. 8: (a) Area error with respect to both λ and ν ; Perimeter error with respect to λ and ν. 6

7 (c) (d) (e) (f) Fig. 9: (a) z cut of the final visualization; x cut of the final visualization; (c) y cut of the final visualization; (d) front view of the reconstructed result; (e) top view of the reconstructed result; (f) back view of the reconstructed result. 7

8 CONCLUSION Using level set methods to segment is more robust than using region growing methods. It is expressed in energy functional that consists of an internal energy term and an external energy term respectively. The internal energy item penalizes the deviation of the level set function from a signed distance function, whereas the external energy term drives the motion of the zero level set to the desired image features. The resulting evolution of the level set function is the gradient flow that minimizes the overall energy functional. λ, ν which are the coefficient of the length and the area term of the level set, respectively, play an important role on the evolution of the curve and therefore determines the segmentation result. Using the 200 segmented slices, we are able to build the 3D volume which has enabled the clinician to visualize the spatial relationship of internal anatomic air spaces bounded by internal bone with the external bone surface within the maxillary bone. References [1] M Kass, AWitkin, and D Terzopoulos, Snakes: active contour models, Int. J. Comp. Vis., vol. 1, pp , [2] C Xu and J Prince, Snakes, shapes, and gradient vector flow, IEEE Trans. Image Proc., vol. 7, pp , [3] CM Li, C Xu, CF Cui, MD Fox, Level set evolution without re-initialization: A New Variational Formulation, 2005 IEEE Computer Society Conference on Computer Vision and Pattern Recognition [4] L Evans, Partial Differential Equations, Providence: American Mathematical Society,

Level Set Evolution Without Re-initialization: A New Variational Formulation

Level Set Evolution Without Re-initialization: A New Variational Formulation Level Set Evolution Without Re-initialization: A New Variational Formulation Chunming Li 1, Chenyang Xu 2, Changfeng Gui 3, and Martin D. Fox 1 1 Department of Electrical and 2 Department of Imaging 3

More information

How To Write A Distance Regularized Level Set Evolution

How To Write A Distance Regularized Level Set Evolution IEEE TRANSACTIONS ON IMAGE PROCESSING, VOL. 19, NO. 12, DECEMBER 2010 3243 Distance Regularized Level Set Evolution and Its Application to Image Segmentation Chunming Li, Chenyang Xu, Senior Member, IEEE,

More information

Canny Edge Detection

Canny Edge Detection Canny Edge Detection 09gr820 March 23, 2009 1 Introduction The purpose of edge detection in general is to significantly reduce the amount of data in an image, while preserving the structural properties

More information

Morphological segmentation of histology cell images

Morphological segmentation of histology cell images Morphological segmentation of histology cell images A.Nedzved, S.Ablameyko, I.Pitas Institute of Engineering Cybernetics of the National Academy of Sciences Surganova, 6, 00 Minsk, Belarus E-mail abl@newman.bas-net.by

More information

Re-initialization Free Level Set Evolution via Reaction Diffusion

Re-initialization Free Level Set Evolution via Reaction Diffusion 1 Re-initialization Free Level Set Evolution via Reaction Diffusion Kaihua Zhang, Lei Zhang, Member, IEEE, Huihui Song and David Zhang, Fellow, IEEE Abstract This paper presents a novel reaction-diffusion

More information

LOCAL SURFACE PATCH BASED TIME ATTENDANCE SYSTEM USING FACE. indhubatchvsa@gmail.com

LOCAL SURFACE PATCH BASED TIME ATTENDANCE SYSTEM USING FACE. indhubatchvsa@gmail.com LOCAL SURFACE PATCH BASED TIME ATTENDANCE SYSTEM USING FACE 1 S.Manikandan, 2 S.Abirami, 2 R.Indumathi, 2 R.Nandhini, 2 T.Nanthini 1 Assistant Professor, VSA group of institution, Salem. 2 BE(ECE), VSA

More information

DEVELOPMENT OF AN IMAGING SYSTEM FOR THE CHARACTERIZATION OF THE THORACIC AORTA.

DEVELOPMENT OF AN IMAGING SYSTEM FOR THE CHARACTERIZATION OF THE THORACIC AORTA. DEVELOPMENT OF AN IMAGING SYSTEM FOR THE CHARACTERIZATION OF THE THORACIC AORTA. Juan Antonio Martínez Mera Centro Singular de Investigación en Tecnoloxías da Información Universidade de Santiago de Compostela

More information

Vision based Vehicle Tracking using a high angle camera

Vision based Vehicle Tracking using a high angle camera Vision based Vehicle Tracking using a high angle camera Raúl Ignacio Ramos García Dule Shu gramos@clemson.edu dshu@clemson.edu Abstract A vehicle tracking and grouping algorithm is presented in this work

More information

Classification of Fingerprints. Sarat C. Dass Department of Statistics & Probability

Classification of Fingerprints. Sarat C. Dass Department of Statistics & Probability Classification of Fingerprints Sarat C. Dass Department of Statistics & Probability Fingerprint Classification Fingerprint classification is a coarse level partitioning of a fingerprint database into smaller

More information

A Process Flow for Classification and Clustering of Fruit Fly Gene Expression Patterns

A Process Flow for Classification and Clustering of Fruit Fly Gene Expression Patterns A Process Flow for Classification and Clustering of Fruit Fly Gene Expression Patterns Andreas Heffel, Peter F. Stadler, Sonja J. Prohaska, Gerhard Kauer, Jens-Peer Kuska Santa Fe Institute Department

More information

Applications to Data Smoothing and Image Processing I

Applications to Data Smoothing and Image Processing I Applications to Data Smoothing and Image Processing I MA 348 Kurt Bryan Signals and Images Let t denote time and consider a signal a(t) on some time interval, say t. We ll assume that the signal a(t) is

More information

Constrained Tetrahedral Mesh Generation of Human Organs on Segmented Volume *

Constrained Tetrahedral Mesh Generation of Human Organs on Segmented Volume * Constrained Tetrahedral Mesh Generation of Human Organs on Segmented Volume * Xiaosong Yang 1, Pheng Ann Heng 2, Zesheng Tang 3 1 Department of Computer Science and Technology, Tsinghua University, Beijing

More information

Avizo Inspect New software for industrial inspection and materials R&D

Avizo Inspect New software for industrial inspection and materials R&D Avizo Inspect New software for industrial inspection and materials R&D Reduce your design cycle, inspection times, and meet higher-level quality standards at a lower cost. Avizo Inspect software streamlines

More information

Part-Based Recognition

Part-Based Recognition Part-Based Recognition Benedict Brown CS597D, Fall 2003 Princeton University CS 597D, Part-Based Recognition p. 1/32 Introduction Many objects are made up of parts It s presumably easier to identify simple

More information

Image Segmentation and Registration

Image Segmentation and Registration Image Segmentation and Registration Dr. Christine Tanner (tanner@vision.ee.ethz.ch) Computer Vision Laboratory, ETH Zürich Dr. Verena Kaynig, Machine Learning Laboratory, ETH Zürich Outline Segmentation

More information

How To Segmentate An Image

How To Segmentate An Image Edge Strength Functions as Shape Priors in Image Segmentation Erkut Erdem, Aykut Erdem, and Sibel Tari Middle East Technical University, Department of Computer Engineering, Ankara, TR-06531, TURKEY, {erkut,aykut}@ceng.metu.edu.tr,

More information

RUN-LENGTH ENCODING FOR VOLUMETRIC TEXTURE

RUN-LENGTH ENCODING FOR VOLUMETRIC TEXTURE RUN-LENGTH ENCODING FOR VOLUMETRIC TEXTURE Dong-Hui Xu, Arati S. Kurani, Jacob D. Furst, Daniela S. Raicu Intelligent Multimedia Processing Laboratory, School of Computer Science, Telecommunications, and

More information

ECE 533 Project Report Ashish Dhawan Aditi R. Ganesan

ECE 533 Project Report Ashish Dhawan Aditi R. Ganesan Handwritten Signature Verification ECE 533 Project Report by Ashish Dhawan Aditi R. Ganesan Contents 1. Abstract 3. 2. Introduction 4. 3. Approach 6. 4. Pre-processing 8. 5. Feature Extraction 9. 6. Verification

More information

Circle Object Recognition Based on Monocular Vision for Home Security Robot

Circle Object Recognition Based on Monocular Vision for Home Security Robot Journal of Applied Science and Engineering, Vol. 16, No. 3, pp. 261 268 (2013) DOI: 10.6180/jase.2013.16.3.05 Circle Object Recognition Based on Monocular Vision for Home Security Robot Shih-An Li, Ching-Chang

More information

Reflection and Refraction

Reflection and Refraction Equipment Reflection and Refraction Acrylic block set, plane-concave-convex universal mirror, cork board, cork board stand, pins, flashlight, protractor, ruler, mirror worksheet, rectangular block worksheet,

More information

RESEARCH PAPERS FACULTY OF MATERIALS SCIENCE AND TECHNOLOGY IN TRNAVA SLOVAK UNIVERSITY OF TECHNOLOGY IN BRATISLAVA

RESEARCH PAPERS FACULTY OF MATERIALS SCIENCE AND TECHNOLOGY IN TRNAVA SLOVAK UNIVERSITY OF TECHNOLOGY IN BRATISLAVA RESEARCH PAPERS FACULTY OF MATERIALS SCIENCE AND TECHNOLOGY IN TRNAVA SLOVAK UNIVERSITY OF TECHNOLOGY IN BRATISLAVA 2010 Number 29 3D MODEL GENERATION FROM THE ENGINEERING DRAWING Jozef VASKÝ, Michal ELIÁŠ,

More information

On the Relationship between Parametric and Geometric Active Contours

On the Relationship between Parametric and Geometric Active Contours In Proc. of 34th Asilomar Conference on Signals, Systems, and Computers, pp. 483-489, October 2000 On the Relationship between Parametric and Geometric Active Contours Chenyang Xu Center for Imaging Science

More information

How To Fix Out Of Focus And Blur Images With A Dynamic Template Matching Algorithm

How To Fix Out Of Focus And Blur Images With A Dynamic Template Matching Algorithm IJSTE - International Journal of Science Technology & Engineering Volume 1 Issue 10 April 2015 ISSN (online): 2349-784X Image Estimation Algorithm for Out of Focus and Blur Images to Retrieve the Barcode

More information

3D Modelling and Volume Rotation of 2D Medical Images

3D Modelling and Volume Rotation of 2D Medical Images 3D Modelling and Volume Rotation of 2D Medical Images Himani S. Bhatt 1, Sima K. Gonsai 2 Student (ME-CSE), Dept. of ECE, L. D. College of Engineering, Ahmedabad, India 1 Assistant Professor, Dept. of

More information

MODERN VOXEL BASED DATA AND GEOMETRY ANALYSIS SOFTWARE TOOLS FOR INDUSTRIAL CT

MODERN VOXEL BASED DATA AND GEOMETRY ANALYSIS SOFTWARE TOOLS FOR INDUSTRIAL CT MODERN VOXEL BASED DATA AND GEOMETRY ANALYSIS SOFTWARE TOOLS FOR INDUSTRIAL CT C. Reinhart, C. Poliwoda, T. Guenther, W. Roemer, S. Maass, C. Gosch all Volume Graphics GmbH, Heidelberg, Germany Abstract:

More information

Support Vector Machine-Based Human Behavior Classification in Crowd through Projection and Star Skeletonization

Support Vector Machine-Based Human Behavior Classification in Crowd through Projection and Star Skeletonization Journal of Computer Science 6 (9): 1008-1013, 2010 ISSN 1549-3636 2010 Science Publications Support Vector Machine-Based Human Behavior Classification in Crowd through Projection and Star Skeletonization

More information

Measuring Line Edge Roughness: Fluctuations in Uncertainty

Measuring Line Edge Roughness: Fluctuations in Uncertainty Tutor6.doc: Version 5/6/08 T h e L i t h o g r a p h y E x p e r t (August 008) Measuring Line Edge Roughness: Fluctuations in Uncertainty Line edge roughness () is the deviation of a feature edge (as

More information

Computer Aided Engineering (CAE) Techniques Applied To Hip Implant

Computer Aided Engineering (CAE) Techniques Applied To Hip Implant International Journal Of Computational Engineering Research (ijceronline.com) Vol. 3 Issue. 3 Computer Aided Engineering (CAE) Techniques Applied To Hip Implant 1, M. S. Abo_Elkhair, 2, M. E. Abo-Elnor,

More information

Subspace Analysis and Optimization for AAM Based Face Alignment

Subspace Analysis and Optimization for AAM Based Face Alignment Subspace Analysis and Optimization for AAM Based Face Alignment Ming Zhao Chun Chen College of Computer Science Zhejiang University Hangzhou, 310027, P.R.China zhaoming1999@zju.edu.cn Stan Z. Li Microsoft

More information

MDCT Technology. Kalpana M. Kanal, Ph.D., DABR Assistant Professor Department of Radiology University of Washington Seattle, Washington

MDCT Technology. Kalpana M. Kanal, Ph.D., DABR Assistant Professor Department of Radiology University of Washington Seattle, Washington MDCT Technology Kalpana M. Kanal, Ph.D., DABR Assistant Professor Department of Radiology University of Washington Seattle, Washington ACMP Annual Meeting 2008 - Seattle, WA Educational Objectives Historical

More information

Mathematics (Project Maths Phase 1)

Mathematics (Project Maths Phase 1) 2012. M128 S Coimisiún na Scrúduithe Stáit State Examinations Commission Leaving Certificate Examination, 2012 Sample Paper Mathematics (Project Maths Phase 1) Paper 2 Ordinary Level Time: 2 hours, 30

More information

Object Tracking System Using Motion Detection

Object Tracking System Using Motion Detection Object Tracking System Using Motion Detection Harsha K. Ingle*, Prof. Dr. D.S. Bormane** *Department of Electronics and Telecommunication, Pune University, Pune, India Email: harshaingle@gmail.com **Department

More information

When the fluid velocity is zero, called the hydrostatic condition, the pressure variation is due only to the weight of the fluid.

When the fluid velocity is zero, called the hydrostatic condition, the pressure variation is due only to the weight of the fluid. Fluid Statics When the fluid velocity is zero, called the hydrostatic condition, the pressure variation is due only to the weight of the fluid. Consider a small wedge of fluid at rest of size Δx, Δz, Δs

More information

Digital Imaging and Multimedia. Filters. Ahmed Elgammal Dept. of Computer Science Rutgers University

Digital Imaging and Multimedia. Filters. Ahmed Elgammal Dept. of Computer Science Rutgers University Digital Imaging and Multimedia Filters Ahmed Elgammal Dept. of Computer Science Rutgers University Outlines What are Filters Linear Filters Convolution operation Properties of Linear Filters Application

More information

Volume visualization I Elvins

Volume visualization I Elvins Volume visualization I Elvins 1 surface fitting algorithms marching cubes dividing cubes direct volume rendering algorithms ray casting, integration methods voxel projection, projected tetrahedra, splatting

More information

2. MATERIALS AND METHODS

2. MATERIALS AND METHODS Difficulties of T1 brain MRI segmentation techniques M S. Atkins *a, K. Siu a, B. Law a, J. Orchard a, W. Rosenbaum a a School of Computing Science, Simon Fraser University ABSTRACT This paper looks at

More information

Low-resolution Character Recognition by Video-based Super-resolution

Low-resolution Character Recognition by Video-based Super-resolution 2009 10th International Conference on Document Analysis and Recognition Low-resolution Character Recognition by Video-based Super-resolution Ataru Ohkura 1, Daisuke Deguchi 1, Tomokazu Takahashi 2, Ichiro

More information

Analecta Vol. 8, No. 2 ISSN 2064-7964

Analecta Vol. 8, No. 2 ISSN 2064-7964 EXPERIMENTAL APPLICATIONS OF ARTIFICIAL NEURAL NETWORKS IN ENGINEERING PROCESSING SYSTEM S. Dadvandipour Institute of Information Engineering, University of Miskolc, Egyetemváros, 3515, Miskolc, Hungary,

More information

Constrained curve and surface fitting

Constrained curve and surface fitting Constrained curve and surface fitting Simon Flöry FSP-Meeting Strobl (June 20, 2006), floery@geoemtrie.tuwien.ac.at, Vienna University of Technology Overview Introduction Motivation, Overview, Problem

More information

How To Improve Your Ct Image Quality

How To Improve Your Ct Image Quality Translating Protocols Between Scanner Manufacturer and Model Cynthia H. McCollough, PhD, FACR, FAAPM Professor of Radiologic Physics Director, CT Clinical Innovation Center Department of Radiology Mayo

More information

DESIGN, TRANSFORMATION AND ANIMATION OF HUMAN FACES

DESIGN, TRANSFORMATION AND ANIMATION OF HUMAN FACES DESIGN, TRANSFORMATION AND ANIMATION OF HUMAN FACES N.Magnenat-Thalmann, H.T.Minh, M.de Angelis, D.Thalmann Abstract Creation of new human faces for synthetic actors is a tedious and painful task. The

More information

VECTORAL IMAGING THE NEW DIRECTION IN AUTOMATED OPTICAL INSPECTION

VECTORAL IMAGING THE NEW DIRECTION IN AUTOMATED OPTICAL INSPECTION VECTORAL IMAGING THE NEW DIRECTION IN AUTOMATED OPTICAL INSPECTION Mark J. Norris Vision Inspection Technology, LLC Haverhill, MA mnorris@vitechnology.com ABSTRACT Traditional methods of identifying and

More information

Grade 6 Mathematics Performance Level Descriptors

Grade 6 Mathematics Performance Level Descriptors Limited Grade 6 Mathematics Performance Level Descriptors A student performing at the Limited Level demonstrates a minimal command of Ohio s Learning Standards for Grade 6 Mathematics. A student at this

More information

Automatic 3D Reconstruction via Object Detection and 3D Transformable Model Matching CS 269 Class Project Report

Automatic 3D Reconstruction via Object Detection and 3D Transformable Model Matching CS 269 Class Project Report Automatic 3D Reconstruction via Object Detection and 3D Transformable Model Matching CS 69 Class Project Report Junhua Mao and Lunbo Xu University of California, Los Angeles mjhustc@ucla.edu and lunbo

More information

More Local Structure Information for Make-Model Recognition

More Local Structure Information for Make-Model Recognition More Local Structure Information for Make-Model Recognition David Anthony Torres Dept. of Computer Science The University of California at San Diego La Jolla, CA 9093 Abstract An object classification

More information

Normalisation of 3D Face Data

Normalisation of 3D Face Data Normalisation of 3D Face Data Chris McCool, George Mamic, Clinton Fookes and Sridha Sridharan Image and Video Research Laboratory Queensland University of Technology, 2 George Street, Brisbane, Australia,

More information

Lecture 14. Point Spread Function (PSF)

Lecture 14. Point Spread Function (PSF) Lecture 14 Point Spread Function (PSF), Modulation Transfer Function (MTF), Signal-to-noise Ratio (SNR), Contrast-to-noise Ratio (CNR), and Receiver Operating Curves (ROC) Point Spread Function (PSF) Recollect

More information

Arrangements And Duality

Arrangements And Duality Arrangements And Duality 3.1 Introduction 3 Point configurations are tbe most basic structure we study in computational geometry. But what about configurations of more complicated shapes? For example,

More information

Modelling, Extraction and Description of Intrinsic Cues of High Resolution Satellite Images: Independent Component Analysis based approaches

Modelling, Extraction and Description of Intrinsic Cues of High Resolution Satellite Images: Independent Component Analysis based approaches Modelling, Extraction and Description of Intrinsic Cues of High Resolution Satellite Images: Independent Component Analysis based approaches PhD Thesis by Payam Birjandi Director: Prof. Mihai Datcu Problematic

More information

A Reliability Point and Kalman Filter-based Vehicle Tracking Technique

A Reliability Point and Kalman Filter-based Vehicle Tracking Technique A Reliability Point and Kalman Filter-based Vehicle Tracing Technique Soo Siang Teoh and Thomas Bräunl Abstract This paper introduces a technique for tracing the movement of vehicles in consecutive video

More information

Medical Image Segmentation of PACS System Image Post-processing *

Medical Image Segmentation of PACS System Image Post-processing * Medical Image Segmentation of PACS System Image Post-processing * Lv Jie, Xiong Chun-rong, and Xie Miao Department of Professional Technical Institute, Yulin Normal University, Yulin Guangxi 537000, China

More information

Chapter 10. All chapters, full text, free download, available at http://www.divingmedicine.info SINUS BAROTRAUMA ANATOMY OF THE SINUSES

Chapter 10. All chapters, full text, free download, available at http://www.divingmedicine.info SINUS BAROTRAUMA ANATOMY OF THE SINUSES Chapter 10 All chapters, full text, free download, available at http://www.divingmedicine.info SINUS BAROTRAUMA ANATOMY OF THE SINUSES The sinuses are air filled cavities contained within the bones of

More information

Visual Structure Analysis of Flow Charts in Patent Images

Visual Structure Analysis of Flow Charts in Patent Images Visual Structure Analysis of Flow Charts in Patent Images Roland Mörzinger, René Schuster, András Horti, and Georg Thallinger JOANNEUM RESEARCH Forschungsgesellschaft mbh DIGITAL - Institute for Information

More information

Image Analysis for Volumetric Industrial Inspection and Interaction

Image Analysis for Volumetric Industrial Inspection and Interaction Image Analysis for Volumetric Industrial Inspection and Interaction Rasmus Larsen Mads F. Hansen, Hildur Olafsdottir, Thomas H. Mosbech, Lasse F. Laursen DTU Informatics (CT) reconstruction from few projections

More information

3D Scanner using Line Laser. 1. Introduction. 2. Theory

3D Scanner using Line Laser. 1. Introduction. 2. Theory . Introduction 3D Scanner using Line Laser Di Lu Electrical, Computer, and Systems Engineering Rensselaer Polytechnic Institute The goal of 3D reconstruction is to recover the 3D properties of a geometric

More information

WHEN observing a medical image it is relatively easy

WHEN observing a medical image it is relatively easy 28 IEEE TRANSACTIONS ON MEDICAL IMAGING, VOL. 16, NO. 1, FEBRUARY 1997 Graphical Shape Templates for Automatic Anatomy Detection with Applications to MRI Brain Scans Yali Amit Abstract A new method of

More information

Face Model Fitting on Low Resolution Images

Face Model Fitting on Low Resolution Images Face Model Fitting on Low Resolution Images Xiaoming Liu Peter H. Tu Frederick W. Wheeler Visualization and Computer Vision Lab General Electric Global Research Center Niskayuna, NY, 1239, USA {liux,tu,wheeler}@research.ge.com

More information

Determining optimal window size for texture feature extraction methods

Determining optimal window size for texture feature extraction methods IX Spanish Symposium on Pattern Recognition and Image Analysis, Castellon, Spain, May 2001, vol.2, 237-242, ISBN: 84-8021-351-5. Determining optimal window size for texture feature extraction methods Domènec

More information

Adding and Subtracting Positive and Negative Numbers

Adding and Subtracting Positive and Negative Numbers Adding and Subtracting Positive and Negative Numbers Absolute Value For any real number, the distance from zero on the number line is the absolute value of the number. The absolute value of any real number

More information

Multiphysics Software Applications in Reverse Engineering

Multiphysics Software Applications in Reverse Engineering Multiphysics Software Applications in Reverse Engineering *W. Wang 1, K. Genc 2 1 University of Massachusetts Lowell, Lowell, MA, USA 2 Simpleware, Exeter, United Kingdom *Corresponding author: University

More information

Image Gradients. Given a discrete image Á Òµ, consider the smoothed continuous image ܵ defined by

Image Gradients. Given a discrete image Á Òµ, consider the smoothed continuous image ܵ defined by Image Gradients Given a discrete image Á Òµ, consider the smoothed continuous image ܵ defined by ܵ Ü ¾ Ö µ Á Òµ Ü ¾ Ö µá µ (1) where Ü ¾ Ö Ô µ Ü ¾ Ý ¾. ½ ¾ ¾ Ö ¾ Ü ¾ ¾ Ö. Here Ü is the 2-norm for the

More information

Lecture 9: Geometric map transformations. Cartographic Transformations

Lecture 9: Geometric map transformations. Cartographic Transformations Cartographic Transformations Analytical and Computer Cartography Lecture 9: Geometric Map Transformations Attribute Data (e.g. classification) Locational properties (e.g. projection) Graphics (e.g. symbolization)

More information

Copyright 2011 Casa Software Ltd. www.casaxps.com. Centre of Mass

Copyright 2011 Casa Software Ltd. www.casaxps.com. Centre of Mass Centre of Mass A central theme in mathematical modelling is that of reducing complex problems to simpler, and hopefully, equivalent problems for which mathematical analysis is possible. The concept of

More information

ISSN: 2321-7782 (Online) Volume 3, Issue 4, April 2015 International Journal of Advance Research in Computer Science and Management Studies

ISSN: 2321-7782 (Online) Volume 3, Issue 4, April 2015 International Journal of Advance Research in Computer Science and Management Studies ISSN: 2321-7782 (Online) Volume 3, Issue 4, April 2015 International Journal of Advance Research in Computer Science and Management Studies Research Article / Survey Paper / Case Study Available online

More information

BOUNDARY INTEGRAL EQUATIONS FOR MODELING ARBITRARY FLAW

BOUNDARY INTEGRAL EQUATIONS FOR MODELING ARBITRARY FLAW BOUNDARY INTEGRAL EQUATIONS FOR MODELING ARBITRARY FLAW GEOMETRIES IN ELECTRIC CURRENT INJECTION NDE A. P. Ewingl,2, C. Hall Barbosa3.4, T. A. Cruse 2, A. C. Brun03 and 1. P. Wikswo, Jr.l ldepartment of

More information

A Robust Method for Solving Transcendental Equations

A Robust Method for Solving Transcendental Equations www.ijcsi.org 413 A Robust Method for Solving Transcendental Equations Md. Golam Moazzam, Amita Chakraborty and Md. Al-Amin Bhuiyan Department of Computer Science and Engineering, Jahangirnagar University,

More information

Environmental Remote Sensing GEOG 2021

Environmental Remote Sensing GEOG 2021 Environmental Remote Sensing GEOG 2021 Lecture 4 Image classification 2 Purpose categorising data data abstraction / simplification data interpretation mapping for land cover mapping use land cover class

More information

Edge detection. (Trucco, Chapt 4 AND Jain et al., Chapt 5) -Edges are significant local changes of intensity in an image.

Edge detection. (Trucco, Chapt 4 AND Jain et al., Chapt 5) -Edges are significant local changes of intensity in an image. Edge detection (Trucco, Chapt 4 AND Jain et al., Chapt 5) Definition of edges -Edges are significant local changes of intensity in an image. -Edges typically occur on the boundary between two different

More information

Thresholding technique with adaptive window selection for uneven lighting image

Thresholding technique with adaptive window selection for uneven lighting image Pattern Recognition Letters 26 (2005) 801 808 wwwelseviercom/locate/patrec Thresholding technique with adaptive window selection for uneven lighting image Qingming Huang a, *, Wen Gao a, Wenjian Cai b

More information

Degree Reduction of Interval SB Curves

Degree Reduction of Interval SB Curves International Journal of Video&Image Processing and Network Security IJVIPNS-IJENS Vol:13 No:04 1 Degree Reduction of Interval SB Curves O. Ismail, Senior Member, IEEE Abstract Ball basis was introduced

More information

Mean-Shift Tracking with Random Sampling

Mean-Shift Tracking with Random Sampling 1 Mean-Shift Tracking with Random Sampling Alex Po Leung, Shaogang Gong Department of Computer Science Queen Mary, University of London, London, E1 4NS Abstract In this work, boosting the efficiency of

More information

APPLYING COMPUTER VISION TECHNIQUES TO TOPOGRAPHIC OBJECTS

APPLYING COMPUTER VISION TECHNIQUES TO TOPOGRAPHIC OBJECTS APPLYING COMPUTER VISION TECHNIQUES TO TOPOGRAPHIC OBJECTS Laura Keyes, Adam Winstanley Department of Computer Science National University of Ireland Maynooth Co. Kildare, Ireland lkeyes@cs.may.ie, Adam.Winstanley@may.ie

More information

TWO-DIMENSIONAL FINITE ELEMENT ANALYSIS OF FORCED CONVECTION FLOW AND HEAT TRANSFER IN A LAMINAR CHANNEL FLOW

TWO-DIMENSIONAL FINITE ELEMENT ANALYSIS OF FORCED CONVECTION FLOW AND HEAT TRANSFER IN A LAMINAR CHANNEL FLOW TWO-DIMENSIONAL FINITE ELEMENT ANALYSIS OF FORCED CONVECTION FLOW AND HEAT TRANSFER IN A LAMINAR CHANNEL FLOW Rajesh Khatri 1, 1 M.Tech Scholar, Department of Mechanical Engineering, S.A.T.I., vidisha

More information

Tracking Moving Objects In Video Sequences Yiwei Wang, Robert E. Van Dyck, and John F. Doherty Department of Electrical Engineering The Pennsylvania State University University Park, PA16802 Abstract{Object

More information

Introduction to the Finite Element Method

Introduction to the Finite Element Method Introduction to the Finite Element Method 09.06.2009 Outline Motivation Partial Differential Equations (PDEs) Finite Difference Method (FDM) Finite Element Method (FEM) References Motivation Figure: cross

More information

Automatic Detection of PCB Defects

Automatic Detection of PCB Defects IJIRST International Journal for Innovative Research in Science & Technology Volume 1 Issue 6 November 2014 ISSN (online): 2349-6010 Automatic Detection of PCB Defects Ashish Singh PG Student Vimal H.

More information

Highlight Removal by Illumination-Constrained Inpainting

Highlight Removal by Illumination-Constrained Inpainting Highlight Removal by Illumination-Constrained Inpainting Ping Tan Stephen Lin Long Quan Heung-Yeung Shum Microsoft Research, Asia Hong Kong University of Science and Technology Abstract We present a single-image

More information

Efficient initialization for constrained active surfaces, applications in 3D Medical images

Efficient initialization for constrained active surfaces, applications in 3D Medical images Efficient initialization for constrained active surfaces, applications in 3D Medical images Roberto Ardon 1,2 and Laurent D. Cohen 2 1 MEDISYS-Philips France, 51, rue Carnot, 92156 Suresnes, France 2 CEREMADE-Universit

More information

HANDS-FREE PC CONTROL CONTROLLING OF MOUSE CURSOR USING EYE MOVEMENT

HANDS-FREE PC CONTROL CONTROLLING OF MOUSE CURSOR USING EYE MOVEMENT International Journal of Scientific and Research Publications, Volume 2, Issue 4, April 2012 1 HANDS-FREE PC CONTROL CONTROLLING OF MOUSE CURSOR USING EYE MOVEMENT Akhil Gupta, Akash Rathi, Dr. Y. Radhika

More information

Lessons from Cardiac Ultrasound Image Analysis

Lessons from Cardiac Ultrasound Image Analysis Lessons from Cardiac Ultrasound Image Analysis Hemant D. Tagare Dept. of Diagnostic Radiology Dept. of Biomedical Engineering Yale University Cardiac vs. Tongue Image Processing Both organs are essentially

More information

An Overview of the Finite Element Analysis

An Overview of the Finite Element Analysis CHAPTER 1 An Overview of the Finite Element Analysis 1.1 Introduction Finite element analysis (FEA) involves solution of engineering problems using computers. Engineering structures that have complex geometry

More information

Norbert Schuff Professor of Radiology VA Medical Center and UCSF Norbert.schuff@ucsf.edu

Norbert Schuff Professor of Radiology VA Medical Center and UCSF Norbert.schuff@ucsf.edu Norbert Schuff Professor of Radiology Medical Center and UCSF Norbert.schuff@ucsf.edu Medical Imaging Informatics 2012, N.Schuff Course # 170.03 Slide 1/67 Overview Definitions Role of Segmentation Segmentation

More information

Computer Graphics. Geometric Modeling. Page 1. Copyright Gotsman, Elber, Barequet, Karni, Sheffer Computer Science - Technion. An Example.

Computer Graphics. Geometric Modeling. Page 1. Copyright Gotsman, Elber, Barequet, Karni, Sheffer Computer Science - Technion. An Example. An Example 2 3 4 Outline Objective: Develop methods and algorithms to mathematically model shape of real world objects Categories: Wire-Frame Representation Object is represented as as a set of points

More information

An introduction to OBJECTIVE ASSESSMENT OF IMAGE QUALITY. Harrison H. Barrett University of Arizona Tucson, AZ

An introduction to OBJECTIVE ASSESSMENT OF IMAGE QUALITY. Harrison H. Barrett University of Arizona Tucson, AZ An introduction to OBJECTIVE ASSESSMENT OF IMAGE QUALITY Harrison H. Barrett University of Arizona Tucson, AZ Outline! Approaches to image quality! Why not fidelity?! Basic premises of the task-based approach!

More information

Detection and Restoration of Vertical Non-linear Scratches in Digitized Film Sequences

Detection and Restoration of Vertical Non-linear Scratches in Digitized Film Sequences Detection and Restoration of Vertical Non-linear Scratches in Digitized Film Sequences Byoung-moon You 1, Kyung-tack Jung 2, Sang-kook Kim 2, and Doo-sung Hwang 3 1 L&Y Vision Technologies, Inc., Daejeon,

More information

MODEL BASED RECONSTRUCTION OF THE BONY KNEE ANATOMY FROM 3D ULTRASOUND IMAGES

MODEL BASED RECONSTRUCTION OF THE BONY KNEE ANATOMY FROM 3D ULTRASOUND IMAGES MODEL BASED RECONSTRUCTION OF THE BONY KNEE ANATOMY FROM 3D ULTRASOUND IMAGES Christoph Hänisch, Juliana Hsu, Erik Noorman, Klaus Radermacher Chair of Medical Engineering, Helmholtz-Institute for Biomedical

More information

Automated Process for Generating Digitised Maps through GPS Data Compression

Automated Process for Generating Digitised Maps through GPS Data Compression Automated Process for Generating Digitised Maps through GPS Data Compression Stewart Worrall and Eduardo Nebot University of Sydney, Australia {s.worrall, e.nebot}@acfr.usyd.edu.au Abstract This paper

More information

COMPARISON OF OBJECT BASED AND PIXEL BASED CLASSIFICATION OF HIGH RESOLUTION SATELLITE IMAGES USING ARTIFICIAL NEURAL NETWORKS

COMPARISON OF OBJECT BASED AND PIXEL BASED CLASSIFICATION OF HIGH RESOLUTION SATELLITE IMAGES USING ARTIFICIAL NEURAL NETWORKS COMPARISON OF OBJECT BASED AND PIXEL BASED CLASSIFICATION OF HIGH RESOLUTION SATELLITE IMAGES USING ARTIFICIAL NEURAL NETWORKS B.K. Mohan and S. N. Ladha Centre for Studies in Resources Engineering IIT

More information

PHOTOGRAMMETRIC TECHNIQUES FOR MEASUREMENTS IN WOODWORKING INDUSTRY

PHOTOGRAMMETRIC TECHNIQUES FOR MEASUREMENTS IN WOODWORKING INDUSTRY PHOTOGRAMMETRIC TECHNIQUES FOR MEASUREMENTS IN WOODWORKING INDUSTRY V. Knyaz a, *, Yu. Visilter, S. Zheltov a State Research Institute for Aviation System (GosNIIAS), 7, Victorenko str., Moscow, Russia

More information

Automatic Traffic Estimation Using Image Processing

Automatic Traffic Estimation Using Image Processing Automatic Traffic Estimation Using Image Processing Pejman Niksaz Science &Research Branch, Azad University of Yazd, Iran Pezhman_1366@yahoo.com Abstract As we know the population of city and number of

More information

A three point formula for finding roots of equations by the method of least squares

A three point formula for finding roots of equations by the method of least squares A three point formula for finding roots of equations by the method of least squares Ababu Teklemariam Tiruneh 1 ; William N. Ndlela 1 ; Stanley J. Nkambule 1 1 Lecturer, Department of Environmental Health

More information

Calculation of gravitational forces of a sphere and a plane

Calculation of gravitational forces of a sphere and a plane Sphere and plane 1 Calculation of gravitational forces of a sphere and a plane A paper by: Dipl. Ing. Matthias Krause, (CID) Cosmological Independent Department, Germany, 2007 Objective The purpose of

More information

2.2 Creaseness operator

2.2 Creaseness operator 2.2. Creaseness operator 31 2.2 Creaseness operator Antonio López, a member of our group, has studied for his PhD dissertation the differential operators described in this section [72]. He has compared

More information

10.1. Solving Quadratic Equations. Investigation: Rocket Science CONDENSED

10.1. Solving Quadratic Equations. Investigation: Rocket Science CONDENSED CONDENSED L E S S O N 10.1 Solving Quadratic Equations In this lesson you will look at quadratic functions that model projectile motion use tables and graphs to approimate solutions to quadratic equations

More information

Figure 2.1: Center of mass of four points.

Figure 2.1: Center of mass of four points. Chapter 2 Bézier curves are named after their inventor, Dr. Pierre Bézier. Bézier was an engineer with the Renault car company and set out in the early 196 s to develop a curve formulation which would

More information

Epipolar Geometry. Readings: See Sections 10.1 and 15.6 of Forsyth and Ponce. Right Image. Left Image. e(p ) Epipolar Lines. e(q ) q R.

Epipolar Geometry. Readings: See Sections 10.1 and 15.6 of Forsyth and Ponce. Right Image. Left Image. e(p ) Epipolar Lines. e(q ) q R. Epipolar Geometry We consider two perspective images of a scene as taken from a stereo pair of cameras (or equivalently, assume the scene is rigid and imaged with a single camera from two different locations).

More information

A Simple Feature Extraction Technique of a Pattern By Hopfield Network

A Simple Feature Extraction Technique of a Pattern By Hopfield Network A Simple Feature Extraction Technique of a Pattern By Hopfield Network A.Nag!, S. Biswas *, D. Sarkar *, P.P. Sarkar *, B. Gupta **! Academy of Technology, Hoogly - 722 *USIC, University of Kalyani, Kalyani

More information

Geometric Optics Converging Lenses and Mirrors Physics Lab IV

Geometric Optics Converging Lenses and Mirrors Physics Lab IV Objective Geometric Optics Converging Lenses and Mirrors Physics Lab IV In this set of lab exercises, the basic properties geometric optics concerning converging lenses and mirrors will be explored. The

More information

Colour Image Segmentation Technique for Screen Printing

Colour Image Segmentation Technique for Screen Printing 60 R.U. Hewage and D.U.J. Sonnadara Department of Physics, University of Colombo, Sri Lanka ABSTRACT Screen-printing is an industry with a large number of applications ranging from printing mobile phone

More information