SlideShare ist ein Scribd-Unternehmen logo
1 von 18
Downloaden Sie, um offline zu lesen
Quantitative Analysis of
Dynamic Contrast-Enhanced MRI using R
The dcemriS4 package
Brandon Whitcher PhD CStat
b.whitcher@imperial.ac.uk
GlaxoSmithKline Clinical Imaging Centre
London, United Kingdom
rigorousanalytics.blogspot.com — www.dcemri.org — dcemri.blogspot.com
@whitcher — @dcemri — @rigorous
20 July 2010 for useR!2010
B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 1 / 19
Outline
1 Motivation
2 Dynamic Contrast Enhanced MRI
3 Parameter Estimation
4 Conclusions
B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 2 / 19
Motivation
Introduction
The quantitative analysis of DCE-MRI involves tting
pharmacokinetic (PK) models to the concentration of a contrast
agent over time.
Gadolinium-based contrast agents, involving a small molecular-weight
substance, are injected after several baseline scans.
Using T1-weighted sequences, the reduction in T1 relaxation time
caused by the contrast agent is the signal dominant enhancement.
T1-weighted kinetic curves have three major phases
the upslope
maximum enhancement
washout
Dynamic acquisition
5-10 minutes for oncology applications
60-90 minutes for neurology (BBB) applications
dcemriS4 facilitates all stages of data analysis for DCE-MRI, and
diffusion-weighted imaging (DWI), using S4 nifti objects.
B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 3 / 19
Motivation
RIDER Neuro MRI
B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 4 / 19
Dynamic Contrast Enhanced MRI
Data Acquisition
1 Localizer
2 Structural scans
3 Multiple flip angles
4 B1 characterization (3T or higher elds)
5 Dynamic (bolus injection + 30s)
6 Structural scans
7 DWI
B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 5 / 19
Dynamic Contrast Enhanced MRI
Data Acquisition
1 Motion correction and co-registration
2 T1 relaxation
3 Gadolinium concentration
4 B1 mapping
For higher eld strengths (3T or more)
5 Arterial input function
6 Kinetic parameter estimation
7 Statistical inference
B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 6 / 19
Dynamic Contrast Enhanced MRI
Tips and Tricks
Automation is the key to accurate and consistent results
Quantitative analysis of DCE-MRI depends on several key acquisition
parameters
oro.dicom provides the facility of converting DICOM header
information into a CSV le
path <- file.path(".")
subject <- 1086100996
dcm <- dicomSeparate(file.path(path, subject))
## Save DICOM header information to CSV file
dcm.csv <- dicomTable(dcm$hdr)
write.csv(dcm.csv, file=paste(subject, "csv", sep="."))
B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 7 / 19
Dynamic Contrast Enhanced MRI
T1 Relaxation
Figure: T1 Phantom
Parametric form dictated
by physics
Multiple flip-angle
acquisitions
Nonlinear regression
Levenburg-Marquardt
minpack.lm
B1 eld correction is
possible
B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 8 / 19
Parameter Estimation
R code for T1 Estimation
R> alpha <- c(5, 10, 20, 25, 15)
R> TR <- 4.22 / 1000 # seconds
R> R1 <- R1.fast(flip, mask, alpha, TR, verbose = TRUE)
Deconstructing data...
Calculating R10 and M0...
Reconstructing results...
R> overlay(vibe, 1/R1$R10[, , 1:nsli(vibe)], z = 13,
+ zlim.x = c(0, 1024), zlim.y = c(0, 2.5),
+ plot.type = "single")
Flip angles in degrees
Repetition time in seconds
Signal intensities = 4D array
Mask = 3D array
Visualization provided by overlay() in oro.nifti
B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 9 / 19
Parameter Estimation
Arterial Input Functions
Cp(t) = D [a1 exp(−m1t) + a2 exp(−m2t)]
Variables
D = 0.1mmol/kg, a1 = 3.99kg/l, a2 = 4.78kg/l , m1 = 0.144min−1
and m2 = 0.0111min−1
Weinmann et al. (1984); Tofts and Kermode (1984).
D = 0.1mmol/kg, a1 = 2.4kg/l, a2 = 0.62kg/l, m1 = 3.0min−1 and
m2 = 0.016min−1
Fritz-Hansen et al. (1996).
Cp(t) = ABt exp(−µBt) + AG [exp(−µG t) − exp(−µBt)] ,
Variables
Orton et al. (2008)
Seed-based algorithm in extract.aif()
B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 10 / 19
Parameter Estimation
Kinetic Parameter Estimation
The standard Kety (1951) model, a single-compartment model, or the
extended Kety model, forms the basis for dcemriS4.
Ct(t) = Ktrans
[Cp(t) ⊗ exp(−kept)]
Ct(t) = vpCp(t) + Ktrans
[Cp(t) ⊗ exp(−kept)]
Estimation techniques include:
Nonlinear regression (Levenburg-Marquardt, minpack.lm)
Bayesian estimation via MCMC (Schmid et al. 2006)
Bayesian estimation via MAP (adaptation of Schmid et al. 2006)
Bayesian estimation via penalized B-splines (Schmid et al. 2009a)
Hierarchical Bayesian methods are not available at this time in
dcemriS4, but will be in PILFER.
http://pilfer.sourceforge.net
B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 11 / 19
Parameter Estimation
Kinetic Parameter Estimation
acqtimes <- str2time(unique(sort(scan("rawtimes.txt", quiet=TRUE))))$time
conc <- readNIfTI(paste(s, d, "perfusion", "gdconc", sep="_"))
mask <- readANALYZE(paste(s, d, "perfusion", "mask2", sep="_"))
fit <- dcemri.lm(conc, (acqtimes - acqtimes[8]) / 60,
ifelse(mask > 0, TRUE, FALSE), model="extended",
aif="fritz.hansen", verbose=TRUE)
writeNIfTI(fit$ktrans, paste(s, d, "perfusion", "ktrans", sep="_"))
overlay(dyn[, ,6:9,],
ifelse(fit$ktrans[, ,6:9] < 0.25, fit$ktrans[, ,6:9], NA),
w=11, zlim.x=c(32,512), col.y=hotmetal(), zlim.y=c(0,.1))
Acquisition times are found in the DICOM data
DICOM header elds are vendor dependent
Zero must be dened as time of gadolinium injection
Mask was created in FSLView
Visualization provided by overlay() in oro.nifti
Time conversion provided by str2time() in oro.dicom
B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 12 / 19
Parameter Estimation
RIDER Neuro MRI: Ktrans
B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 13 / 19
Parameter Estimation
RIDER Neuro MRI: kep
B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 14 / 19
Parameter Estimation
Statistical Inference
Methodology for statistical inference is not included in the dcemriS4
package.
Please use the models/tests in R to perform hypothesis tests.
Hierarchical Bayesian models are available, but not using R.
See Schmid et al. (2009b) for more information.
B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 15 / 19
Conclusions
Conclusions
The package dcemriS4 attempts to provide quantitative methods for
DCE-MRI
Vendor software (GE, Siemens, Philips, etc.)
Proprietary software (JIM, etc.)
Home-grown solutions
Future directions
Multi-compartment models (Buckley et al.)
Parallelization (e.g., multicore)
Semi-parametric procedures (AUC, Tmax , Cmax , etc.)
Feedback
Please provide feedback (pos/neg) on the SourceForge forum or
mailing list.
B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 16 / 19
Conclusions
References I
Fritz-Hansen, T., E. Rostrup, et al. (1996). Measurement of the arterial
concentration of Gd-DTPA using MRI: A step toward quantitative perfusion
imaging. Magnetic Resonance in Medicine, 36, 225–231.
Kety, S. S. (1951). The theory and applications of the exchange of inert gas
at the lungs and tissues, Pharmaceutical Review, 3, 1–41.
Larsson H. B. W, M. Stubgaard, et al. (1990). Quantitation of blood-brain
barrier defect by magnetic resonance imaging and gadolinium-DTPA in
patients with multiple sclerosis and brain tumors. Magnetic Resonance in
Medicine, 16, 117–131.
Orton M. R., J. A. d’Arcy, et al. (2008). Computationally efficient vascular
input function models for quantitative kinetic modelling using DCE-MRI.
Physics in Medicine and Biology, 53, 1225–1239.
Schmid, V., B. Whitcher, et al. (2006). Bayesian Methods for
Pharmacokinetic Models in Dynamic Contrast-Enhanced Magnetic
Resonance Imaging, IEEE Transactions in Medical Imaging, 25 (12),
1627–1636.
B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 17 / 19
Conclusions
References II
Schmid, V. J., B. Whitcher, et al. (2009a). A Bayesian Hierarchical Model
for the Analysis of a Longitudinal Dynamic Contrast-Enhanced MRI
Oncology Study, Magnetic Resonance in Medicine, 61 (1), 163–174.
Schmid, V. J., B. Whitcher, et al. (2009b). A Semi-parametric Technique
for the Quantitative Analysis of Dynamic Contrast-enhanced MR Images
Based on Bayesian P-splines, IEEE Transactions in Medical Imaging, 28 (6),
789–798.
Tofts P. S., A. G. Kermode (1984). Measurement of the blood-brain barrier
permeability and leakage space using dynamic MR imaging. 1. Fundamental
concepts. Magnetic Resonance in Medicine, 17(2), 357–367.
Weinmann H. J., M. Laniado, W. Mutzel (1984). Pharmacokinetics of
Gd-DTPA/dimeglumine after intraveneous injection into healthy volunteers.
Physiological Chemistry and Physics and Medical NMR, 16, 167–172.
B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 18 / 19

