SlideShare a Scribd company logo
1 of 8
Download to read offline
Localisation of the Brain in Fetal MRI
Using Bundled SIFT Features
Kevin Keraudren1
, Vanessa Kyriakopoulou2
, Mary Rutherford2
,
Joseph V. Hajnal2
and Daniel Rueckert1
1
Biomedical Image Analysis Group, Imperial College London
2
Centre for the Developing Brain & Department Biomedical Engineering Division of
Imaging Sciences, King’s College London
Abstract. Fetal MRI is a rapidly emerging diagnostic imaging tool. Its
main focus is currently on brain imaging, but there is a huge potential
for whole body studies. We propose a method for accurate and robust
localisation of the fetal brain in MRI when the image data is acquired as
a stack of 2D slices misaligned due to fetal motion. We first detect possi-
ble brain locations in 2D images with a Bag-of-Words model using SIFT
features aggregated within Maximally Stable Extremal Regions (called
bundled SIFT), followed by a robust fitting of an axis-aligned 3D box
to the selected regions. We rely on prior knowledge of the fetal brain
development to define size and shape constraints. In a cross-validation
experiment, we obtained a median error distance of 5.7mm from the
ground truth and no missed detection on a database of 59 fetuses. This
2D approach thus allows a robust detection even in the presence of sub-
stantial fetal motion.
1 Introduction
Fetal Magnetic Resonance Imaging (MRI) has had great successes in the last
years with the development of motion correction methods providing high quality
isotropic volumes of the brain [7,11], thus enabling a better understanding of
the fetal brain development. Such reconstruction methods typically rely on data
acquired as stacks of 2D slices of real-time MRI, freezing in-plane motion. In
order to reduce the scan time while avoiding slice cross-talk artefacts, contiguous
slices are not acquired sequentially but in an interleaved manner. Slices are
quite often misaligned due to fetal motion and form an inconsistent 3D volume
(Figure 1). Motion correction is the registration of 2D slices of the fetal brain
to an ideal 3D volume. Cropping a box around the brain is a prerequisite to
exclude maternal tissues that can make the registration fail. We thus propose a
method to automatically find a precise bounding box around the brain in order
to speed-up the preprocessing steps of the motion correction procedure.
Related work Regression Forests perform the task of organ detection by learn-
ing a regression between image features, such as 3D Haar-like features, and the
2 K. Keraudren, V. Kyriakopoulou, M. Rutherford, J.V. Hajnal, D. Rueckert
Fig. 1: Example scan with the native 2D slices in sagittal orientation. A zoomed
patch of the coronal section highlights interleaving artefacts due to fetal motion.
offset to the corners of the bounding boxes of organs [10]. By treating the locali-
sation problem as a regression problem, it implies some rough alignment between
part of the training database and the new data. An adult patient usually lies
inside the scanner in a standard orientation, but this is not the case of a fe-
tus. Moreover, the fetus is surrounded by maternal tissues instead of air, thus
hindering a straightforward application of such a method.
Marginal Space Learning (MSL) is a more general framework that can be
described as an optimized sliding window search with a hierarchy of coarse-
to-fine boosting-based organ detectors [15]. Learning is performed on affinely
registered datasets, and the search covers all locations, scales and orientations.
Steerable features apply a rotated grid over the image to sample features in order
to perform local rotation and scaling without transforming the whole volume,
thus making the search more computationally feasible. MSL has been successfully
applied to various problems, such as the localisation of the four heart chambers
in adult CT scans [15], semantic browsing of the fetal body in 2D ultrasound
[2], or automatic fetal face detection in 3D ultrasound [4].
To the best of our knowledge, only two fully automated localisation methods
of the fetal brain in MRI have been proposed so far in the literature: Anquez
et al. [1] proposed to start from detecting the eyes with 3D template matching,
followed by a segmentation of the brain using a 2D graph-cut segmentation of
the mid-sagittal slice rotated at several angles. The best matching segmentation
is selected and used to initialise a 3D graph-cut segmentation. Ison et al. [6]
proposed a more general method based on a two-stage Random Forest classifier:
the first stage distinguishes maternal tissues from fetal head tissues, while the
second stage classifies fetal head tissues into 6 classes. The last step uses a
Markov Random Field appearance model to establish an orientation of the brain
based on the centroids of the previously identified fetal tissues.
Overview In this paper, we chose to focus on the task of finding an axis-aligned
bounding box for the fetal brain. This is in contrast with [6] which aimed at find-
ing an oriented bounding box, and [1] which aimed at segmenting the skull bone
Localisation of the Brain in Fetal MRI Using Bundled SIFT Features 3
content. This relaxation of the problem enables us to focus on positioning a tight
bounding box on the brain while dealing with 2D slices misaligned or corrupted
due to fetal motion. Although acquisitions are carried out in conventional orien-
tations, there is unpredictability in the positioning of the fetus. Hence, similarly
to Marginal Space Learning, we decided to decompose the search space by per-
forming a 2D detection process before accumulating the votes in 3D, and we
removed the scale component by inferring it from the gestational age.
In a first stage, Maximally Stable Extremal Regions (MSER [9]) are extracted
from the 2D slices and approximated by ellipses. Then, the regions whose size
and aspect ratio conform with prior knowledge of the fetal development are
classified into brain or not-brain based on histograms of the SIFT features found
within the fitted ellipses (bundled SIFT [14]), following a Bag-of-Words model
(BOW [3]). Finally, a RANdom SAmple Consensus procedure (RANSAC [5])
is performed to find a best fitting 3D cube whose dimensions are inferred from
prior knowledge. This localisation pipeline is summarised in Figure 2. In the
remainder of this paper, we will describe in more details our proposed method
and evaluate it in a 10-fold cross validation, comparing it to a sliding window
BOW using 2D or 3D SIFT features.
Fig. 2: Proposed pipeline for localising the fetal brain.
2 Method
2.1 Detection and selection of MSER regions
Maximally Stable Extremal Regions (MSER), introduced by Matas et al. [9], are
a common feature detection method in computer vision. MSER regions can be
defined as sets of connected pixels stable over a large range of intensity thresh-
olds. Such regions can be characterised by homogeneous intensity distributions
and high intensity differences at their boundary. Each region is defined by a seed
pixel and a lower and upper intensity thresholds, the whole region resulting from
a floodfill operation. In the case of fetal T2 MR images, MSER regions are well
suited to the task of selecting candidate regions for the brain as the skull content
appears much brighter than the surrounding bone and skin tissues.
In its first stages, our localisation pipeline proceeds slice by slice, working on
2D images, and starts by detecting candidate MSER regions Ri which are sets
4 K. Keraudren, V. Kyriakopoulou, M. Rutherford, J.V. Hajnal, D. Rueckert
of connected pixels. An ellipse Ei is then fitted to each Ri with a least-squares
minimization. As the shape of the brain is well approximated by an ellipsoid, the
ellipses Ei have the ability to recover the shape of the brain even if the detected
Ri only corresponds to a segment of cerebrospinal fluid (CSF, Figure 3.b), or
amniotic fluid surrounding the fetal head (Figure 3.c). The ellipses Ei are then
filtered by size and aspect ratio using the gestational age combined with prior
knowledge of the fetal development, namely the occipitofrontal diameter, OFD,
and the biparietal diameter, BPD [12]. This prior knowledge is obtained from
2D ultrasound studies [12] and is discussed in more details in Section 3.
(a) (b) (c)
Fig. 3: Example MSER regions Ri (red overlay) and their fitted ellipses Ei (green
dashes): (a) skull bone content, (b) cerebrospinal fluid, (c) amniotic fluid.
2.2 Classification of selected MSER regions using bundled SIFT
features
MSER regions alone do not provide a descriptor that can be used for classifi-
cation. As a versatile rotation invariant classification framework, we chose to
use a Bag-of-Words model by computing for each region Ri the histogram of
the SIFT features (Scale-Invariant Feature Transform [8]) within the ellipse Ei,
similarly to the bundled SIFT features of Wu et al. [14]. In the Bag-of-Words
method for image classification presented by Csurka et al. [3], SIFT features
are extracted from training images and a set of words V (visual vocabulary) is
obtained through k-means clustering, each word being the centroid of a cluster.
Each SIFT feature fSIFT can then be associated to its nearest neighbour fNN ∈ V
to build a histogram of words. A Support Vector Machine (SVM) classifier is
then used to assign a class to this histogram.
SIFT features are the association of a keypoint corresponding to a local
extrema in a scale-space Gaussian pyramid (blob) and a descriptor built from
histograms of gradient orientations. The blob detection process provides scale
invariance to the descriptor, whereas rotation invariance is obtained from the
main gradient orientation over the blob. Rotation invariance helps accommodate
the unknown orientation of the fetal brain, while scale invariance attenuates the
variations due to gestational age.
Localisation of the Brain in Fetal MRI Using Bundled SIFT Features 5
In the learning stage of our pipeline, all SIFT features are extracted from
the 2D slices of all training scans and clustered using a k-means algorithm.
The N cluster centers form the vocabulary V. Then, MSER regions Ri are
detected and selected (Section 2.1). The ellipses Ei centered on the brain are
kept as positive examples, while those further than OFD/2 are kept as negative
examples. For each Ei, a histogram of bundled SIFT features is computed. After
an L2 normalisation, the histograms are used to train an SVM classifier. As in
[3], a linear kernel SVM has been used. In the detection stage, for each MSER
region selected, a normalised histogram of SIFT features is computed, and the
previously trained SVM is used to classify regions as brain or not-brain. Figure
4.a shows an example slice with all the candidate MSER regions, while Figure
4.b shows the result of the selection and classification processes.
(a) (b)
Fig. 4: (a) All detected MSER regions. (b) MSER regions are filtered based on
their size and aspect ratio, then classified according to their histograms of SIFT
features (green for brain regions, red for not-brain).
2.3 RANSAC fitting of a cube
The 2D detection works reliably in mid-brain slices but not in peripheral slices
of the brain. Estimating a 3D box is thus important for a reliable estimate of the
entire brain region. As the set of candidate regions classified as brain by the SVM
classifier may still contain outliers, we perform a RANSAC procedure [5] to find
a best fitting position for a 3D axis-aligned bounding cube. We thus randomly
select a small set of ellipses Ei and use their centroid to define a bounding cube
of width OFD. For a region Ri to be considered an inlier, it must be completely
included in this cube and the center of the ellipse Ei must be at a small distance
from the cube center. The cube position is then refined by taking the centroid
of these inliers. This process is repeated a predefined number of times, typically
1000 times, and the cube with the largest number of inliers is selected.
3 Experiments
6 K. Keraudren, V. Kyriakopoulou, M. Rutherford, J.V. Hajnal, D. Rueckert
Implementation To gain prior knowledge on the expected size of the brain
knowing the gestational age, we used a 2D ultrasound study from Snijders and
Nicolaides [12] performed on 1040 normal singleton pregnancies. The 5th
and
95th
centile values of OFD and BPD have been used to define the acceptable
size and aspect ratio for the selected MSER regions (Section 2.1). The size of
the detected bounding box in the robust fitting procedure (Section 2.3) has been
set to the 95th
centile of OFD in order to contain the whole fetal brain. The size
N of the BOW vocabulary (Section 2.2) has been set to 400. The automated
detection process takes less than a minute on a normal PC.
Data Fetal MRI was performed on a 1.5T MRI system, T2-weighted dynamic
ssTSE images were obtained with the following scanning parameters: TR 15000ms,
TE 160ms, slice thickness of 2.5mm, slice overlap of 1.5mm, flip angle 90◦
. The
in-plane resolution varies between 0.94 and 1.25mm, with the number of inter-
leaved packets ranging from 4 to 6. Our database includes 59 healthy fetuses
whose gestational age range from 22 to 39 weeks, with 5 fetuses scanned twice
and 1 three times, amounting to a total of 66 datasets. Each dataset consists of
3 to 8 scans acquired in three standard orthogonal planes, representing a total of
117 sagittal, 113 coronal and 228 transverse scans. We performed a 10-fold cross
validation, with 39 training subjects and 20 testing subjects for each fold. For
the ground truth, bounding boxes have been tightly drawn around the brain.
Results The brain localisation results are summarised in Table 1, whereas ex-
amples of detected bounding boxes and their corresponding ground truth are
shown in Figure 5 and in the supplementary material.1
We compared our method
against sliding a window of fixed size OFD with a Random Forest classifier on
histograms of 2D or 3D SIFT features, using the extension to 3D of SIFT pro-
posed in [13]. For each stack of slices, we measured the distance between the
center of the ground truth bounding box and the detected bounding box. Sim-
ilarly to [6], we defined a correct detection as 70% of the brain being included
in the detected box. 2D SIFT features performed better than 3D SIFT features,
which can be attributed to the inconsistency of the 3D data, whereas the bun-
dled SIFT drastically improved the localisation accuracy with an error below
5.7mm in more than 50% of cases. This greater precision comes from applying
a classifier only at specific locations (MSER regions) instead of all pixels, thus
resulting in a more localised probability map. This localisation of the center of
the brain shows improved results compared to [6] who reported a median error
of 10mm in the detection of 6 landmarks corresponding to centroids of fetal head
tissues. However, contrary to [6], the orientation of the brain is not determined.
Our method is more general than [1] as it does not rely on localising the eyes.
There has been no false detection or missed detection with bundled SIFT, with
a worst case error of 25mm presented in Figure 5.e. In 85% of cases, the detected
bounding box contains entirely the ground truth bounding box.
The prior knowledge gained from the gestational age plays an important role
in disregarding most of the detected MSER regions. Indeed, on average during
1
www.doc.ic.ac.uk/~kpk09/MICCAI-451.mp4
Localisation of the Brain in Fetal MRI Using Bundled SIFT Features 7
Table 1: Detection results averaged over the cross validation, all orientations
combined.
Error (mm)
Centiles 2D SIFT 3D SIFT Bundled SIFT
25th
10.9 14.8 4.0
50th
15.5 20.8 5.7
75th
20.5 30.4 8.4
Detection 98% 85% 100%
Complete brain 38% 23% 85%
(a) (b) (c) (d) (e)
Fig. 5: Examples of detected bounding boxes (green) and ground truth (red).
a), b) and c) are respectively sagittal, coronal and transverse acquisitions of
different subjects. d) and e) show detections with the largest error, which can
be attributed to the presence of the maternal bladder near the fetal head.
the 10-fold cross validation, 98% of the candidate regions are disregarded in the
first stage of the pipeline. As a comparison, the SVM classifier further disregards
41% of the remaining candidates, and the RANSAC procedure removes 18%
outliers. No distinction has been made between sagittal, transverse or coronal
acquisitions, which is another advantage of the proposed method.
When using normal growth charts to define a realistic range of sizes of the
brain, our goal is to remove improbable detections while still allowing a large
variation in brain size. From standard growth charts, extending to include 99.6%
of subjects corresponds to a 1 week error. Simulating extreme growth restriction
by adding a 5 weeks error in all gestational ages, the detection rate is still 91%.
4 Conclusion
We presented a novel automatic localisation method for the fetal brain in MRI.
Proceeding slice by slice, MSER regions are first detected and filtered by size
and aspect ratio before being classified using histograms of SIFT features. An ex-
pected size of the brain is inferred from the gestational age and prior knowledge
of the fetal development. Finally, a 3D bounding cube is fitted to the selected
regions with a RANSAC procedure. The method is not specific to the scan ori-
entation, with a median distance error of 5.7mm from the ground truth. Further
8 K. Keraudren, V. Kyriakopoulou, M. Rutherford, J.V. Hajnal, D. Rueckert
work will be required to integrate this brain localisation method in a motion
correction pipeline, such as automatically masking out maternal tissues.
References
1. Anquez, J., Angelini, E., Bloch, I.: Automatic Segmentation of Head Structures on
Fetal MRI. In: ISBI. pp. 109–112. IEEE (2009)
2. Carneiro, G., Georgescu, B., Good, S., Comaniciu, D.: Detection and Measure-
ment of Fetal Anatomies from Ultrasound Images using a Constrained Probabilistic
Boosting Tree. IEEE Transactions on Medical Imaging 27(9), 1342–1355 (2008)
3. Csurka, G., Dance, C., Fan, L., Willamowski, J., Bray, C.: Visual Categorization
With Bags of Keypoints. In: Workshop on Statistical Learning in Computer Vision,
ECCV. vol. 1, p. 22 (2004)
4. Feng, S., Zhou, S., Good, S., Comaniciu, D.: Automatic Fetal Face Detection from
Ultrasound Volumes via Learning 3D and 2D Information. In: CVPR. pp. 2488–
2495. IEEE (2009)
5. Fischler, M., Bolles, R.: Random Sample Consensus: A Paradigm for Model Fitting
with Applications to Image Analysis and Automated Cartography. Communica-
tions of the ACM 24(6), 381–395 (1981)
6. Ison, M., Donner, R., Dittrich, E., Kasprian, G., Prayer, D., Langs, G.: Fully
Automated Brain Extraction and Orientation in Raw Fetal MRI. In: Workshop on
Paediatric and Perinatal Imaging, MICCAI. pp. 17–24. Springer (2012)
7. Jiang, S., Xue, H., Glover, A., Rutherford, M., Rueckert, D., Hajnal, J.: MRI of
Moving Subjects using Multislice Snapshot Images with Volume Reconstruction
(SVR): Application to Fetal, Neonatal, and Adult Brain Studies. IEEE Transac-
tions on Medical Imaging 26(7), 967–980 (2007)
8. Lowe, D.: Object Recognition from Local Scale-invariant Features. In: ICCV. vol. 2,
pp. 1150–1157. IEEE (1999)
9. Matas, J., Chum, O., Urban, M., Pajdla, T.: Robust Wide Baseline Stereo from
Maximally Stable Extremal Regions. In: BMVC. pp. 384–393 (2002)
10. Pauly, O., Glocker, B., Criminisi, A., Mateus, D., M¨oller, A., Nekolla, S., Navab,
N.: Fast Multiple Organ Detection and Localization in Whole-body MR Dixon
Sequences. In: MICCAI. pp. 239–247. Springer (2011)
11. Rousseau, F., Glenn, O., Iordanova, B., Rodriguez-Carranza, C., Vigneron, D.,
Barkovich, J., Studholme, C., et al.: Registration-based Approach for Reconstruc-
tion of High Resolution In Utero Fetal MR Brain Images. Academic Radiology
13(9), 1072–1081 (2006)
12. Snijders, R., Nicolaides, K.: Fetal Biometry at 14–40 Weeks’ Gestation. Ultrasound
in Obstetrics & Gynecology 4(1), 34–48 (2003)
13. Toews, M., Wells III, W.M.: Efficient and Robust Model-to-Image Alignment using
3D Scale-Invariant Features. Medical image analysis (2012)
14. Wu, Z., Ke, Q., Isard, M., Sun, J.: Bundling Features for Large Scale Partial-
duplicate Web Image Search. In: CVPR. pp. 25–32. IEEE (2009)
15. Zheng, Y., Barbu, A., Georgescu, B., Scheuering, M., Comaniciu, D.: Four-chamber
Heart Modeling and Automatic Segmentation for 3D Cardiac CT Volumes using
Marginal Space Learning and Steerable Features. IEEE Transactions on Medical
Imaging 27(11), 1668–1681 (2008)

