Understanding DSC Deconvolution¶
DSC-MRI uses deconvolution to extract perfusion parameters from the measured signal.
The Measurement¶
DSC-MRI tracks a gadolinium bolus through brain tissue using T2*-weighted imaging. The signal drops as contrast passes through:

From Signal to Concentration¶
T2* Signal Model¶
Gadolinium causes T2* shortening:
Solving for ΔR2*:
Concentration Relationship¶
ΔR2* is proportional to contrast concentration:
Where r2* is the transverse relaxivity (osipy defaults: 32 s⁻¹mM⁻¹ for tissue, 50 s⁻¹mM⁻¹ for blood at 1.5T).
The Indicator Dilution Problem¶
Tissue Response¶
The tissue concentration C(t) is the convolution of the arterial input function (AIF) with a tissue response:
Where R(t) is the residue function (fraction of contrast remaining in tissue).
What is the Residue Function?¶
R(t) describes how contrast leaves tissue:

- R(0) = 1: All contrast is present initially
- R(∞) = 0: Eventually all contrast leaves
- Shape depends on vasculature
The Deconvolution Problem¶
Forward Problem (Easy)¶
Given CBF, AIF, and R(t), calculate C(t):
Inverse Problem (Hard)¶
Given C(t) and AIF, find CBF and R(t):
This is ill-posed: small noise causes large errors.
Matrix Formulation¶
Discrete Convolution¶
In discrete form, convolution becomes matrix multiplication:
Where:
Solving the System¶
The deconvolution is:
But A⁻¹ amplifies noise → need regularization.
SVD-Based Deconvolution¶
Why SVD?¶
Singular Value Decomposition provides a stable way to invert A:
Where S is diagonal with singular values σ₁ > σ₂ > ... > σₙ.
Truncation for Regularization¶
Small singular values amplify noise. Solution: truncate them.
Where σᵢ < threshold × σ₁ are set to zero.
Deconvolution Methods¶
sSVD (Standard SVD)¶
Direct SVD of the convolution matrix:
- Pros: Simple, widely used
- Cons: Sensitive to bolus delay
- Threshold: Typically 0.1-0.2
cSVD (Circular SVD)¶
Uses block-circulant matrix (assumes periodic signal):
- Pros: Delay-insensitive
- Cons: May underestimate CBF
- Note: Commonly used in clinical software
oSVD (Oscillation-Index SVD)¶
Selects threshold based on oscillation in R(t):
- Pros: Adaptive, noise-tolerant
- Cons: More complex
- Criterion: Minimize oscillations while preserving CBF
oSVD oscillation index optimization
Extracting Perfusion Parameters¶
From the Residue Function¶
Once R(t) is estimated:
| Parameter | Calculation |
|---|---|
| CBF | max(R(t)) × scaling factor |
| CBV | Area under C(t) ÷ Area under AIF |
| MTT | CBV / CBF (central volume theorem) |
| Tmax | Time to maximum of R(t) |
| TTP | Time to minimum of S(t) |
CBF Calculation¶
CBF = max[CBF × R(t)] = CBF × max[R(t)]
If R(t) is properly normalized (R(0)=1):
CBV Calculation¶
From conservation of tracer:
MTT via Central Volume Theorem¶
The Central Volume Theorem relates:
This is a fundamental relationship in indicator dilution theory.
Delay and Dispersion¶
Bolus Delay¶
If tissue is fed by a delayed artery:
- Signal arrives later
- Standard deconvolution interprets this as low CBF
- Use cSVD or delay-corrected methods

Bolus Dispersion¶
As blood flows through vessels, the bolus spreads:
- Peak concentration decreases
- Duration increases
- Affects CBF estimation
Leakage Correction¶
The Problem¶
In tumors with BBB breakdown, contrast leaks into tissue:
- T1 effect: Leakage increases signal (opposite to T2* effect)
- T2* contamination: Altered concentration curve
Boxerman-Schmainda-Weisskoff (BSW) Correction¶
Models the leakage contribution:
Where:
- K₁: Reflects residual T2* effects
- K₂: Reflects T1 leakage contamination
Practical Considerations¶
AIF Selection¶
Critical for accurate deconvolution:
- Should represent input to tissue
- Avoid partial volume with tissue
- Consider delay to imaging region
Threshold Selection¶
For SVD truncation:
- Too high: Smooths R(t), underestimates CBF
- Too low: Noisy R(t), unreliable parameters
Typical range: 0.05-0.20 relative to σ₁
Normalization¶
Results may need normalization:
- rCBV: CBV relative to white matter
- Accounts for intersubject AIF variability
Clinical Applications¶
Stroke¶
Perfusion maps help identify:
- Infarct core: Very low CBF, CBV
- Penumbra: Low CBF, maintained CBV
- Tmax delay: Indicator of collateral flow
Tumors¶
DSC provides:
- rCBV: Correlates with tumor grade
- Leakage: Indicates BBB breakdown
- Response assessment: Changes with treatment
References¶
-
Østergaard L et al. "High resolution measurement of cerebral blood flow using intravascular tracer bolus passages." Magn Reson Med 1996.
-
Wu O et al. "Tracer arrival timing-insensitive technique for estimating flow in MR perfusion-weighted imaging using singular value decomposition with a block-circulant deconvolution matrix." Magn Reson Med 2003.
-
Boxerman JL et al. "Relative cerebral blood volume maps corrected for contrast agent extravasation significantly correlate with glioma tumor grade." AJNR 2006.