Weitere ähnliche Inhalte

Was ist angesagt?

IRJET- A New Strategy to Detect Lung Cancer on CT Images
IRJET- A New Strategy to Detect Lung Cancer on CT ImagesIRJET- A New Strategy to Detect Lung Cancer on CT Images
IRJET- A New Strategy to Detect Lung Cancer on CT ImagesIRJET Journal
 
Medical Image Synthesis with Improved Cycle-GAN: CT from CECT
Medical Image Synthesis with Improved Cycle-GAN: CT from CECT Medical Image Synthesis with Improved Cycle-GAN: CT from CECT
Medical Image Synthesis with Improved Cycle-GAN: CT from CECT BoahKim2
 
Unsupervised Deformable Image Registration Using Cycle-Consistent CNN
Unsupervised Deformable Image Registration Using Cycle-Consistent CNNUnsupervised Deformable Image Registration Using Cycle-Consistent CNN
Unsupervised Deformable Image Registration Using Cycle-Consistent CNNBoahKim2
 
CycleMorph: Cycle consistent unsupervised deformable image registration
CycleMorph: Cycle consistent unsupervised deformable image registrationCycleMorph: Cycle consistent unsupervised deformable image registration
CycleMorph: Cycle consistent unsupervised deformable image registrationBoahKim2
 
COMPARISON OF RADIATION DOSE AND IMAGE QUALITY BETWEEN THE SINGLE DETECTOR CT...
COMPARISON OF RADIATION DOSE AND IMAGE QUALITY BETWEEN THE SINGLE DETECTOR CT...COMPARISON OF RADIATION DOSE AND IMAGE QUALITY BETWEEN THE SINGLE DETECTOR CT...
COMPARISON OF RADIATION DOSE AND IMAGE QUALITY BETWEEN THE SINGLE DETECTOR CT...AM Publications
 
Detection of Diverse Tumefactions in Medial Images by Various Cumulation Methods
Detection of Diverse Tumefactions in Medial Images by Various Cumulation MethodsDetection of Diverse Tumefactions in Medial Images by Various Cumulation Methods
Detection of Diverse Tumefactions in Medial Images by Various Cumulation MethodsIRJET Journal
 
A study of a modified histogram based fast enhancement algorithm (mhbfe)
A study of a modified histogram based fast enhancement algorithm (mhbfe)A study of a modified histogram based fast enhancement algorithm (mhbfe)
A study of a modified histogram based fast enhancement algorithm (mhbfe)sipij
 
Image registration and data fusion techniques.pptx latest save
Image registration and data fusion techniques.pptx latest saveImage registration and data fusion techniques.pptx latest save
Image registration and data fusion techniques.pptx latest saveM'dee Phechudi
 
An Improved TRICKS Method for Dynamic Contrast-Enhanced Tumor Imaging
An Improved TRICKS Method for Dynamic Contrast-Enhanced Tumor ImagingAn Improved TRICKS Method for Dynamic Contrast-Enhanced Tumor Imaging
An Improved TRICKS Method for Dynamic Contrast-Enhanced Tumor ImagingMike Aref
 
Lung Nodule detection System
Lung Nodule detection SystemLung Nodule detection System
Lung Nodule detection SystemEditor IJMTER
 
The Advantages of Two Dimensional Techniques (2D) in Pituitary Adenoma Treatment
The Advantages of Two Dimensional Techniques (2D) in Pituitary Adenoma TreatmentThe Advantages of Two Dimensional Techniques (2D) in Pituitary Adenoma Treatment
The Advantages of Two Dimensional Techniques (2D) in Pituitary Adenoma TreatmentIOSR Journals
 
Review on Medical Image Fusion using Shearlet Transform
Review on Medical Image Fusion using Shearlet TransformReview on Medical Image Fusion using Shearlet Transform
Review on Medical Image Fusion using Shearlet TransformIRJET Journal
 
Image registraiton in Radiation Therapy
Image registraiton in Radiation TherapyImage registraiton in Radiation Therapy
Image registraiton in Radiation TherapyTalluri Anil Kumar
 
Automatic detection of lung cancer in ct images
Automatic detection of lung cancer in ct imagesAutomatic detection of lung cancer in ct images
Automatic detection of lung cancer in ct imageseSAT Publishing House
 
Lung Cancer Prediction using Image Classification
Lung Cancer Prediction using Image ClassificationLung Cancer Prediction using Image Classification
Lung Cancer Prediction using Image ClassificationShreshth Saxena
 
IRJET - Review on Lung Cancer Detection Techniques
IRJET -  	  Review on Lung Cancer Detection TechniquesIRJET -  	  Review on Lung Cancer Detection Techniques
IRJET - Review on Lung Cancer Detection TechniquesIRJET Journal
 
Hybrid Speckle Noise Reduction Method for Abdominal Circumference Segmentatio...
Hybrid Speckle Noise Reduction Method for Abdominal Circumference Segmentatio...Hybrid Speckle Noise Reduction Method for Abdominal Circumference Segmentatio...
Hybrid Speckle Noise Reduction Method for Abdominal Circumference Segmentatio...IJECEIAES
 
Lung Nodule Segmentation in CT Images using Rotation Invariant Local Binary P...
Lung Nodule Segmentation in CT Images using Rotation Invariant Local Binary P...Lung Nodule Segmentation in CT Images using Rotation Invariant Local Binary P...
Lung Nodule Segmentation in CT Images using Rotation Invariant Local Binary P...IDES Editor
 