More Related Content

What's hot

Supraorbital Margins for Identification of Sexual Dimorphism and Age Detectio...
Supraorbital Margins for Identification of Sexual Dimorphism and Age Detectio...Supraorbital Margins for Identification of Sexual Dimorphism and Age Detectio...
Supraorbital Margins for Identification of Sexual Dimorphism and Age Detectio...Associate Professor in VSB Coimbatore
 
Final Progress Report- Farzana
Final Progress Report- FarzanaFinal Progress Report- Farzana
Final Progress Report- FarzanaFarzana Ali
 
Extraction of Circle of Willis from 2D Magnetic Resonance Angiograms
Extraction of Circle of Willis from 2D Magnetic Resonance AngiogramsExtraction of Circle of Willis from 2D Magnetic Resonance Angiograms
Extraction of Circle of Willis from 2D Magnetic Resonance AngiogramsIDES Editor
 
Human recognition system based on retina vascular network characteristics
Human recognition system based on retina vascular network characteristicsHuman recognition system based on retina vascular network characteristics
Human recognition system based on retina vascular network characteristicscbnaikodi
 
IEEE Medical image Title and Abstract 2016
IEEE Medical image Title and Abstract 2016 IEEE Medical image Title and Abstract 2016
IEEE Medical image Title and Abstract 2016 tsysglobalsolutions
 
