Understanding Pharmacokinetic Models¶
Pharmacokinetic (PK) models describe how contrast agent distributes through tissue in DCE-MRI. The choice of model affects both the parameters you can estimate and the accuracy of results.
The Central Problem¶
When we inject a gadolinium contrast agent, it flows through blood vessels and leaks into tissue. The concentration-time curve in tissue depends on:
- How fast contrast arrives (arterial input function)
- How permeable the vessels are (transfer rate)
- How much space exists for contrast (volume fractions)
PK models describe these relationships mathematically.
Tissue Compartments¶
The Two-Compartment View¶
Most models divide tissue into two compartments:

Parameters:
- Cp(t): Plasma concentration (from AIF)
- Ce(t): EES concentration (what we estimate)
- Ktrans: Volume transfer constant (plasma → EES)
- kep: Rate constant (EES → plasma), where kep = Ktrans/ve
- vp: Plasma volume fraction
- ve: EES volume fraction
Model Equations¶
Standard Tofts model¶
The simplest model assumes negligible plasma volume (vp ≈ 0):
Parameters: Ktrans, ve (2 parameters)
Assumptions:
- Blood plasma volume is negligible
- Fast exchange between plasma and EES
- First-pass effects are small
Best for: Tissues with low vascularity, simple analysis
Extended Tofts model¶
Adds the plasma contribution:
Parameters: Ktrans, ve, vp (3 parameters)
Improvements over Standard Tofts:
- Accounts for contrast in blood vessels
- More accurate for highly vascular tissues
- Better first-pass characterization
Best for: Tumors, brain tissue, general use
Patlak model¶
Assumes unidirectional transfer (no backflux):
Parameters: Ktrans, vp (2 parameters)
Assumptions:
- Contrast doesn't return from EES to plasma
- Valid when kep is very small
- Graphical analysis is possible
Best for: Early enhancement, highly permeable tissues, screening
Two-compartment exchange model (2CXM)¶
The most complete model separates flow and permeability:
Where E (extraction fraction) relates to PS (permeability-surface area):
Parameters: Fp, PS, ve, vp (4 parameters)
Advantages:
- Separates flow (Fp) from permeability (PS)
- Most physiologically accurate
- Can identify flow-limited vs permeability-limited regimes
Requirements:
- High temporal resolution (< 2 seconds)
- Good SNR
- Sufficient timepoints
Two-compartment uptake model (2CUM)¶
A simplification of 2CXM that assumes unidirectional uptake (no backflux from EES):
Parameters: Fp, PS, vp (3 parameters)
Assumptions:
- No backflux from EES to plasma (like Patlak, but with explicit flow)
- Separates flow from permeability (like 2CXM, but simpler)
Best for: Tissues where contrast accumulates but does not wash out significantly during the acquisition window, or when the 4-parameter 2CXM is poorly identifiable.
Relationship to other models:
- Simplification of 2CXM (drops ve, assumes unidirectional transfer)
- Like Patlak with explicit flow and permeability separation
- 3 parameters make it more identifiable than 2CXM with fewer timepoints
Model Comparison¶
| Model | Parameters | Assumptions | Complexity |
|---|---|---|---|
| Standard Tofts | 2 | vp ≈ 0 | Low |
| Extended Tofts | 3 | Fast exchange | Medium |
| Patlak | 2 | No backflux | Low |
| 2CUM | 3 | Unidirectional uptake | Medium |
| 2CXM | 4 | None | High |
Mathematical Details¶
Convolution Operation¶
The integral in these models is a convolution of the AIF with an impulse response:
For Extended Tofts, the impulse response is:
osipy supports several convolution methods for this (piecewise-linear, exponential, FFT).
Relationship Between Parameters¶
The rate constant kep connects Ktrans and ve:
This means:
- High Ktrans + low ve → fast washout
- Low Ktrans + high ve → slow washout
- Ktrans/kep gives ve directly
Units and Scaling¶
osipy uses:
- Time: seconds (input), minutes (internal model)
- Ktrans: min⁻¹
- ve, vp: volume fractions in mL/100mL
- Concentration: mM (millimolar)
The time conversion happens automatically:
Automatic time unit conversion in osipy
Physiological Interpretation¶
What Ktrans Tells You¶
Ktrans reflects the combined effect of:
- Blood flow (F): Delivery of contrast
- Permeability (PS): Vessel leakiness
In different regimes:
- Flow-limited (high permeability): Ktrans ≈ F
- Permeability-limited (low flow): Ktrans ≈ PS
For tumors, high Ktrans often indicates:
- Angiogenesis (new vessel formation)
- Increased vessel permeability
- Treatment response (may decrease)
What ve Tells You¶
ve represents the extravascular, extracellular space:
- High ve: More space for contrast accumulation
- Low ve: Dense tissue, high cellularity (like tumors)
What vp Tells You¶
vp represents blood plasma volume:
- High vp: Highly vascular tissue
- Low vp: Poorly perfused tissue
Model Selection Guidelines¶
Start with Extended Tofts¶
For most applications, Extended Tofts is a good default:
- 3 parameters capture most variance
- Robust to different tissue types
- Widely validated
Use Standard Tofts When¶
- Low vascularity expected
- Simpler interpretation needed
- Limited temporal resolution
Use Patlak When¶
- Only early enhancement phase
- Screening large datasets
- Graphical analysis desired
Use 2CUM When¶
- Need to separate F from PS but 2CXM is over-parameterized
- Tissue shows unidirectional uptake (no significant washout)
- Moderate temporal resolution (fewer timepoints than 2CXM requires)
Use 2CXM When¶
- High temporal resolution available (TR < 2s)
- Need to separate F from PS with full exchange
- Research applications
Arterial Delay¶
In practice, the AIF may arrive at different times in different tissue regions. osipy supports automatic arterial delay estimation during fitting:
Fit with automatic delay estimation
This works with any model (Tofts, Extended Tofts, Patlak, 2CXM, 2CUM). The delay parameter shifts the AIF in time before convolution with the impulse response function.
Fitting Considerations¶
Identifiability¶
Not all parameters are always identifiable:
- Low SNR: May only reliably fit 2 parameters
- Short acquisition: Limited ability to estimate ve
- No early data: Can't distinguish vp
Initial Guesses¶
osipy uses physiologically reasonable defaults:
Default initial guesses for fitting
Parameter Bounds¶
Constraints ensure physiological plausibility:
Default parameter bounds
References¶
-
Tofts PS, Kermode AG. "Measurement of the blood-brain barrier permeability and leakage space using dynamic MR imaging." Magn Reson Med 1991.
-
Tofts PS et al. "Estimating kinetic parameters from dynamic contrast-enhanced T1-weighted MRI of a diffusable tracer: Standardized quantities and symbols." J Magn Reson Imaging 1999.
-
Sourbron SP, Buckley DL. "Classic models for dynamic contrast-enhanced MRI." NMR Biomed 2013.
-
Sourbron SP, Buckley DL. "Tracer kinetic modelling in MRI: estimating perfusion and capillary permeability." Phys Med Biol 2012;57(2):R1-R33.