A Novel Adaptive Denoising Method for Removal of Impulse Noise in Images usin...
A Novel Adaptive Denoising Method for Removal of Impulse Noise in Images usin...A Novel Adaptive Denoising Method for Removal of Impulse Noise in Images usin...
A Novel Adaptive Denoising Method for Removal of Impulse Noise in Images usin...iosrjce
 

Was ist angesagt? (20)

IRJET- A New Strategy to Detect Lung Cancer on CT Images
IRJET- A New Strategy to Detect Lung Cancer on CT ImagesIRJET- A New Strategy to Detect Lung Cancer on CT Images
IRJET- A New Strategy to Detect Lung Cancer on CT Images
 
Medical Image Synthesis with Improved Cycle-GAN: CT from CECT
Medical Image Synthesis with Improved Cycle-GAN: CT from CECT Medical Image Synthesis with Improved Cycle-GAN: CT from CECT
Medical Image Synthesis with Improved Cycle-GAN: CT from CECT
 
Unsupervised Deformable Image Registration Using Cycle-Consistent CNN
Unsupervised Deformable Image Registration Using Cycle-Consistent CNNUnsupervised Deformable Image Registration Using Cycle-Consistent CNN
Unsupervised Deformable Image Registration Using Cycle-Consistent CNN
 
CycleMorph: Cycle consistent unsupervised deformable image registration
CycleMorph: Cycle consistent unsupervised deformable image registrationCycleMorph: Cycle consistent unsupervised deformable image registration
CycleMorph: Cycle consistent unsupervised deformable image registration
 
COMPARISON OF RADIATION DOSE AND IMAGE QUALITY BETWEEN THE SINGLE DETECTOR CT...
COMPARISON OF RADIATION DOSE AND IMAGE QUALITY BETWEEN THE SINGLE DETECTOR CT...COMPARISON OF RADIATION DOSE AND IMAGE QUALITY BETWEEN THE SINGLE DETECTOR CT...
COMPARISON OF RADIATION DOSE AND IMAGE QUALITY BETWEEN THE SINGLE DETECTOR CT...
 
Detection of Diverse Tumefactions in Medial Images by Various Cumulation Methods
Detection of Diverse Tumefactions in Medial Images by Various Cumulation MethodsDetection of Diverse Tumefactions in Medial Images by Various Cumulation Methods
Detection of Diverse Tumefactions in Medial Images by Various Cumulation Methods
 
A study of a modified histogram based fast enhancement algorithm (mhbfe)
A study of a modified histogram based fast enhancement algorithm (mhbfe)A study of a modified histogram based fast enhancement algorithm (mhbfe)
A study of a modified histogram based fast enhancement algorithm (mhbfe)
 
Image registration and data fusion techniques.pptx latest save
Image registration and data fusion techniques.pptx latest saveImage registration and data fusion techniques.pptx latest save
Image registration and data fusion techniques.pptx latest save
 
An Improved TRICKS Method for Dynamic Contrast-Enhanced Tumor Imaging
An Improved TRICKS Method for Dynamic Contrast-Enhanced Tumor ImagingAn Improved TRICKS Method for Dynamic Contrast-Enhanced Tumor Imaging
An Improved TRICKS Method for Dynamic Contrast-Enhanced Tumor Imaging
 
Lung Nodule detection System
Lung Nodule detection SystemLung Nodule detection System
Lung Nodule detection System
 
The Advantages of Two Dimensional Techniques (2D) in Pituitary Adenoma Treatment
The Advantages of Two Dimensional Techniques (2D) in Pituitary Adenoma TreatmentThe Advantages of Two Dimensional Techniques (2D) in Pituitary Adenoma Treatment
The Advantages of Two Dimensional Techniques (2D) in Pituitary Adenoma Treatment
 
Review on Medical Image Fusion using Shearlet Transform
Review on Medical Image Fusion using Shearlet TransformReview on Medical Image Fusion using Shearlet Transform
Review on Medical Image Fusion using Shearlet Transform
 
Image registraiton in Radiation Therapy
Image registraiton in Radiation TherapyImage registraiton in Radiation Therapy
Image registraiton in Radiation Therapy
 
Automatic detection of lung cancer in ct images
Automatic detection of lung cancer in ct imagesAutomatic detection of lung cancer in ct images
Automatic detection of lung cancer in ct images
 
Lung Cancer Prediction using Image Classification
Lung Cancer Prediction using Image ClassificationLung Cancer Prediction using Image Classification
Lung Cancer Prediction using Image Classification
 
Session 7 interventional radiology
Session 7 interventional radiologySession 7 interventional radiology
Session 7 interventional radiology
 
IRJET - Review on Lung Cancer Detection Techniques
IRJET -  	  Review on Lung Cancer Detection TechniquesIRJET -  	  Review on Lung Cancer Detection Techniques
IRJET - Review on Lung Cancer Detection Techniques
 
Hybrid Speckle Noise Reduction Method for Abdominal Circumference Segmentatio...
Hybrid Speckle Noise Reduction Method for Abdominal Circumference Segmentatio...Hybrid Speckle Noise Reduction Method for Abdominal Circumference Segmentatio...
Hybrid Speckle Noise Reduction Method for Abdominal Circumference Segmentatio...
 
Lung Nodule Segmentation in CT Images using Rotation Invariant Local Binary P...
Lung Nodule Segmentation in CT Images using Rotation Invariant Local Binary P...Lung Nodule Segmentation in CT Images using Rotation Invariant Local Binary P...
Lung Nodule Segmentation in CT Images using Rotation Invariant Local Binary P...
 
A Novel Adaptive Denoising Method for Removal of Impulse Noise in Images usin...
A Novel Adaptive Denoising Method for Removal of Impulse Noise in Images usin...A Novel Adaptive Denoising Method for Removal of Impulse Noise in Images usin...
A Novel Adaptive Denoising Method for Removal of Impulse Noise in Images usin...
 

Andere mochten auch

Introduction to trauma imaging. Guidelines and highlights for different imagi...
Introduction to trauma imaging. Guidelines and highlights for different imagi...Introduction to trauma imaging. Guidelines and highlights for different imagi...
Introduction to trauma imaging. Guidelines and highlights for different imagi...hazem youssef
 
Current trends in imaging of Epilepsy
Current trends in imaging of EpilepsyCurrent trends in imaging of Epilepsy
Current trends in imaging of EpilepsySameer Peer
 
Advances in neuroimaging
Advances in neuroimagingAdvances in neuroimaging
Advances in neuroimagingfahad shafi
 
Radiology of trauma patients
Radiology of trauma patientsRadiology of trauma patients
Radiology of trauma patientsReem Alyahya
 
Imaging modalities
Imaging modalitiesImaging modalities
Imaging modalitiesRad Tech
 
Advances in neuroimaging techniques
Advances in neuroimaging techniquesAdvances in neuroimaging techniques
Advances in neuroimaging techniquesSreenivasa Raju
 
Perfusion and dynamic contrast enhanced mri
Perfusion and dynamic contrast enhanced mriPerfusion and dynamic contrast enhanced mri
Perfusion and dynamic contrast enhanced mrifahad shafi
 
Alternative Imaging Techniques
Alternative Imaging TechniquesAlternative Imaging Techniques
Alternative Imaging TechniquesChristina Garloff
 
Imaging biomarkers in Clinical trials
Imaging biomarkers in Clinical trialsImaging biomarkers in Clinical trials
Imaging biomarkers in Clinical trialsAnke Maertens
 

Andere mochten auch (11)

Introduction to trauma imaging. Guidelines and highlights for different imagi...
Introduction to trauma imaging. Guidelines and highlights for different imagi...Introduction to trauma imaging. Guidelines and highlights for different imagi...
Introduction to trauma imaging. Guidelines and highlights for different imagi...
 