HIGH RESOLUTION MRI BRAIN IMAGE SEGMENTATION TECHNIQUE USING HOLDER EXPONENT
HIGH RESOLUTION MRI BRAIN IMAGE SEGMENTATION TECHNIQUE USING HOLDER EXPONENTHIGH RESOLUTION MRI BRAIN IMAGE SEGMENTATION TECHNIQUE USING HOLDER EXPONENT
HIGH RESOLUTION MRI BRAIN IMAGE SEGMENTATION TECHNIQUE USING HOLDER EXPONENTijsc
 
New Approach of MA Detection & Grading Using Different Classifiers
New Approach of MA Detection & Grading Using Different ClassifiersNew Approach of MA Detection & Grading Using Different Classifiers
New Approach of MA Detection & Grading Using Different ClassifiersIJSTA
 
Super Resolution Microscopy publications 2012
Super Resolution Microscopy publications 2012Super Resolution Microscopy publications 2012
Super Resolution Microscopy publications 2012Firstscientix
 
Spike removal through multiscale wavelet and entropy analysis of ocular motor...
Spike removal through multiscale wavelet and entropy analysis of ocular motor...Spike removal through multiscale wavelet and entropy analysis of ocular motor...
Spike removal through multiscale wavelet and entropy analysis of ocular motor...Giuseppe Fineschi
 
Electrode Position Optimization For Facial E M G Measurements For Human Comp...
Electrode Position Optimization For Facial  E M G Measurements For Human Comp...Electrode Position Optimization For Facial  E M G Measurements For Human Comp...
Electrode Position Optimization For Facial E M G Measurements For Human Comp...guest9539e6
 
Retinal Macular Edema Detection Using Optical Coherence Tomography Images
Retinal Macular Edema Detection Using Optical Coherence Tomography ImagesRetinal Macular Edema Detection Using Optical Coherence Tomography Images
Retinal Macular Edema Detection Using Optical Coherence Tomography ImagesIOSRJVSP
 
Early detection of glaucoma through retinal nerve fiber layer analysis using ...
Early detection of glaucoma through retinal nerve fiber layer analysis using ...Early detection of glaucoma through retinal nerve fiber layer analysis using ...
Early detection of glaucoma through retinal nerve fiber layer analysis using ...eSAT Publishing House
 
Microscopy images segmentation algorithm based on shearlet neural network
Microscopy images segmentation algorithm based on shearlet neural networkMicroscopy images segmentation algorithm based on shearlet neural network
Microscopy images segmentation algorithm based on shearlet neural networkjournalBEEI
 
Efficient Brain Tumor Detection Using Wavelet Transform
Efficient Brain Tumor Detection Using Wavelet TransformEfficient Brain Tumor Detection Using Wavelet Transform
Efficient Brain Tumor Detection Using Wavelet TransformIJERA Editor
 
Tracking times in temporal patterns embodied in intra-cortical data for cont...
Tracking times in temporal patterns embodied in  intra-cortical data for cont...Tracking times in temporal patterns embodied in  intra-cortical data for cont...
Tracking times in temporal patterns embodied in intra-cortical data for cont...IJECEIAES
 

What's hot (19)

Supraorbital Margins for Identification of Sexual Dimorphism and Age Detectio...
Supraorbital Margins for Identification of Sexual Dimorphism and Age Detectio...Supraorbital Margins for Identification of Sexual Dimorphism and Age Detectio...
Supraorbital Margins for Identification of Sexual Dimorphism and Age Detectio...
 
M1803047782
M1803047782M1803047782
M1803047782
 
Final Progress Report- Farzana
Final Progress Report- FarzanaFinal Progress Report- Farzana
Final Progress Report- Farzana
 
Extraction of Circle of Willis from 2D Magnetic Resonance Angiograms
Extraction of Circle of Willis from 2D Magnetic Resonance AngiogramsExtraction of Circle of Willis from 2D Magnetic Resonance Angiograms
Extraction of Circle of Willis from 2D Magnetic Resonance Angiograms
 
Human recognition system based on retina vascular network characteristics
Human recognition system based on retina vascular network characteristicsHuman recognition system based on retina vascular network characteristics
Human recognition system based on retina vascular network characteristics
 
IEEE Medical image Title and Abstract 2016
IEEE Medical image Title and Abstract 2016 IEEE Medical image Title and Abstract 2016
IEEE Medical image Title and Abstract 2016
 
HIGH RESOLUTION MRI BRAIN IMAGE SEGMENTATION TECHNIQUE USING HOLDER EXPONENT
HIGH RESOLUTION MRI BRAIN IMAGE SEGMENTATION TECHNIQUE USING HOLDER EXPONENTHIGH RESOLUTION MRI BRAIN IMAGE SEGMENTATION TECHNIQUE USING HOLDER EXPONENT
HIGH RESOLUTION MRI BRAIN IMAGE SEGMENTATION TECHNIQUE USING HOLDER EXPONENT
 
New Approach of MA Detection & Grading Using Different Classifiers
New Approach of MA Detection & Grading Using Different ClassifiersNew Approach of MA Detection & Grading Using Different Classifiers
New Approach of MA Detection & Grading Using Different Classifiers
 
Ijcatr04051013
Ijcatr04051013Ijcatr04051013
Ijcatr04051013
 
Super Resolution Microscopy publications 2012
Super Resolution Microscopy publications 2012Super Resolution Microscopy publications 2012
Super Resolution Microscopy publications 2012
 
Invited bizzi
Invited bizziInvited bizzi
Invited bizzi
 
Spike removal through multiscale wavelet and entropy analysis of ocular motor...
Spike removal through multiscale wavelet and entropy analysis of ocular motor...Spike removal through multiscale wavelet and entropy analysis of ocular motor...
Spike removal through multiscale wavelet and entropy analysis of ocular motor...
 
Electrode Position Optimization For Facial E M G Measurements For Human Comp...
Electrode Position Optimization For Facial  E M G Measurements For Human Comp...Electrode Position Optimization For Facial  E M G Measurements For Human Comp...
Electrode Position Optimization For Facial E M G Measurements For Human Comp...
 
Retinal Macular Edema Detection Using Optical Coherence Tomography Images
Retinal Macular Edema Detection Using Optical Coherence Tomography ImagesRetinal Macular Edema Detection Using Optical Coherence Tomography Images
Retinal Macular Edema Detection Using Optical Coherence Tomography Images
 
Early detection of glaucoma through retinal nerve fiber layer analysis using ...
Early detection of glaucoma through retinal nerve fiber layer analysis using ...Early detection of glaucoma through retinal nerve fiber layer analysis using ...
Early detection of glaucoma through retinal nerve fiber layer analysis using ...
 
Microscopy images segmentation algorithm based on shearlet neural network
Microscopy images segmentation algorithm based on shearlet neural networkMicroscopy images segmentation algorithm based on shearlet neural network
Microscopy images segmentation algorithm based on shearlet neural network
 
The 5th WBA Hackathon Orientation -- Cerenaut Part
The 5th WBA Hackathon Orientation  -- Cerenaut PartThe 5th WBA Hackathon Orientation  -- Cerenaut Part
The 5th WBA Hackathon Orientation -- Cerenaut Part
 
Efficient Brain Tumor Detection Using Wavelet Transform
Efficient Brain Tumor Detection Using Wavelet TransformEfficient Brain Tumor Detection Using Wavelet Transform
Efficient Brain Tumor Detection Using Wavelet Transform
 
Tracking times in temporal patterns embodied in intra-cortical data for cont...
Tracking times in temporal patterns embodied in  intra-cortical data for cont...Tracking times in temporal patterns embodied in  intra-cortical data for cont...
Tracking times in temporal patterns embodied in intra-cortical data for cont...
 

Similar to Automatic Localisation of the Brain in Fetal MRI (Miccai 2013)

Automatic Localisation of the Brain in Fetal MRI (Miccai 2013 poster)
Automatic Localisation of the Brain in Fetal MRI (Miccai 2013 poster)Automatic Localisation of the Brain in Fetal MRI (Miccai 2013 poster)
Automatic Localisation of the Brain in Fetal MRI (Miccai 2013 poster)Kevin Keraudren
 