Mri basics
Mri basicsMri basics
Mri basics
 
Mri basics
Mri basics Mri basics
Mri basics
 
Current trends in imaging of Epilepsy
Current trends in imaging of EpilepsyCurrent trends in imaging of Epilepsy
Current trends in imaging of Epilepsy
 
Advances in neuroimaging
Advances in neuroimagingAdvances in neuroimaging
Advances in neuroimaging
 
Radiology of trauma patients
Radiology of trauma patientsRadiology of trauma patients
Radiology of trauma patients
 
Imaging modalities
Imaging modalitiesImaging modalities
Imaging modalities
 
Advances in neuroimaging techniques
Advances in neuroimaging techniquesAdvances in neuroimaging techniques
Advances in neuroimaging techniques
 
Perfusion and dynamic contrast enhanced mri
Perfusion and dynamic contrast enhanced mriPerfusion and dynamic contrast enhanced mri
Perfusion and dynamic contrast enhanced mri
 
Alternative Imaging Techniques
Alternative Imaging TechniquesAlternative Imaging Techniques
Alternative Imaging Techniques
 
Imaging biomarkers in Clinical trials
Imaging biomarkers in Clinical trialsImaging biomarkers in Clinical trials
Imaging biomarkers in Clinical trials
 

Ähnlich wie Quantitative Analysis of DCE-MRI using R

bayesImageS: Bayesian computation for medical Image Segmentation using a hidd...
bayesImageS: Bayesian computation for medical Image Segmentation using a hidd...bayesImageS: Bayesian computation for medical Image Segmentation using a hidd...
bayesImageS: Bayesian computation for medical Image Segmentation using a hidd...Matt Moores
 
Implementation of an audit and dose reduction program for ct matyagin
Implementation of an audit and dose reduction program for ct matyaginImplementation of an audit and dose reduction program for ct matyagin
Implementation of an audit and dose reduction program for ct matyaginLeishman Associates
 
Parsons and Robar, An investigation of kV CBCT image quality and dose reducti...
Parsons and Robar, An investigation of kV CBCT image quality and dose reducti...Parsons and Robar, An investigation of kV CBCT image quality and dose reducti...
Parsons and Robar, An investigation of kV CBCT image quality and dose reducti...David Parsons
 
New Techniques in Radiotherapy
New Techniques in RadiotherapyNew Techniques in Radiotherapy
New Techniques in RadiotherapySantam Chakraborty
 
의료영역에서의3D 프린팅적용을위한의료영상모델링
의료영역에서의3D 프린팅적용을위한의료영상모델링의료영역에서의3D 프린팅적용을위한의료영상모델링
의료영역에서의3D 프린팅적용을위한의료영상모델링Namkug Kim
 
RINKEL-ISOTDAQ2015.ppt
RINKEL-ISOTDAQ2015.pptRINKEL-ISOTDAQ2015.ppt
RINKEL-ISOTDAQ2015.pptvijaykumar382075
 
Switchable and tunable deep beamformer using adaptive instance normalization ...
Switchable and tunable deep beamformer using adaptive instance normalization ...Switchable and tunable deep beamformer using adaptive instance normalization ...
Switchable and tunable deep beamformer using adaptive instance normalization ...Shujaat Khan
 
Contourlet Transform Based Method For Medical Image Denoising
Contourlet Transform Based Method For Medical Image DenoisingContourlet Transform Based Method For Medical Image Denoising
Contourlet Transform Based Method For Medical Image DenoisingCSCJournals
 
3-D WAVELET CODEC (COMPRESSION/DECOMPRESSION) FOR 3-D MEDICAL IMAGES
3-D WAVELET CODEC (COMPRESSION/DECOMPRESSION) FOR 3-D MEDICAL IMAGES3-D WAVELET CODEC (COMPRESSION/DECOMPRESSION) FOR 3-D MEDICAL IMAGES
3-D WAVELET CODEC (COMPRESSION/DECOMPRESSION) FOR 3-D MEDICAL IMAGESijitcs
 
ECR2016_C-2206- Layal
ECR2016_C-2206- LayalECR2016_C-2206- Layal
ECR2016_C-2206- LayalLayal Jambi
 
Automatic Segmentation of Brachial Artery based on Fuzzy C-Means Pixel Clust...
Automatic Segmentation of Brachial Artery based on Fuzzy  C-Means Pixel Clust...Automatic Segmentation of Brachial Artery based on Fuzzy  C-Means Pixel Clust...
Automatic Segmentation of Brachial Artery based on Fuzzy C-Means Pixel Clust...IJECEIAES
 
Magnetic resonance imaging as a tool to assess reliability in simulating hemo...
Magnetic resonance imaging as a tool to assess reliability in simulating hemo...Magnetic resonance imaging as a tool to assess reliability in simulating hemo...
Magnetic resonance imaging as a tool to assess reliability in simulating hemo...Cardiovascular Diagnosis and Therapy (CDT)
 
CBCT in dental practice
CBCT in dental practiceCBCT in dental practice
CBCT in dental practiceZana Hussein
 
PhD Qualifying Exam Slides
PhD Qualifying Exam SlidesPhD Qualifying Exam Slides
PhD Qualifying Exam SlidesOlalekan Ogunmolu
 
(17 22) karthick sir
(17 22) karthick sir(17 22) karthick sir
(17 22) karthick sirIISRTJournals
 
The Use Of High Energy Protons
The Use Of High Energy ProtonsThe Use Of High Energy Protons
The Use Of High Energy Protonsfondas vakalis
 
Dose reduction in MDCT . Daniel J.P , Khorfakhan hospital . UAE
Dose reduction in MDCT . Daniel J.P , Khorfakhan hospital . UAEDose reduction in MDCT . Daniel J.P , Khorfakhan hospital . UAE
Dose reduction in MDCT . Daniel J.P , Khorfakhan hospital . UAEhaijaypee_dan
 

Ähnlich wie Quantitative Analysis of DCE-MRI using R (20)

bayesImageS: Bayesian computation for medical Image Segmentation using a hidd...
bayesImageS: Bayesian computation for medical Image Segmentation using a hidd...bayesImageS: Bayesian computation for medical Image Segmentation using a hidd...
bayesImageS: Bayesian computation for medical Image Segmentation using a hidd...
 
Implementation of an audit and dose reduction program for ct matyagin
Implementation of an audit and dose reduction program for ct matyaginImplementation of an audit and dose reduction program for ct matyagin
Implementation of an audit and dose reduction program for ct matyagin
 
Parsons and Robar, An investigation of kV CBCT image quality and dose reducti...
Parsons and Robar, An investigation of kV CBCT image quality and dose reducti...Parsons and Robar, An investigation of kV CBCT image quality and dose reducti...
Parsons and Robar, An investigation of kV CBCT image quality and dose reducti...
 
New Techniques in Radiotherapy
New Techniques in RadiotherapyNew Techniques in Radiotherapy
New Techniques in Radiotherapy
 
의료영역에서의3D 프린팅적용을위한의료영상모델링
의료영역에서의3D 프린팅적용을위한의료영상모델링의료영역에서의3D 프린팅적용을위한의료영상모델링
의료영역에서의3D 프린팅적용을위한의료영상모델링
 
RINKEL-ISOTDAQ2015.ppt
RINKEL-ISOTDAQ2015.pptRINKEL-ISOTDAQ2015.ppt
RINKEL-ISOTDAQ2015.ppt
 
Switchable and tunable deep beamformer using adaptive instance normalization ...
Switchable and tunable deep beamformer using adaptive instance normalization ...Switchable and tunable deep beamformer using adaptive instance normalization ...
Switchable and tunable deep beamformer using adaptive instance normalization ...
 
Contourlet Transform Based Method For Medical Image Denoising
Contourlet Transform Based Method For Medical Image DenoisingContourlet Transform Based Method For Medical Image Denoising
Contourlet Transform Based Method For Medical Image Denoising
 
3-D WAVELET CODEC (COMPRESSION/DECOMPRESSION) FOR 3-D MEDICAL IMAGES
3-D WAVELET CODEC (COMPRESSION/DECOMPRESSION) FOR 3-D MEDICAL IMAGES3-D WAVELET CODEC (COMPRESSION/DECOMPRESSION) FOR 3-D MEDICAL IMAGES
3-D WAVELET CODEC (COMPRESSION/DECOMPRESSION) FOR 3-D MEDICAL IMAGES
 
Decraene spie-09
Decraene spie-09Decraene spie-09
Decraene spie-09
 
Session 6 image quality ct and session 8 dose ct
Session 6  image quality ct and  session 8 dose ctSession 6  image quality ct and  session 8 dose ct
Session 6 image quality ct and session 8 dose ct
 
ECR2016_C-2206- Layal
ECR2016_C-2206- LayalECR2016_C-2206- Layal
ECR2016_C-2206- Layal
 
20
2020
20
 
Automatic Segmentation of Brachial Artery based on Fuzzy C-Means Pixel Clust...
Automatic Segmentation of Brachial Artery based on Fuzzy  C-Means Pixel Clust...Automatic Segmentation of Brachial Artery based on Fuzzy  C-Means Pixel Clust...
Automatic Segmentation of Brachial Artery based on Fuzzy C-Means Pixel Clust...
 
Magnetic resonance imaging as a tool to assess reliability in simulating hemo...
Magnetic resonance imaging as a tool to assess reliability in simulating hemo...Magnetic resonance imaging as a tool to assess reliability in simulating hemo...
Magnetic resonance imaging as a tool to assess reliability in simulating hemo...
 
CBCT in dental practice
CBCT in dental practiceCBCT in dental practice
CBCT in dental practice
 
PhD Qualifying Exam Slides
PhD Qualifying Exam SlidesPhD Qualifying Exam Slides
PhD Qualifying Exam Slides
 
(17 22) karthick sir
(17 22) karthick sir(17 22) karthick sir
(17 22) karthick sir
 
The Use Of High Energy Protons
The Use Of High Energy ProtonsThe Use Of High Energy Protons
The Use Of High Energy Protons
 
Dose reduction in MDCT . Daniel J.P , Khorfakhan hospital . UAE
Dose reduction in MDCT . Daniel J.P , Khorfakhan hospital . UAEDose reduction in MDCT . Daniel J.P , Khorfakhan hospital . UAE
Dose reduction in MDCT . Daniel J.P , Khorfakhan hospital . UAE
 

KĂźrzlich hochgeladen

Call Girls Kathua Just Call 8250077686 Top Class Call Girl Service Available
Call Girls Kathua Just Call 8250077686 Top Class Call Girl Service AvailableCall Girls Kathua Just Call 8250077686 Top Class Call Girl Service Available
Call Girls Kathua Just Call 8250077686 Top Class Call Girl Service AvailableDipal Arora
 
Exclusive Call Girls Bangalore {7304373326} ❤️VVIP POOJA Call Girls in Bangal...
Exclusive Call Girls Bangalore {7304373326} ❤️VVIP POOJA Call Girls in Bangal...Exclusive Call Girls Bangalore {7304373326} ❤️VVIP POOJA Call Girls in Bangal...
Exclusive Call Girls Bangalore {7304373326} ❤️VVIP POOJA Call Girls in Bangal...Sheetaleventcompany
 
Premium Call Girls Dehradun {8854095900} ❤️VVIP ANJU Call Girls in Dehradun U...
Premium Call Girls Dehradun {8854095900} ❤️VVIP ANJU Call Girls in Dehradun U...Premium Call Girls Dehradun {8854095900} ❤️VVIP ANJU Call Girls in Dehradun U...
Premium Call Girls Dehradun {8854095900} ❤️VVIP ANJU Call Girls in Dehradun U...Sheetaleventcompany
 
Call Girls Mussoorie Just Call 8854095900 Top Class Call Girl Service Available
Call Girls Mussoorie Just Call 8854095900 Top Class Call Girl Service AvailableCall Girls Mussoorie Just Call 8854095900 Top Class Call Girl Service Available
Call Girls Mussoorie Just Call 8854095900 Top Class Call Girl Service AvailableJanvi Singh
 
Call Girls in Lucknow Just Call 👉👉 8875999948 Top Class Call Girl Service Ava...
Call Girls in Lucknow Just Call 👉👉 8875999948 Top Class Call Girl Service Ava...Call Girls in Lucknow Just Call 👉👉 8875999948 Top Class Call Girl Service Ava...
Call Girls in Lucknow Just Call 👉👉 8875999948 Top Class Call Girl Service Ava...Janvi Singh
 
Bhawanipatna Call Girls 📞9332606886 Call Girls in Bhawanipatna Escorts servic...
Bhawanipatna Call Girls 📞9332606886 Call Girls in Bhawanipatna Escorts servic...Bhawanipatna Call Girls 📞9332606886 Call Girls in Bhawanipatna Escorts servic...
Bhawanipatna Call Girls 📞9332606886 Call Girls in Bhawanipatna Escorts servic...Dipal Arora
 
Call Girls in Lucknow Just Call 👉👉8630512678 Top Class Call Girl Service Avai...
Call Girls in Lucknow Just Call 👉👉8630512678 Top Class Call Girl Service Avai...Call Girls in Lucknow Just Call 👉👉8630512678 Top Class Call Girl Service Avai...
Call Girls in Lucknow Just Call 👉👉8630512678 Top Class Call Girl Service Avai...soniyagrag336
 
Kolkata Call Girls Shobhabazar 💯Call Us 🔝 8005736733 🔝 💃 Top Class Call Gir...
Kolkata Call Girls Shobhabazar  💯Call Us 🔝 8005736733 🔝 💃  Top Class Call Gir...Kolkata Call Girls Shobhabazar  💯Call Us 🔝 8005736733 🔝 💃  Top Class Call Gir...
Kolkata Call Girls Shobhabazar 💯Call Us 🔝 8005736733 🔝 💃 Top Class Call Gir...Namrata Singh
 
Pune Call Girl Service 📞9xx000xx09📞Just Call Divya📲 Call Girl In Pune No💰Adva...
Pune Call Girl Service 📞9xx000xx09📞Just Call Divya📲 Call Girl In Pune No💰Adva...Pune Call Girl Service 📞9xx000xx09📞Just Call Divya📲 Call Girl In Pune No💰Adva...
Pune Call Girl Service 📞9xx000xx09📞Just Call Divya📲 Call Girl In Pune No💰Adva...Sheetaleventcompany
 
Chandigarh Call Girls Service ❤️🍑 9809698092 👄🫦Independent Escort Service Cha...
Chandigarh Call Girls Service ❤️🍑 9809698092 👄🫦Independent Escort Service Cha...Chandigarh Call Girls Service ❤️🍑 9809698092 👄🫦Independent Escort Service Cha...
Chandigarh Call Girls Service ❤️🍑 9809698092 👄🫦Independent Escort Service Cha...Sheetaleventcompany
 