Automated Fetal Brain Segmentation from 2D MRI Slices for Motion Correction (...
Automated Fetal Brain Segmentation from 2D MRI Slices for Motion Correction (...Automated Fetal Brain Segmentation from 2D MRI Slices for Motion Correction (...
Automated Fetal Brain Segmentation from 2D MRI Slices for Motion Correction (...Kevin Keraudren
 
Automatic brain tumor detection using adaptive region growing with thresholdi...
Automatic brain tumor detection using adaptive region growing with thresholdi...Automatic brain tumor detection using adaptive region growing with thresholdi...
Automatic brain tumor detection using adaptive region growing with thresholdi...IAESIJAI
 
BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...
BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...
BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...sipij
 
BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...
BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...
BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...sipij
 
FUZZY CLUSTERING BASED SEGMENTATION OF VERTEBRAE IN T1-WEIGHTED SPINAL MR IMA...
FUZZY CLUSTERING BASED SEGMENTATION OF VERTEBRAE IN T1-WEIGHTED SPINAL MR IMA...FUZZY CLUSTERING BASED SEGMENTATION OF VERTEBRAE IN T1-WEIGHTED SPINAL MR IMA...
FUZZY CLUSTERING BASED SEGMENTATION OF VERTEBRAE IN T1-WEIGHTED SPINAL MR IMA...Wireilla
 
High Resolution Mri Brain Image Segmentation Technique Using Holder Exponent
High Resolution Mri Brain Image Segmentation Technique Using Holder Exponent  High Resolution Mri Brain Image Segmentation Technique Using Holder Exponent
High Resolution Mri Brain Image Segmentation Technique Using Holder Exponent ijsc
 
Segmentation and Labelling of Human Spine MR Images Using Fuzzy Clustering
Segmentation and Labelling of Human Spine MR Images Using Fuzzy Clustering  Segmentation and Labelling of Human Spine MR Images Using Fuzzy Clustering
Segmentation and Labelling of Human Spine MR Images Using Fuzzy Clustering csandit
 
SEGMENTATION AND LABELLING OF HUMAN SPINE MR IMAGES USING FUZZY CLUSTERING
SEGMENTATION AND LABELLING OF HUMAN SPINE MR IMAGES USING FUZZY CLUSTERINGSEGMENTATION AND LABELLING OF HUMAN SPINE MR IMAGES USING FUZZY CLUSTERING
SEGMENTATION AND LABELLING OF HUMAN SPINE MR IMAGES USING FUZZY CLUSTERINGcscpconf
 
A SIMPLE APPROACH FOR RELATIVELY AUTOMATED HIPPOCAMPUS SEGMENTATION FROM SAGI...
A SIMPLE APPROACH FOR RELATIVELY AUTOMATED HIPPOCAMPUS SEGMENTATION FROM SAGI...A SIMPLE APPROACH FOR RELATIVELY AUTOMATED HIPPOCAMPUS SEGMENTATION FROM SAGI...
A SIMPLE APPROACH FOR RELATIVELY AUTOMATED HIPPOCAMPUS SEGMENTATION FROM SAGI...ijbbjournal
 
PhD viva - 11th November 2015
PhD viva - 11th November 2015PhD viva - 11th November 2015
PhD viva - 11th November 2015Kevin Keraudren
 
Brain Tumor Extraction from T1- Weighted MRI using Co-clustering and Level Se...
Brain Tumor Extraction from T1- Weighted MRI using Co-clustering and Level Se...Brain Tumor Extraction from T1- Weighted MRI using Co-clustering and Level Se...
Brain Tumor Extraction from T1- Weighted MRI using Co-clustering and Level Se...CSCJournals
 
MR Image Segmentation of Patients’ Brain Using Disease Specific a priori Know...
MR Image Segmentation of Patients’ Brain Using Disease Specific a priori Know...MR Image Segmentation of Patients’ Brain Using Disease Specific a priori Know...
MR Image Segmentation of Patients’ Brain Using Disease Specific a priori Know...CSCJournals
 
PERFORMANCE ANALYSIS OF TEXTURE IMAGE RETRIEVAL FOR CURVELET, CONTOURLET TR...
PERFORMANCE ANALYSIS OF TEXTURE IMAGE  RETRIEVAL FOR CURVELET, CONTOURLET  TR...PERFORMANCE ANALYSIS OF TEXTURE IMAGE  RETRIEVAL FOR CURVELET, CONTOURLET  TR...
PERFORMANCE ANALYSIS OF TEXTURE IMAGE RETRIEVAL FOR CURVELET, CONTOURLET TR...ijfcstjournal
 
PERFORMANCE ANALYSIS OF TEXTURE IMAGE RETRIEVAL FOR CURVELET, CONTOURLET TRAN...
PERFORMANCE ANALYSIS OF TEXTURE IMAGE RETRIEVAL FOR CURVELET, CONTOURLET TRAN...PERFORMANCE ANALYSIS OF TEXTURE IMAGE RETRIEVAL FOR CURVELET, CONTOURLET TRAN...
PERFORMANCE ANALYSIS OF TEXTURE IMAGE RETRIEVAL FOR CURVELET, CONTOURLET TRAN...ijfcstjournal
 
PERFORMANCE ANALYSIS OF TEXTURE IMAGE RETRIEVAL FOR CURVELET, CONTOURLET TRAN...
PERFORMANCE ANALYSIS OF TEXTURE IMAGE RETRIEVAL FOR CURVELET, CONTOURLET TRAN...PERFORMANCE ANALYSIS OF TEXTURE IMAGE RETRIEVAL FOR CURVELET, CONTOURLET TRAN...
PERFORMANCE ANALYSIS OF TEXTURE IMAGE RETRIEVAL FOR CURVELET, CONTOURLET TRAN...ijfcstjournal
 
Brain Tumor Segmentation and Extraction of MR Images Based on Improved Waters...
Brain Tumor Segmentation and Extraction of MR Images Based on Improved Waters...Brain Tumor Segmentation and Extraction of MR Images Based on Improved Waters...
Brain Tumor Segmentation and Extraction of MR Images Based on Improved Waters...IOSR Journals
 

Similar to Automatic Localisation of the Brain in Fetal MRI (Miccai 2013) (20)

Automatic Localisation of the Brain in Fetal MRI (Miccai 2013 poster)
Automatic Localisation of the Brain in Fetal MRI (Miccai 2013 poster)Automatic Localisation of the Brain in Fetal MRI (Miccai 2013 poster)
Automatic Localisation of the Brain in Fetal MRI (Miccai 2013 poster)
 
Automated Fetal Brain Segmentation from 2D MRI Slices for Motion Correction (...
Automated Fetal Brain Segmentation from 2D MRI Slices for Motion Correction (...Automated Fetal Brain Segmentation from 2D MRI Slices for Motion Correction (...
Automated Fetal Brain Segmentation from 2D MRI Slices for Motion Correction (...
 
OHBM2015poster_ACE
OHBM2015poster_ACEOHBM2015poster_ACE
OHBM2015poster_ACE
 
Automatic brain tumor detection using adaptive region growing with thresholdi...
Automatic brain tumor detection using adaptive region growing with thresholdi...Automatic brain tumor detection using adaptive region growing with thresholdi...
Automatic brain tumor detection using adaptive region growing with thresholdi...
 
BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...
BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...
BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...
 
BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...
BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...
BRAIN PORTION EXTRACTION USING HYBRID CONTOUR TECHNIQUE USING SETS FOR T1 WEI...
 
FUZZY CLUSTERING BASED SEGMENTATION OF VERTEBRAE IN T1-WEIGHTED SPINAL MR IMA...
FUZZY CLUSTERING BASED SEGMENTATION OF VERTEBRAE IN T1-WEIGHTED SPINAL MR IMA...FUZZY CLUSTERING BASED SEGMENTATION OF VERTEBRAE IN T1-WEIGHTED SPINAL MR IMA...
FUZZY CLUSTERING BASED SEGMENTATION OF VERTEBRAE IN T1-WEIGHTED SPINAL MR IMA...
 
High Resolution Mri Brain Image Segmentation Technique Using Holder Exponent
High Resolution Mri Brain Image Segmentation Technique Using Holder Exponent  High Resolution Mri Brain Image Segmentation Technique Using Holder Exponent
High Resolution Mri Brain Image Segmentation Technique Using Holder Exponent
 
Segmentation and Labelling of Human Spine MR Images Using Fuzzy Clustering
Segmentation and Labelling of Human Spine MR Images Using Fuzzy Clustering  Segmentation and Labelling of Human Spine MR Images Using Fuzzy Clustering
Segmentation and Labelling of Human Spine MR Images Using Fuzzy Clustering
 
SEGMENTATION AND LABELLING OF HUMAN SPINE MR IMAGES USING FUZZY CLUSTERING
SEGMENTATION AND LABELLING OF HUMAN SPINE MR IMAGES USING FUZZY CLUSTERINGSEGMENTATION AND LABELLING OF HUMAN SPINE MR IMAGES USING FUZZY CLUSTERING
SEGMENTATION AND LABELLING OF HUMAN SPINE MR IMAGES USING FUZZY CLUSTERING
 
A SIMPLE APPROACH FOR RELATIVELY AUTOMATED HIPPOCAMPUS SEGMENTATION FROM SAGI...
A SIMPLE APPROACH FOR RELATIVELY AUTOMATED HIPPOCAMPUS SEGMENTATION FROM SAGI...A SIMPLE APPROACH FOR RELATIVELY AUTOMATED HIPPOCAMPUS SEGMENTATION FROM SAGI...
A SIMPLE APPROACH FOR RELATIVELY AUTOMATED HIPPOCAMPUS SEGMENTATION FROM SAGI...
 
PhD viva - 11th November 2015
PhD viva - 11th November 2015PhD viva - 11th November 2015
PhD viva - 11th November 2015
 
Brain Tumor Extraction from T1- Weighted MRI using Co-clustering and Level Se...
Brain Tumor Extraction from T1- Weighted MRI using Co-clustering and Level Se...Brain Tumor Extraction from T1- Weighted MRI using Co-clustering and Level Se...
Brain Tumor Extraction from T1- Weighted MRI using Co-clustering and Level Se...
 
MR Image Segmentation of Patients’ Brain Using Disease Specific a priori Know...
MR Image Segmentation of Patients’ Brain Using Disease Specific a priori Know...MR Image Segmentation of Patients’ Brain Using Disease Specific a priori Know...
MR Image Segmentation of Patients’ Brain Using Disease Specific a priori Know...
 
vol.4.1.2.july.13
vol.4.1.2.july.13vol.4.1.2.july.13
vol.4.1.2.july.13
 
8-13-2013LPPPresentation
8-13-2013LPPPresentation8-13-2013LPPPresentation
8-13-2013LPPPresentation
 
PERFORMANCE ANALYSIS OF TEXTURE IMAGE RETRIEVAL FOR CURVELET, CONTOURLET TR...
PERFORMANCE ANALYSIS OF TEXTURE IMAGE  RETRIEVAL FOR CURVELET, CONTOURLET  TR...PERFORMANCE ANALYSIS OF TEXTURE IMAGE  RETRIEVAL FOR CURVELET, CONTOURLET  TR...
PERFORMANCE ANALYSIS OF TEXTURE IMAGE RETRIEVAL FOR CURVELET, CONTOURLET TR...
 
PERFORMANCE ANALYSIS OF TEXTURE IMAGE RETRIEVAL FOR CURVELET, CONTOURLET TRAN...
PERFORMANCE ANALYSIS OF TEXTURE IMAGE RETRIEVAL FOR CURVELET, CONTOURLET TRAN...PERFORMANCE ANALYSIS OF TEXTURE IMAGE RETRIEVAL FOR CURVELET, CONTOURLET TRAN...
PERFORMANCE ANALYSIS OF TEXTURE IMAGE RETRIEVAL FOR CURVELET, CONTOURLET TRAN...
 
PERFORMANCE ANALYSIS OF TEXTURE IMAGE RETRIEVAL FOR CURVELET, CONTOURLET TRAN...
PERFORMANCE ANALYSIS OF TEXTURE IMAGE RETRIEVAL FOR CURVELET, CONTOURLET TRAN...PERFORMANCE ANALYSIS OF TEXTURE IMAGE RETRIEVAL FOR CURVELET, CONTOURLET TRAN...
PERFORMANCE ANALYSIS OF TEXTURE IMAGE RETRIEVAL FOR CURVELET, CONTOURLET TRAN...
 
Brain Tumor Segmentation and Extraction of MR Images Based on Improved Waters...
Brain Tumor Segmentation and Extraction of MR Images Based on Improved Waters...Brain Tumor Segmentation and Extraction of MR Images Based on Improved Waters...
Brain Tumor Segmentation and Extraction of MR Images Based on Improved Waters...
 

More from Kevin Keraudren

Automated Localization of Fetal Organs in MRI Using Random Forests with Steer...
Automated Localization of Fetal Organs in MRI Using Random Forests with Steer...Automated Localization of Fetal Organs in MRI Using Random Forests with Steer...
Automated Localization of Fetal Organs in MRI Using Random Forests with Steer...Kevin Keraudren
 
Segmenting Epithelial Cells in High-Throughput RNAi Screens (Miaab 2011)
Segmenting Epithelial Cells in High-Throughput RNAi Screens (Miaab 2011)Segmenting Epithelial Cells in High-Throughput RNAi Screens (Miaab 2011)
Segmenting Epithelial Cells in High-Throughput RNAi Screens (Miaab 2011)Kevin Keraudren
 
Keraudren-K-2015-PhD-Thesis
Keraudren-K-2015-PhD-ThesisKeraudren-K-2015-PhD-Thesis
Keraudren-K-2015-PhD-ThesisKevin Keraudren
 
PyData London 2015 - Localising Organs of the Fetus in MRI Data Using Python
PyData London 2015 - Localising Organs of the Fetus in MRI Data Using PythonPyData London 2015 - Localising Organs of the Fetus in MRI Data Using Python
PyData London 2015 - Localising Organs of the Fetus in MRI Data Using PythonKevin Keraudren
 
Automated Fetal Brain Segmentation from 2D MRI Slices for Motion Correction
Automated Fetal Brain Segmentation from 2D MRI Slices for Motion CorrectionAutomated Fetal Brain Segmentation from 2D MRI Slices for Motion Correction
Automated Fetal Brain Segmentation from 2D MRI Slices for Motion CorrectionKevin Keraudren
 
Sparsity Based Spectral Embedding: Application to Multi-Atlas Echocardiograph...
Sparsity Based Spectral Embedding: Application to Multi-Atlas Echocardiograph...Sparsity Based Spectral Embedding: Application to Multi-Atlas Echocardiograph...
Sparsity Based Spectral Embedding: Application to Multi-Atlas Echocardiograph...Kevin Keraudren
 
Endocardial 3D Ultrasound Segmentation using Autocontext Random ForestsPresen...
Endocardial 3D Ultrasound Segmentation using Autocontext Random ForestsPresen...Endocardial 3D Ultrasound Segmentation using Autocontext Random ForestsPresen...
Endocardial 3D Ultrasound Segmentation using Autocontext Random ForestsPresen...Kevin Keraudren
 
Faceccrumbs: Manifold Learning on 1M Face Images, MSc group project
Faceccrumbs: Manifold Learning on 1M Face Images, MSc group projectFaceccrumbs: Manifold Learning on 1M Face Images, MSc group project
Faceccrumbs: Manifold Learning on 1M Face Images, MSc group projectKevin Keraudren
 
Slides on Photosynth.net, from my MSc at Imperial
Slides on Photosynth.net, from my MSc at ImperialSlides on Photosynth.net, from my MSc at Imperial
Slides on Photosynth.net, from my MSc at ImperialKevin Keraudren
 
Slides presented at the Steiner Unit, Hammersmith Hospital, 08/06/2012
Slides presented at the Steiner Unit, Hammersmith Hospital, 08/06/2012Slides presented at the Steiner Unit, Hammersmith Hospital, 08/06/2012
Slides presented at the Steiner Unit, Hammersmith Hospital, 08/06/2012Kevin Keraudren
 
Reading group - 22/05/2013
Reading group - 22/05/2013Reading group - 22/05/2013
Reading group - 22/05/2013Kevin Keraudren
 
Introduction to cython: example of GCoptimization
Introduction to cython: example of GCoptimizationIntroduction to cython: example of GCoptimization
Introduction to cython: example of GCoptimizationKevin Keraudren
 
Segmenting Epithelial Cells in High-Throughput RNAi Screens (MIAAB 2011)
Segmenting Epithelial Cells in High-Throughput RNAi Screens (MIAAB 2011)Segmenting Epithelial Cells in High-Throughput RNAi Screens (MIAAB 2011)
Segmenting Epithelial Cells in High-Throughput RNAi Screens (MIAAB 2011)Kevin Keraudren
 

More from Kevin Keraudren (13)

Automated Localization of Fetal Organs in MRI Using Random Forests with Steer...
Automated Localization of Fetal Organs in MRI Using Random Forests with Steer...Automated Localization of Fetal Organs in MRI Using Random Forests with Steer...
Automated Localization of Fetal Organs in MRI Using Random Forests with Steer...
 
Segmenting Epithelial Cells in High-Throughput RNAi Screens (Miaab 2011)
Segmenting Epithelial Cells in High-Throughput RNAi Screens (Miaab 2011)Segmenting Epithelial Cells in High-Throughput RNAi Screens (Miaab 2011)
Segmenting Epithelial Cells in High-Throughput RNAi Screens (Miaab 2011)
 
Keraudren-K-2015-PhD-Thesis
Keraudren-K-2015-PhD-ThesisKeraudren-K-2015-PhD-Thesis
Keraudren-K-2015-PhD-Thesis
 
PyData London 2015 - Localising Organs of the Fetus in MRI Data Using Python
PyData London 2015 - Localising Organs of the Fetus in MRI Data Using PythonPyData London 2015 - Localising Organs of the Fetus in MRI Data Using Python
PyData London 2015 - Localising Organs of the Fetus in MRI Data Using Python
 
Automated Fetal Brain Segmentation from 2D MRI Slices for Motion Correction
Automated Fetal Brain Segmentation from 2D MRI Slices for Motion CorrectionAutomated Fetal Brain Segmentation from 2D MRI Slices for Motion Correction
Automated Fetal Brain Segmentation from 2D MRI Slices for Motion Correction
 
Sparsity Based Spectral Embedding: Application to Multi-Atlas Echocardiograph...
Sparsity Based Spectral Embedding: Application to Multi-Atlas Echocardiograph...Sparsity Based Spectral Embedding: Application to Multi-Atlas Echocardiograph...
Sparsity Based Spectral Embedding: Application to Multi-Atlas Echocardiograph...
 
Endocardial 3D Ultrasound Segmentation using Autocontext Random ForestsPresen...
Endocardial 3D Ultrasound Segmentation using Autocontext Random ForestsPresen...Endocardial 3D Ultrasound Segmentation using Autocontext Random ForestsPresen...
Endocardial 3D Ultrasound Segmentation using Autocontext Random ForestsPresen...
 
Faceccrumbs: Manifold Learning on 1M Face Images, MSc group project
Faceccrumbs: Manifold Learning on 1M Face Images, MSc group projectFaceccrumbs: Manifold Learning on 1M Face Images, MSc group project
Faceccrumbs: Manifold Learning on 1M Face Images, MSc group project
 
Slides on Photosynth.net, from my MSc at Imperial
Slides on Photosynth.net, from my MSc at ImperialSlides on Photosynth.net, from my MSc at Imperial
Slides on Photosynth.net, from my MSc at Imperial
 
Slides presented at the Steiner Unit, Hammersmith Hospital, 08/06/2012
Slides presented at the Steiner Unit, Hammersmith Hospital, 08/06/2012Slides presented at the Steiner Unit, Hammersmith Hospital, 08/06/2012
Slides presented at the Steiner Unit, Hammersmith Hospital, 08/06/2012
 
Reading group - 22/05/2013
Reading group - 22/05/2013Reading group - 22/05/2013
Reading group - 22/05/2013
 
Introduction to cython: example of GCoptimization
Introduction to cython: example of GCoptimizationIntroduction to cython: example of GCoptimization
Introduction to cython: example of GCoptimization
 
Segmenting Epithelial Cells in High-Throughput RNAi Screens (MIAAB 2011)
Segmenting Epithelial Cells in High-Throughput RNAi Screens (MIAAB 2011)Segmenting Epithelial Cells in High-Throughput RNAi Screens (MIAAB 2011)
Segmenting Epithelial Cells in High-Throughput RNAi Screens (MIAAB 2011)
 

Recently uploaded

SOLUBLE PATTERN RECOGNITION RECEPTORS.pptx
SOLUBLE PATTERN RECOGNITION RECEPTORS.pptxSOLUBLE PATTERN RECOGNITION RECEPTORS.pptx
SOLUBLE PATTERN RECOGNITION RECEPTORS.pptxkessiyaTpeter
 
PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...
PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...
PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...Sérgio Sacani
 
Isotopic evidence of long-lived volcanism on Io
Isotopic evidence of long-lived volcanism on IoIsotopic evidence of long-lived volcanism on Io
Isotopic evidence of long-lived volcanism on IoSérgio Sacani
 
Labelling Requirements and Label Claims for Dietary Supplements and Recommend...
Labelling Requirements and Label Claims for Dietary Supplements and Recommend...Labelling Requirements and Label Claims for Dietary Supplements and Recommend...
Labelling Requirements and Label Claims for Dietary Supplements and Recommend...Lokesh Kothari
 
Zoology 4th semester series (krishna).pdf
Zoology 4th semester series (krishna).pdfZoology 4th semester series (krishna).pdf
Zoology 4th semester series (krishna).pdfSumit Kumar yadav
 
Unlocking the Potential: Deep dive into ocean of Ceramic Magnets.pptx
Unlocking  the Potential: Deep dive into ocean of Ceramic Magnets.pptxUnlocking  the Potential: Deep dive into ocean of Ceramic Magnets.pptx
Unlocking the Potential: Deep dive into ocean of Ceramic Magnets.pptxanandsmhk
 
Hire 💕 9907093804 Hooghly Call Girls Service Call Girls Agency
Hire 💕 9907093804 Hooghly Call Girls Service Call Girls AgencyHire 💕 9907093804 Hooghly Call Girls Service Call Girls Agency
Hire 💕 9907093804 Hooghly Call Girls Service Call Girls AgencySheetal Arora
 
GBSN - Microbiology (Unit 1)
GBSN - Microbiology (Unit 1)GBSN - Microbiology (Unit 1)
GBSN - Microbiology (Unit 1)Areesha Ahmad
 
Spermiogenesis or Spermateleosis or metamorphosis of spermatid
Spermiogenesis or Spermateleosis or metamorphosis of spermatidSpermiogenesis or Spermateleosis or metamorphosis of spermatid
Spermiogenesis or Spermateleosis or metamorphosis of spermatidSarthak Sekhar Mondal
 
Botany 4th semester series (krishna).pdf
Botany 4th semester series (krishna).pdfBotany 4th semester series (krishna).pdf
Botany 4th semester series (krishna).pdfSumit Kumar yadav
 
9654467111 Call Girls In Raj Nagar Delhi Short 1500 Night 6000
9654467111 Call Girls In Raj Nagar Delhi Short 1500 Night 60009654467111 Call Girls In Raj Nagar Delhi Short 1500 Night 6000
9654467111 Call Girls In Raj Nagar Delhi Short 1500 Night 6000Sapana Sha
 
TEST BANK For Radiologic Science for Technologists, 12th Edition by Stewart C...
TEST BANK For Radiologic Science for Technologists, 12th Edition by Stewart C...TEST BANK For Radiologic Science for Technologists, 12th Edition by Stewart C...
TEST BANK For Radiologic Science for Technologists, 12th Edition by Stewart C...ssifa0344
 
Green chemistry and Sustainable development.pptx
Green chemistry  and Sustainable development.pptxGreen chemistry  and Sustainable development.pptx
Green chemistry and Sustainable development.pptxRajatChauhan518211
 
Biological Classification BioHack (3).pdf
Biological Classification BioHack (3).pdfBiological Classification BioHack (3).pdf
Biological Classification BioHack (3).pdfmuntazimhurra
 
Natural Polymer Based Nanomaterials
Natural Polymer Based NanomaterialsNatural Polymer Based Nanomaterials
Natural Polymer Based NanomaterialsAArockiyaNisha
 
Botany 4th semester file By Sumit Kumar yadav.pdf
Botany 4th semester file By Sumit Kumar yadav.pdfBotany 4th semester file By Sumit Kumar yadav.pdf
Botany 4th semester file By Sumit Kumar yadav.pdfSumit Kumar yadav
 
All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...
All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...
All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...Sérgio Sacani
 
Pests of cotton_Sucking_Pests_Dr.UPR.pdf
Pests of cotton_Sucking_Pests_Dr.UPR.pdfPests of cotton_Sucking_Pests_Dr.UPR.pdf
Pests of cotton_Sucking_Pests_Dr.UPR.pdfPirithiRaju
 
Animal Communication- Auditory and Visual.pptx
Animal Communication- Auditory and Visual.pptxAnimal Communication- Auditory and Visual.pptx
Animal Communication- Auditory and Visual.pptxUmerFayaz5
 
Raman spectroscopy.pptx M Pharm, M Sc, Advanced Spectral Analysis
Raman spectroscopy.pptx M Pharm, M Sc, Advanced Spectral AnalysisRaman spectroscopy.pptx M Pharm, M Sc, Advanced Spectral Analysis
Raman spectroscopy.pptx M Pharm, M Sc, Advanced Spectral AnalysisDiwakar Mishra
 

Recently uploaded (20)

SOLUBLE PATTERN RECOGNITION RECEPTORS.pptx
SOLUBLE PATTERN RECOGNITION RECEPTORS.pptxSOLUBLE PATTERN RECOGNITION RECEPTORS.pptx
SOLUBLE PATTERN RECOGNITION RECEPTORS.pptx
 
PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...
PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...
PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...
 
Isotopic evidence of long-lived volcanism on Io
Isotopic evidence of long-lived volcanism on IoIsotopic evidence of long-lived volcanism on Io
Isotopic evidence of long-lived volcanism on Io
 
Labelling Requirements and Label Claims for Dietary Supplements and Recommend...
Labelling Requirements and Label Claims for Dietary Supplements and Recommend...Labelling Requirements and Label Claims for Dietary Supplements and Recommend...
Labelling Requirements and Label Claims for Dietary Supplements and Recommend...
 
Zoology 4th semester series (krishna).pdf
Zoology 4th semester series (krishna).pdfZoology 4th semester series (krishna).pdf
Zoology 4th semester series (krishna).pdf
 
Unlocking the Potential: Deep dive into ocean of Ceramic Magnets.pptx
Unlocking  the Potential: Deep dive into ocean of Ceramic Magnets.pptxUnlocking  the Potential: Deep dive into ocean of Ceramic Magnets.pptx
Unlocking the Potential: Deep dive into ocean of Ceramic Magnets.pptx
 
Hire 💕 9907093804 Hooghly Call Girls Service Call Girls Agency
Hire 💕 9907093804 Hooghly Call Girls Service Call Girls AgencyHire 💕 9907093804 Hooghly Call Girls Service Call Girls Agency
Hire 💕 9907093804 Hooghly Call Girls Service Call Girls Agency
 
GBSN - Microbiology (Unit 1)
GBSN - Microbiology (Unit 1)GBSN - Microbiology (Unit 1)
GBSN - Microbiology (Unit 1)
 
Spermiogenesis or Spermateleosis or metamorphosis of spermatid
Spermiogenesis or Spermateleosis or metamorphosis of spermatidSpermiogenesis or Spermateleosis or metamorphosis of spermatid
Spermiogenesis or Spermateleosis or metamorphosis of spermatid
 
Botany 4th semester series (krishna).pdf
Botany 4th semester series (krishna).pdfBotany 4th semester series (krishna).pdf
Botany 4th semester series (krishna).pdf
 
9654467111 Call Girls In Raj Nagar Delhi Short 1500 Night 6000
9654467111 Call Girls In Raj Nagar Delhi Short 1500 Night 60009654467111 Call Girls In Raj Nagar Delhi Short 1500 Night 6000
9654467111 Call Girls In Raj Nagar Delhi Short 1500 Night 6000
 
TEST BANK For Radiologic Science for Technologists, 12th Edition by Stewart C...
TEST BANK For Radiologic Science for Technologists, 12th Edition by Stewart C...TEST BANK For Radiologic Science for Technologists, 12th Edition by Stewart C...
TEST BANK For Radiologic Science for Technologists, 12th Edition by Stewart C...
 
Green chemistry and Sustainable development.pptx
Green chemistry  and Sustainable development.pptxGreen chemistry  and Sustainable development.pptx
Green chemistry and Sustainable development.pptx
 
Biological Classification BioHack (3).pdf
Biological Classification BioHack (3).pdfBiological Classification BioHack (3).pdf
Biological Classification BioHack (3).pdf
 
Natural Polymer Based Nanomaterials
Natural Polymer Based NanomaterialsNatural Polymer Based Nanomaterials
Natural Polymer Based Nanomaterials
 
Botany 4th semester file By Sumit Kumar yadav.pdf
Botany 4th semester file By Sumit Kumar yadav.pdfBotany 4th semester file By Sumit Kumar yadav.pdf
Botany 4th semester file By Sumit Kumar yadav.pdf
 
All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...
All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...
All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...
 
Pests of cotton_Sucking_Pests_Dr.UPR.pdf
Pests of cotton_Sucking_Pests_Dr.UPR.pdfPests of cotton_Sucking_Pests_Dr.UPR.pdf
Pests of cotton_Sucking_Pests_Dr.UPR.pdf
 
Animal Communication- Auditory and Visual.pptx
Animal Communication- Auditory and Visual.pptxAnimal Communication- Auditory and Visual.pptx
Animal Communication- Auditory and Visual.pptx
 
Raman spectroscopy.pptx M Pharm, M Sc, Advanced Spectral Analysis
Raman spectroscopy.pptx M Pharm, M Sc, Advanced Spectral AnalysisRaman spectroscopy.pptx M Pharm, M Sc, Advanced Spectral Analysis
Raman spectroscopy.pptx M Pharm, M Sc, Advanced Spectral Analysis
 

Automatic Localisation of the Brain in Fetal MRI (Miccai 2013)

  • 1. Localisation of the Brain in Fetal MRI Using Bundled SIFT Features Kevin Keraudren1 , Vanessa Kyriakopoulou2 , Mary Rutherford2 , Joseph V. Hajnal2 and Daniel Rueckert1 1 Biomedical Image Analysis Group, Imperial College London 2 Centre for the Developing Brain & Department Biomedical Engineering Division of Imaging Sciences, King’s College London Abstract. Fetal MRI is a rapidly emerging diagnostic imaging tool. Its main focus is currently on brain imaging, but there is a huge potential for whole body studies. We propose a method for accurate and robust localisation of the fetal brain in MRI when the image data is acquired as a stack of 2D slices misaligned due to fetal motion. We first detect possi- ble brain locations in 2D images with a Bag-of-Words model using SIFT features aggregated within Maximally Stable Extremal Regions (called bundled SIFT), followed by a robust fitting of an axis-aligned 3D box to the selected regions. We rely on prior knowledge of the fetal brain development to define size and shape constraints. In a cross-validation experiment, we obtained a median error distance of 5.7mm from the ground truth and no missed detection on a database of 59 fetuses. This 2D approach thus allows a robust detection even in the presence of sub- stantial fetal motion. 1 Introduction Fetal Magnetic Resonance Imaging (MRI) has had great successes in the last years with the development of motion correction methods providing high quality isotropic volumes of the brain [7,11], thus enabling a better understanding of the fetal brain development. Such reconstruction methods typically rely on data acquired as stacks of 2D slices of real-time MRI, freezing in-plane motion. In order to reduce the scan time while avoiding slice cross-talk artefacts, contiguous slices are not acquired sequentially but in an interleaved manner. Slices are quite often misaligned due to fetal motion and form an inconsistent 3D volume (Figure 1). Motion correction is the registration of 2D slices of the fetal brain to an ideal 3D volume. Cropping a box around the brain is a prerequisite to exclude maternal tissues that can make the registration fail. We thus propose a method to automatically find a precise bounding box around the brain in order to speed-up the preprocessing steps of the motion correction procedure. Related work Regression Forests perform the task of organ detection by learn- ing a regression between image features, such as 3D Haar-like features, and the
  • 2. 2 K. Keraudren, V. Kyriakopoulou, M. Rutherford, J.V. Hajnal, D. Rueckert Fig. 1: Example scan with the native 2D slices in sagittal orientation. A zoomed patch of the coronal section highlights interleaving artefacts due to fetal motion. offset to the corners of the bounding boxes of organs [10]. By treating the locali- sation problem as a regression problem, it implies some rough alignment between part of the training database and the new data. An adult patient usually lies inside the scanner in a standard orientation, but this is not the case of a fe- tus. Moreover, the fetus is surrounded by maternal tissues instead of air, thus hindering a straightforward application of such a method. Marginal Space Learning (MSL) is a more general framework that can be described as an optimized sliding window search with a hierarchy of coarse- to-fine boosting-based organ detectors [15]. Learning is performed on affinely registered datasets, and the search covers all locations, scales and orientations. Steerable features apply a rotated grid over the image to sample features in order to perform local rotation and scaling without transforming the whole volume, thus making the search more computationally feasible. MSL has been successfully applied to various problems, such as the localisation of the four heart chambers in adult CT scans [15], semantic browsing of the fetal body in 2D ultrasound [2], or automatic fetal face detection in 3D ultrasound [4]. To the best of our knowledge, only two fully automated localisation methods of the fetal brain in MRI have been proposed so far in the literature: Anquez et al. [1] proposed to start from detecting the eyes with 3D template matching, followed by a segmentation of the brain using a 2D graph-cut segmentation of the mid-sagittal slice rotated at several angles. The best matching segmentation is selected and used to initialise a 3D graph-cut segmentation. Ison et al. [6] proposed a more general method based on a two-stage Random Forest classifier: the first stage distinguishes maternal tissues from fetal head tissues, while the second stage classifies fetal head tissues into 6 classes. The last step uses a Markov Random Field appearance model to establish an orientation of the brain based on the centroids of the previously identified fetal tissues. Overview In this paper, we chose to focus on the task of finding an axis-aligned bounding box for the fetal brain. This is in contrast with [6] which aimed at find- ing an oriented bounding box, and [1] which aimed at segmenting the skull bone
  • 3. Localisation of the Brain in Fetal MRI Using Bundled SIFT Features 3 content. This relaxation of the problem enables us to focus on positioning a tight bounding box on the brain while dealing with 2D slices misaligned or corrupted due to fetal motion. Although acquisitions are carried out in conventional orien- tations, there is unpredictability in the positioning of the fetus. Hence, similarly to Marginal Space Learning, we decided to decompose the search space by per- forming a 2D detection process before accumulating the votes in 3D, and we removed the scale component by inferring it from the gestational age. In a first stage, Maximally Stable Extremal Regions (MSER [9]) are extracted from the 2D slices and approximated by ellipses. Then, the regions whose size and aspect ratio conform with prior knowledge of the fetal development are classified into brain or not-brain based on histograms of the SIFT features found within the fitted ellipses (bundled SIFT [14]), following a Bag-of-Words model (BOW [3]). Finally, a RANdom SAmple Consensus procedure (RANSAC [5]) is performed to find a best fitting 3D cube whose dimensions are inferred from prior knowledge. This localisation pipeline is summarised in Figure 2. In the remainder of this paper, we will describe in more details our proposed method and evaluate it in a 10-fold cross validation, comparing it to a sliding window BOW using 2D or 3D SIFT features. Fig. 2: Proposed pipeline for localising the fetal brain. 2 Method 2.1 Detection and selection of MSER regions Maximally Stable Extremal Regions (MSER), introduced by Matas et al. [9], are a common feature detection method in computer vision. MSER regions can be defined as sets of connected pixels stable over a large range of intensity thresh- olds. Such regions can be characterised by homogeneous intensity distributions and high intensity differences at their boundary. Each region is defined by a seed pixel and a lower and upper intensity thresholds, the whole region resulting from a floodfill operation. In the case of fetal T2 MR images, MSER regions are well suited to the task of selecting candidate regions for the brain as the skull content appears much brighter than the surrounding bone and skin tissues. In its first stages, our localisation pipeline proceeds slice by slice, working on 2D images, and starts by detecting candidate MSER regions Ri which are sets
  • 4. 4 K. Keraudren, V. Kyriakopoulou, M. Rutherford, J.V. Hajnal, D. Rueckert of connected pixels. An ellipse Ei is then fitted to each Ri with a least-squares minimization. As the shape of the brain is well approximated by an ellipsoid, the ellipses Ei have the ability to recover the shape of the brain even if the detected Ri only corresponds to a segment of cerebrospinal fluid (CSF, Figure 3.b), or amniotic fluid surrounding the fetal head (Figure 3.c). The ellipses Ei are then filtered by size and aspect ratio using the gestational age combined with prior knowledge of the fetal development, namely the occipitofrontal diameter, OFD, and the biparietal diameter, BPD [12]. This prior knowledge is obtained from 2D ultrasound studies [12] and is discussed in more details in Section 3. (a) (b) (c) Fig. 3: Example MSER regions Ri (red overlay) and their fitted ellipses Ei (green dashes): (a) skull bone content, (b) cerebrospinal fluid, (c) amniotic fluid. 2.2 Classification of selected MSER regions using bundled SIFT features MSER regions alone do not provide a descriptor that can be used for classifi- cation. As a versatile rotation invariant classification framework, we chose to use a Bag-of-Words model by computing for each region Ri the histogram of the SIFT features (Scale-Invariant Feature Transform [8]) within the ellipse Ei, similarly to the bundled SIFT features of Wu et al. [14]. In the Bag-of-Words method for image classification presented by Csurka et al. [3], SIFT features are extracted from training images and a set of words V (visual vocabulary) is obtained through k-means clustering, each word being the centroid of a cluster. Each SIFT feature fSIFT can then be associated to its nearest neighbour fNN ∈ V to build a histogram of words. A Support Vector Machine (SVM) classifier is then used to assign a class to this histogram. SIFT features are the association of a keypoint corresponding to a local extrema in a scale-space Gaussian pyramid (blob) and a descriptor built from histograms of gradient orientations. The blob detection process provides scale invariance to the descriptor, whereas rotation invariance is obtained from the main gradient orientation over the blob. Rotation invariance helps accommodate the unknown orientation of the fetal brain, while scale invariance attenuates the variations due to gestational age.
  • 5. Localisation of the Brain in Fetal MRI Using Bundled SIFT Features 5 In the learning stage of our pipeline, all SIFT features are extracted from the 2D slices of all training scans and clustered using a k-means algorithm. The N cluster centers form the vocabulary V. Then, MSER regions Ri are detected and selected (Section 2.1). The ellipses Ei centered on the brain are kept as positive examples, while those further than OFD/2 are kept as negative examples. For each Ei, a histogram of bundled SIFT features is computed. After an L2 normalisation, the histograms are used to train an SVM classifier. As in [3], a linear kernel SVM has been used. In the detection stage, for each MSER region selected, a normalised histogram of SIFT features is computed, and the previously trained SVM is used to classify regions as brain or not-brain. Figure 4.a shows an example slice with all the candidate MSER regions, while Figure 4.b shows the result of the selection and classification processes. (a) (b) Fig. 4: (a) All detected MSER regions. (b) MSER regions are filtered based on their size and aspect ratio, then classified according to their histograms of SIFT features (green for brain regions, red for not-brain). 2.3 RANSAC fitting of a cube The 2D detection works reliably in mid-brain slices but not in peripheral slices of the brain. Estimating a 3D box is thus important for a reliable estimate of the entire brain region. As the set of candidate regions classified as brain by the SVM classifier may still contain outliers, we perform a RANSAC procedure [5] to find a best fitting position for a 3D axis-aligned bounding cube. We thus randomly select a small set of ellipses Ei and use their centroid to define a bounding cube of width OFD. For a region Ri to be considered an inlier, it must be completely included in this cube and the center of the ellipse Ei must be at a small distance from the cube center. The cube position is then refined by taking the centroid of these inliers. This process is repeated a predefined number of times, typically 1000 times, and the cube with the largest number of inliers is selected. 3 Experiments
  • 6. 6 K. Keraudren, V. Kyriakopoulou, M. Rutherford, J.V. Hajnal, D. Rueckert Implementation To gain prior knowledge on the expected size of the brain knowing the gestational age, we used a 2D ultrasound study from Snijders and Nicolaides [12] performed on 1040 normal singleton pregnancies. The 5th and 95th centile values of OFD and BPD have been used to define the acceptable size and aspect ratio for the selected MSER regions (Section 2.1). The size of the detected bounding box in the robust fitting procedure (Section 2.3) has been set to the 95th centile of OFD in order to contain the whole fetal brain. The size N of the BOW vocabulary (Section 2.2) has been set to 400. The automated detection process takes less than a minute on a normal PC. Data Fetal MRI was performed on a 1.5T MRI system, T2-weighted dynamic ssTSE images were obtained with the following scanning parameters: TR 15000ms, TE 160ms, slice thickness of 2.5mm, slice overlap of 1.5mm, flip angle 90◦ . The in-plane resolution varies between 0.94 and 1.25mm, with the number of inter- leaved packets ranging from 4 to 6. Our database includes 59 healthy fetuses whose gestational age range from 22 to 39 weeks, with 5 fetuses scanned twice and 1 three times, amounting to a total of 66 datasets. Each dataset consists of 3 to 8 scans acquired in three standard orthogonal planes, representing a total of 117 sagittal, 113 coronal and 228 transverse scans. We performed a 10-fold cross validation, with 39 training subjects and 20 testing subjects for each fold. For the ground truth, bounding boxes have been tightly drawn around the brain. Results The brain localisation results are summarised in Table 1, whereas ex- amples of detected bounding boxes and their corresponding ground truth are shown in Figure 5 and in the supplementary material.1 We compared our method against sliding a window of fixed size OFD with a Random Forest classifier on histograms of 2D or 3D SIFT features, using the extension to 3D of SIFT pro- posed in [13]. For each stack of slices, we measured the distance between the center of the ground truth bounding box and the detected bounding box. Sim- ilarly to [6], we defined a correct detection as 70% of the brain being included in the detected box. 2D SIFT features performed better than 3D SIFT features, which can be attributed to the inconsistency of the 3D data, whereas the bun- dled SIFT drastically improved the localisation accuracy with an error below 5.7mm in more than 50% of cases. This greater precision comes from applying a classifier only at specific locations (MSER regions) instead of all pixels, thus resulting in a more localised probability map. This localisation of the center of the brain shows improved results compared to [6] who reported a median error of 10mm in the detection of 6 landmarks corresponding to centroids of fetal head tissues. However, contrary to [6], the orientation of the brain is not determined. Our method is more general than [1] as it does not rely on localising the eyes. There has been no false detection or missed detection with bundled SIFT, with a worst case error of 25mm presented in Figure 5.e. In 85% of cases, the detected bounding box contains entirely the ground truth bounding box. The prior knowledge gained from the gestational age plays an important role in disregarding most of the detected MSER regions. Indeed, on average during 1 www.doc.ic.ac.uk/~kpk09/MICCAI-451.mp4
  • 7. Localisation of the Brain in Fetal MRI Using Bundled SIFT Features 7 Table 1: Detection results averaged over the cross validation, all orientations combined. Error (mm) Centiles 2D SIFT 3D SIFT Bundled SIFT 25th 10.9 14.8 4.0 50th 15.5 20.8 5.7 75th 20.5 30.4 8.4 Detection 98% 85% 100% Complete brain 38% 23% 85% (a) (b) (c) (d) (e) Fig. 5: Examples of detected bounding boxes (green) and ground truth (red). a), b) and c) are respectively sagittal, coronal and transverse acquisitions of different subjects. d) and e) show detections with the largest error, which can be attributed to the presence of the maternal bladder near the fetal head. the 10-fold cross validation, 98% of the candidate regions are disregarded in the first stage of the pipeline. As a comparison, the SVM classifier further disregards 41% of the remaining candidates, and the RANSAC procedure removes 18% outliers. No distinction has been made between sagittal, transverse or coronal acquisitions, which is another advantage of the proposed method. When using normal growth charts to define a realistic range of sizes of the brain, our goal is to remove improbable detections while still allowing a large variation in brain size. From standard growth charts, extending to include 99.6% of subjects corresponds to a 1 week error. Simulating extreme growth restriction by adding a 5 weeks error in all gestational ages, the detection rate is still 91%. 4 Conclusion We presented a novel automatic localisation method for the fetal brain in MRI. Proceeding slice by slice, MSER regions are first detected and filtered by size and aspect ratio before being classified using histograms of SIFT features. An ex- pected size of the brain is inferred from the gestational age and prior knowledge of the fetal development. Finally, a 3D bounding cube is fitted to the selected regions with a RANSAC procedure. The method is not specific to the scan ori- entation, with a median distance error of 5.7mm from the ground truth. Further
  • 8. 8 K. Keraudren, V. Kyriakopoulou, M. Rutherford, J.V. Hajnal, D. Rueckert work will be required to integrate this brain localisation method in a motion correction pipeline, such as automatically masking out maternal tissues. References 1. Anquez, J., Angelini, E., Bloch, I.: Automatic Segmentation of Head Structures on Fetal MRI. In: ISBI. pp. 109–112. IEEE (2009) 2. Carneiro, G., Georgescu, B., Good, S., Comaniciu, D.: Detection and Measure- ment of Fetal Anatomies from Ultrasound Images using a Constrained Probabilistic Boosting Tree. IEEE Transactions on Medical Imaging 27(9), 1342–1355 (2008) 3. Csurka, G., Dance, C., Fan, L., Willamowski, J., Bray, C.: Visual Categorization With Bags of Keypoints. In: Workshop on Statistical Learning in Computer Vision, ECCV. vol. 1, p. 22 (2004) 4. Feng, S., Zhou, S., Good, S., Comaniciu, D.: Automatic Fetal Face Detection from Ultrasound Volumes via Learning 3D and 2D Information. In: CVPR. pp. 2488– 2495. IEEE (2009) 5. Fischler, M., Bolles, R.: Random Sample Consensus: A Paradigm for Model Fitting with Applications to Image Analysis and Automated Cartography. Communica- tions of the ACM 24(6), 381–395 (1981) 6. Ison, M., Donner, R., Dittrich, E., Kasprian, G., Prayer, D., Langs, G.: Fully Automated Brain Extraction and Orientation in Raw Fetal MRI. In: Workshop on Paediatric and Perinatal Imaging, MICCAI. pp. 17–24. Springer (2012) 7. Jiang, S., Xue, H., Glover, A., Rutherford, M., Rueckert, D., Hajnal, J.: MRI of Moving Subjects using Multislice Snapshot Images with Volume Reconstruction (SVR): Application to Fetal, Neonatal, and Adult Brain Studies. IEEE Transac- tions on Medical Imaging 26(7), 967–980 (2007) 8. Lowe, D.: Object Recognition from Local Scale-invariant Features. In: ICCV. vol. 2, pp. 1150–1157. IEEE (1999) 9. Matas, J., Chum, O., Urban, M., Pajdla, T.: Robust Wide Baseline Stereo from Maximally Stable Extremal Regions. In: BMVC. pp. 384–393 (2002) 10. Pauly, O., Glocker, B., Criminisi, A., Mateus, D., M¨oller, A., Nekolla, S., Navab, N.: Fast Multiple Organ Detection and Localization in Whole-body MR Dixon Sequences. In: MICCAI. pp. 239–247. Springer (2011) 11. Rousseau, F., Glenn, O., Iordanova, B., Rodriguez-Carranza, C., Vigneron, D., Barkovich, J., Studholme, C., et al.: Registration-based Approach for Reconstruc- tion of High Resolution In Utero Fetal MR Brain Images. Academic Radiology 13(9), 1072–1081 (2006) 12. Snijders, R., Nicolaides, K.: Fetal Biometry at 14–40 Weeks’ Gestation. Ultrasound in Obstetrics & Gynecology 4(1), 34–48 (2003) 13. Toews, M., Wells III, W.M.: Efficient and Robust Model-to-Image Alignment using 3D Scale-Invariant Features. Medical image analysis (2012) 14. Wu, Z., Ke, Q., Isard, M., Sun, J.: Bundling Features for Large Scale Partial- duplicate Web Image Search. In: CVPR. pp. 25–32. IEEE (2009) 15. Zheng, Y., Barbu, A., Georgescu, B., Scheuering, M., Comaniciu, D.: Four-chamber Heart Modeling and Automatic Segmentation for 3D Cardiac CT Volumes using Marginal Space Learning and Steerable Features. IEEE Transactions on Medical Imaging 27(11), 1668–1681 (2008)