Circulatory Shock, types and stages, compensatory mechanisms
Circulatory Shock, types and stages, compensatory mechanismsCirculatory Shock, types and stages, compensatory mechanisms
Circulatory Shock, types and stages, compensatory mechanismsMedicoseAcademics
 
💚Reliable Call Girls Chandigarh 💯Niamh 📲🔝8868886958🔝Call Girl In Chandigarh N...
💚Reliable Call Girls Chandigarh 💯Niamh 📲🔝8868886958🔝Call Girl In Chandigarh N...💚Reliable Call Girls Chandigarh 💯Niamh 📲🔝8868886958🔝Call Girl In Chandigarh N...
💚Reliable Call Girls Chandigarh 💯Niamh 📲🔝8868886958🔝Call Girl In Chandigarh N...Sheetaleventcompany
 
Low Cost Call Girls Bangalore {9179660964} ❤️VVIP NISHA Call Girls in Bangalo...
Low Cost Call Girls Bangalore {9179660964} ❤️VVIP NISHA Call Girls in Bangalo...Low Cost Call Girls Bangalore {9179660964} ❤️VVIP NISHA Call Girls in Bangalo...
Low Cost Call Girls Bangalore {9179660964} ❤️VVIP NISHA Call Girls in Bangalo...Sheetaleventcompany
 
💚Chandigarh Call Girls Service 💯Piya 📲🔝8868886958🔝Call Girls In Chandigarh No...
💚Chandigarh Call Girls Service 💯Piya 📲🔝8868886958🔝Call Girls In Chandigarh No...💚Chandigarh Call Girls Service 💯Piya 📲🔝8868886958🔝Call Girls In Chandigarh No...
💚Chandigarh Call Girls Service 💯Piya 📲🔝8868886958🔝Call Girls In Chandigarh No...Sheetaleventcompany
 
Premium Call Girls Nagpur {9xx000xx09} ❤️VVIP POOJA Call Girls in Nagpur Maha...
Premium Call Girls Nagpur {9xx000xx09} ❤️VVIP POOJA Call Girls in Nagpur Maha...Premium Call Girls Nagpur {9xx000xx09} ❤️VVIP POOJA Call Girls in Nagpur Maha...
Premium Call Girls Nagpur {9xx000xx09} ❤️VVIP POOJA Call Girls in Nagpur Maha...Sheetaleventcompany
 
Call girls Service Phullen / 9332606886 Genuine Call girls with real Photos a...
Call girls Service Phullen / 9332606886 Genuine Call girls with real Photos a...Call girls Service Phullen / 9332606886 Genuine Call girls with real Photos a...
Call girls Service Phullen / 9332606886 Genuine Call girls with real Photos a...call girls hydrabad
 
💚Call Girls In Amritsar 💯Anvi 📲🔝8725944379🔝Amritsar Call Girl No💰Advance Cash...
💚Call Girls In Amritsar 💯Anvi 📲🔝8725944379🔝Amritsar Call Girl No💰Advance Cash...💚Call Girls In Amritsar 💯Anvi 📲🔝8725944379🔝Amritsar Call Girl No💰Advance Cash...
💚Call Girls In Amritsar 💯Anvi 📲🔝8725944379🔝Amritsar Call Girl No💰Advance Cash...Sheetaleventcompany
 
Call Girl In Indore 📞9235973566📞 Just📲 Call Inaaya Indore Call Girls Service ...
Call Girl In Indore 📞9235973566📞 Just📲 Call Inaaya Indore Call Girls Service ...Call Girl In Indore 📞9235973566📞 Just📲 Call Inaaya Indore Call Girls Service ...
Call Girl In Indore 📞9235973566📞 Just📲 Call Inaaya Indore Call Girls Service ...Sheetaleventcompany
 
Independent Bangalore Call Girls (Adult Only) 💯Call Us 🔝 7304373326 🔝 💃 Escor...
Independent Bangalore Call Girls (Adult Only) 💯Call Us 🔝 7304373326 🔝 💃 Escor...Independent Bangalore Call Girls (Adult Only) 💯Call Us 🔝 7304373326 🔝 💃 Escor...
Independent Bangalore Call Girls (Adult Only) 💯Call Us 🔝 7304373326 🔝 💃 Escor...Sheetaleventcompany
 
Ahmedabad Call Girls Book Now 9630942363 Top Class Ahmedabad Escort Service A...
Ahmedabad Call Girls Book Now 9630942363 Top Class Ahmedabad Escort Service A...Ahmedabad Call Girls Book Now 9630942363 Top Class Ahmedabad Escort Service A...
Ahmedabad Call Girls Book Now 9630942363 Top Class Ahmedabad Escort Service A...Genuine Call Girls
 

KĂźrzlich hochgeladen (20)

Call Girls Kathua Just Call 8250077686 Top Class Call Girl Service Available
Call Girls Kathua Just Call 8250077686 Top Class Call Girl Service AvailableCall Girls Kathua Just Call 8250077686 Top Class Call Girl Service Available
Call Girls Kathua Just Call 8250077686 Top Class Call Girl Service Available
 
Exclusive Call Girls Bangalore {7304373326} ❤️VVIP POOJA Call Girls in Bangal...
Exclusive Call Girls Bangalore {7304373326} ❤️VVIP POOJA Call Girls in Bangal...Exclusive Call Girls Bangalore {7304373326} ❤️VVIP POOJA Call Girls in Bangal...
Exclusive Call Girls Bangalore {7304373326} ❤️VVIP POOJA Call Girls in Bangal...
 
Premium Call Girls Dehradun {8854095900} ❤️VVIP ANJU Call Girls in Dehradun U...
Premium Call Girls Dehradun {8854095900} ❤️VVIP ANJU Call Girls in Dehradun U...Premium Call Girls Dehradun {8854095900} ❤️VVIP ANJU Call Girls in Dehradun U...
Premium Call Girls Dehradun {8854095900} ❤️VVIP ANJU Call Girls in Dehradun U...
 
Call Girls Mussoorie Just Call 8854095900 Top Class Call Girl Service Available
Call Girls Mussoorie Just Call 8854095900 Top Class Call Girl Service AvailableCall Girls Mussoorie Just Call 8854095900 Top Class Call Girl Service Available
Call Girls Mussoorie Just Call 8854095900 Top Class Call Girl Service Available
 
Call Girls in Lucknow Just Call 👉👉 8875999948 Top Class Call Girl Service Ava...
Call Girls in Lucknow Just Call 👉👉 8875999948 Top Class Call Girl Service Ava...Call Girls in Lucknow Just Call 👉👉 8875999948 Top Class Call Girl Service Ava...
Call Girls in Lucknow Just Call 👉👉 8875999948 Top Class Call Girl Service Ava...
 
Bhawanipatna Call Girls 📞9332606886 Call Girls in Bhawanipatna Escorts servic...
Bhawanipatna Call Girls 📞9332606886 Call Girls in Bhawanipatna Escorts servic...Bhawanipatna Call Girls 📞9332606886 Call Girls in Bhawanipatna Escorts servic...
Bhawanipatna Call Girls 📞9332606886 Call Girls in Bhawanipatna Escorts servic...
 
Call Girls in Lucknow Just Call 👉👉8630512678 Top Class Call Girl Service Avai...
Call Girls in Lucknow Just Call 👉👉8630512678 Top Class Call Girl Service Avai...Call Girls in Lucknow Just Call 👉👉8630512678 Top Class Call Girl Service Avai...
Call Girls in Lucknow Just Call 👉👉8630512678 Top Class Call Girl Service Avai...
 
Kolkata Call Girls Shobhabazar 💯Call Us 🔝 8005736733 🔝 💃 Top Class Call Gir...
Kolkata Call Girls Shobhabazar  💯Call Us 🔝 8005736733 🔝 💃  Top Class Call Gir...Kolkata Call Girls Shobhabazar  💯Call Us 🔝 8005736733 🔝 💃  Top Class Call Gir...
Kolkata Call Girls Shobhabazar 💯Call Us 🔝 8005736733 🔝 💃 Top Class Call Gir...
 
Pune Call Girl Service 📞9xx000xx09📞Just Call Divya📲 Call Girl In Pune No💰Adva...
Pune Call Girl Service 📞9xx000xx09📞Just Call Divya📲 Call Girl In Pune No💰Adva...Pune Call Girl Service 📞9xx000xx09📞Just Call Divya📲 Call Girl In Pune No💰Adva...
Pune Call Girl Service 📞9xx000xx09📞Just Call Divya📲 Call Girl In Pune No💰Adva...
 
Chandigarh Call Girls Service ❤️🍑 9809698092 👄🫦Independent Escort Service Cha...
Chandigarh Call Girls Service ❤️🍑 9809698092 👄🫦Independent Escort Service Cha...Chandigarh Call Girls Service ❤️🍑 9809698092 👄🫦Independent Escort Service Cha...
Chandigarh Call Girls Service ❤️🍑 9809698092 👄🫦Independent Escort Service Cha...
 
Circulatory Shock, types and stages, compensatory mechanisms
Circulatory Shock, types and stages, compensatory mechanismsCirculatory Shock, types and stages, compensatory mechanisms
Circulatory Shock, types and stages, compensatory mechanisms
 
💚Reliable Call Girls Chandigarh 💯Niamh 📲🔝8868886958🔝Call Girl In Chandigarh N...
💚Reliable Call Girls Chandigarh 💯Niamh 📲🔝8868886958🔝Call Girl In Chandigarh N...💚Reliable Call Girls Chandigarh 💯Niamh 📲🔝8868886958🔝Call Girl In Chandigarh N...
💚Reliable Call Girls Chandigarh 💯Niamh 📲🔝8868886958🔝Call Girl In Chandigarh N...
 
Low Cost Call Girls Bangalore {9179660964} ❤️VVIP NISHA Call Girls in Bangalo...
Low Cost Call Girls Bangalore {9179660964} ❤️VVIP NISHA Call Girls in Bangalo...Low Cost Call Girls Bangalore {9179660964} ❤️VVIP NISHA Call Girls in Bangalo...
Low Cost Call Girls Bangalore {9179660964} ❤️VVIP NISHA Call Girls in Bangalo...
 
💚Chandigarh Call Girls Service 💯Piya 📲🔝8868886958🔝Call Girls In Chandigarh No...
💚Chandigarh Call Girls Service 💯Piya 📲🔝8868886958🔝Call Girls In Chandigarh No...💚Chandigarh Call Girls Service 💯Piya 📲🔝8868886958🔝Call Girls In Chandigarh No...
💚Chandigarh Call Girls Service 💯Piya 📲🔝8868886958🔝Call Girls In Chandigarh No...
 
Premium Call Girls Nagpur {9xx000xx09} ❤️VVIP POOJA Call Girls in Nagpur Maha...
Premium Call Girls Nagpur {9xx000xx09} ❤️VVIP POOJA Call Girls in Nagpur Maha...Premium Call Girls Nagpur {9xx000xx09} ❤️VVIP POOJA Call Girls in Nagpur Maha...
Premium Call Girls Nagpur {9xx000xx09} ❤️VVIP POOJA Call Girls in Nagpur Maha...
 
Call girls Service Phullen / 9332606886 Genuine Call girls with real Photos a...
Call girls Service Phullen / 9332606886 Genuine Call girls with real Photos a...Call girls Service Phullen / 9332606886 Genuine Call girls with real Photos a...
Call girls Service Phullen / 9332606886 Genuine Call girls with real Photos a...
 
💚Call Girls In Amritsar 💯Anvi 📲🔝8725944379🔝Amritsar Call Girl No💰Advance Cash...
💚Call Girls In Amritsar 💯Anvi 📲🔝8725944379🔝Amritsar Call Girl No💰Advance Cash...💚Call Girls In Amritsar 💯Anvi 📲🔝8725944379🔝Amritsar Call Girl No💰Advance Cash...
💚Call Girls In Amritsar 💯Anvi 📲🔝8725944379🔝Amritsar Call Girl No💰Advance Cash...
 
Call Girl In Indore 📞9235973566📞 Just📲 Call Inaaya Indore Call Girls Service ...
Call Girl In Indore 📞9235973566📞 Just📲 Call Inaaya Indore Call Girls Service ...Call Girl In Indore 📞9235973566📞 Just📲 Call Inaaya Indore Call Girls Service ...
Call Girl In Indore 📞9235973566📞 Just📲 Call Inaaya Indore Call Girls Service ...
 
Independent Bangalore Call Girls (Adult Only) 💯Call Us 🔝 7304373326 🔝 💃 Escor...
Independent Bangalore Call Girls (Adult Only) 💯Call Us 🔝 7304373326 🔝 💃 Escor...Independent Bangalore Call Girls (Adult Only) 💯Call Us 🔝 7304373326 🔝 💃 Escor...
Independent Bangalore Call Girls (Adult Only) 💯Call Us 🔝 7304373326 🔝 💃 Escor...
 
Ahmedabad Call Girls Book Now 9630942363 Top Class Ahmedabad Escort Service A...
Ahmedabad Call Girls Book Now 9630942363 Top Class Ahmedabad Escort Service A...Ahmedabad Call Girls Book Now 9630942363 Top Class Ahmedabad Escort Service A...
Ahmedabad Call Girls Book Now 9630942363 Top Class Ahmedabad Escort Service A...
 

Quantitative Analysis of DCE-MRI using R

  • 1. Quantitative Analysis of Dynamic Contrast-Enhanced MRI using R The dcemriS4 package Brandon Whitcher PhD CStat b.whitcher@imperial.ac.uk GlaxoSmithKline Clinical Imaging Centre London, United Kingdom rigorousanalytics.blogspot.com — www.dcemri.org — dcemri.blogspot.com @whitcher — @dcemri — @rigorous 20 July 2010 for useR!2010 B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 1 / 19
  • 2. Outline 1 Motivation 2 Dynamic Contrast Enhanced MRI 3 Parameter Estimation 4 Conclusions B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 2 / 19
  • 3. Motivation Introduction The quantitative analysis of DCE-MRI involves tting pharmacokinetic (PK) models to the concentration of a contrast agent over time. Gadolinium-based contrast agents, involving a small molecular-weight substance, are injected after several baseline scans. Using T1-weighted sequences, the reduction in T1 relaxation time caused by the contrast agent is the signal dominant enhancement. T1-weighted kinetic curves have three major phases the upslope maximum enhancement washout Dynamic acquisition 5-10 minutes for oncology applications 60-90 minutes for neurology (BBB) applications dcemriS4 facilitates all stages of data analysis for DCE-MRI, and diffusion-weighted imaging (DWI), using S4 nifti objects. B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 3 / 19
  • 4. Motivation RIDER Neuro MRI B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 4 / 19
  • 5. Dynamic Contrast Enhanced MRI Data Acquisition 1 Localizer 2 Structural scans 3 Multiple flip angles 4 B1 characterization (3T or higher elds) 5 Dynamic (bolus injection + 30s) 6 Structural scans 7 DWI B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 5 / 19
  • 6. Dynamic Contrast Enhanced MRI Data Acquisition 1 Motion correction and co-registration 2 T1 relaxation 3 Gadolinium concentration 4 B1 mapping For higher eld strengths (3T or more) 5 Arterial input function 6 Kinetic parameter estimation 7 Statistical inference B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 6 / 19
  • 7. Dynamic Contrast Enhanced MRI Tips and Tricks Automation is the key to accurate and consistent results Quantitative analysis of DCE-MRI depends on several key acquisition parameters oro.dicom provides the facility of converting DICOM header information into a CSV le path <- file.path(".") subject <- 1086100996 dcm <- dicomSeparate(file.path(path, subject)) ## Save DICOM header information to CSV file dcm.csv <- dicomTable(dcm$hdr) write.csv(dcm.csv, file=paste(subject, "csv", sep=".")) B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 7 / 19
  • 8. Dynamic Contrast Enhanced MRI T1 Relaxation Figure: T1 Phantom Parametric form dictated by physics Multiple flip-angle acquisitions Nonlinear regression Levenburg-Marquardt minpack.lm B1 eld correction is possible B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 8 / 19
  • 9. Parameter Estimation R code for T1 Estimation R> alpha <- c(5, 10, 20, 25, 15) R> TR <- 4.22 / 1000 # seconds R> R1 <- R1.fast(flip, mask, alpha, TR, verbose = TRUE) Deconstructing data... Calculating R10 and M0... Reconstructing results... R> overlay(vibe, 1/R1$R10[, , 1:nsli(vibe)], z = 13, + zlim.x = c(0, 1024), zlim.y = c(0, 2.5), + plot.type = "single") Flip angles in degrees Repetition time in seconds Signal intensities = 4D array Mask = 3D array Visualization provided by overlay() in oro.nifti B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 9 / 19
  • 10. Parameter Estimation Arterial Input Functions Cp(t) = D [a1 exp(−m1t) + a2 exp(−m2t)] Variables D = 0.1mmol/kg, a1 = 3.99kg/l, a2 = 4.78kg/l , m1 = 0.144min−1 and m2 = 0.0111min−1 Weinmann et al. (1984); Tofts and Kermode (1984). D = 0.1mmol/kg, a1 = 2.4kg/l, a2 = 0.62kg/l, m1 = 3.0min−1 and m2 = 0.016min−1 Fritz-Hansen et al. (1996). Cp(t) = ABt exp(−µBt) + AG [exp(−µG t) − exp(−µBt)] , Variables Orton et al. (2008) Seed-based algorithm in extract.aif() B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 10 / 19
  • 11. Parameter Estimation Kinetic Parameter Estimation The standard Kety (1951) model, a single-compartment model, or the extended Kety model, forms the basis for dcemriS4. Ct(t) = Ktrans [Cp(t) ⊗ exp(−kept)] Ct(t) = vpCp(t) + Ktrans [Cp(t) ⊗ exp(−kept)] Estimation techniques include: Nonlinear regression (Levenburg-Marquardt, minpack.lm) Bayesian estimation via MCMC (Schmid et al. 2006) Bayesian estimation via MAP (adaptation of Schmid et al. 2006) Bayesian estimation via penalized B-splines (Schmid et al. 2009a) Hierarchical Bayesian methods are not available at this time in dcemriS4, but will be in PILFER. http://pilfer.sourceforge.net B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 11 / 19
  • 12. Parameter Estimation Kinetic Parameter Estimation acqtimes <- str2time(unique(sort(scan("rawtimes.txt", quiet=TRUE))))$time conc <- readNIfTI(paste(s, d, "perfusion", "gdconc", sep="_")) mask <- readANALYZE(paste(s, d, "perfusion", "mask2", sep="_")) fit <- dcemri.lm(conc, (acqtimes - acqtimes[8]) / 60, ifelse(mask > 0, TRUE, FALSE), model="extended", aif="fritz.hansen", verbose=TRUE) writeNIfTI(fit$ktrans, paste(s, d, "perfusion", "ktrans", sep="_")) overlay(dyn[, ,6:9,], ifelse(fit$ktrans[, ,6:9] < 0.25, fit$ktrans[, ,6:9], NA), w=11, zlim.x=c(32,512), col.y=hotmetal(), zlim.y=c(0,.1)) Acquisition times are found in the DICOM data DICOM header elds are vendor dependent Zero must be dened as time of gadolinium injection Mask was created in FSLView Visualization provided by overlay() in oro.nifti Time conversion provided by str2time() in oro.dicom B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 12 / 19
  • 13. Parameter Estimation RIDER Neuro MRI: Ktrans B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 13 / 19
  • 14. Parameter Estimation RIDER Neuro MRI: kep B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 14 / 19
  • 15. Parameter Estimation Statistical Inference Methodology for statistical inference is not included in the dcemriS4 package. Please use the models/tests in R to perform hypothesis tests. Hierarchical Bayesian models are available, but not using R. See Schmid et al. (2009b) for more information. B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 15 / 19
  • 16. Conclusions Conclusions The package dcemriS4 attempts to provide quantitative methods for DCE-MRI Vendor software (GE, Siemens, Philips, etc.) Proprietary software (JIM, etc.) Home-grown solutions Future directions Multi-compartment models (Buckley et al.) Parallelization (e.g., multicore) Semi-parametric procedures (AUC, Tmax , Cmax , etc.) Feedback Please provide feedback (pos/neg) on the SourceForge forum or mailing list. B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 16 / 19
  • 17. Conclusions References I Fritz-Hansen, T., E. Rostrup, et al. (1996). Measurement of the arterial concentration of Gd-DTPA using MRI: A step toward quantitative perfusion imaging. Magnetic Resonance in Medicine, 36, 225–231. Kety, S. S. (1951). The theory and applications of the exchange of inert gas at the lungs and tissues, Pharmaceutical Review, 3, 1–41. Larsson H. B. W, M. Stubgaard, et al. (1990). Quantitation of blood-brain barrier defect by magnetic resonance imaging and gadolinium-DTPA in patients with multiple sclerosis and brain tumors. Magnetic Resonance in Medicine, 16, 117–131. Orton M. R., J. A. d’Arcy, et al. (2008). Computationally ecient vascular input function models for quantitative kinetic modelling using DCE-MRI. Physics in Medicine and Biology, 53, 1225–1239. Schmid, V., B. Whitcher, et al. (2006). Bayesian Methods for Pharmacokinetic Models in Dynamic Contrast-Enhanced Magnetic Resonance Imaging, IEEE Transactions in Medical Imaging, 25 (12), 1627–1636. B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 17 / 19
  • 18. Conclusions References II Schmid, V. J., B. Whitcher, et al. (2009a). A Bayesian Hierarchical Model for the Analysis of a Longitudinal Dynamic Contrast-Enhanced MRI Oncology Study, Magnetic Resonance in Medicine, 61 (1), 163–174. Schmid, V. J., B. Whitcher, et al. (2009b). A Semi-parametric Technique for the Quantitative Analysis of Dynamic Contrast-enhanced MR Images Based on Bayesian P-splines, IEEE Transactions in Medical Imaging, 28 (6), 789–798. Tofts P. S., A. G. Kermode (1984). Measurement of the blood-brain barrier permeability and leakage space using dynamic MR imaging. 1. Fundamental concepts. Magnetic Resonance in Medicine, 17(2), 357–367. Weinmann H. J., M. Laniado, W. Mutzel (1984). Pharmacokinetics of Gd-DTPA/dimeglumine after intraveneous injection into healthy volunteers. Physiological Chemistry and Physics and Medical NMR, 16, 167–172. B. Whitcher (GSK CIC) DCE-MRI in R 20 July 2010 18 / 19