Pre-processing

Why is this done?

Preprocessing in medical image analysis is essential for enhancing image quality, reducing artifacts, and standardizing images across different datasets. This step ensures that images are consistent and clear, which is crucial for accurate diagnosis and treatment planning. By removing noise and irrelevant background information, preprocessing prepares the images for advanced analysis techniques like segmentation and machine learning, ultimately leading to more reliable and precise outcomes.

Common preprocessing steps include:

  • Background Removal: Focus on information-rich anatomical locations in the image.

  • Noise Reduction: Removing unwanted noise within important locations to focus on useful content for the task.

  • Normalization: Adjusting the intensity values to a standard range across multiple images.

  • Resampling: Adjusting the image resolution to ensure consistency of algorithm performance.

How is it done?

Preprocessing in medical image analysis typically involves several key steps:

  • Background Removal: In the specific case of brain imaging data, Skull stripping (separate the brain from the skull and other surrounding structures) is typical in this category.

  • Denoising: This is done using approaches like gaussian blurring, median filtering, and more advanced methods like edge-aware or adaptive filtering.

  • Intensity Normalization: Histogram matching is a common method to normalize information across an entire data-set.

  • Resampling: This is done using linear, spline, and other forms of interpolation and quantization of data.

Project ideas

Do combinations of pre-processing steps improve the performance additively? If there is an improvement with denoising, and separately, an improvement with normalization, does implementing both lead to a linear increase in improvements?

Are other more advanced methods of normalization (z-score normalization; z-score with 95% range) better than simple scaling between 0 and 1?

Coding Resources

References

L. G. Nyúl, J. K. Udupa, and X. Zhang, New variants of a method of MRI scale standardization, IEEE Trans. Med. Imaging, vol. 19, no. 2, pp. 143–50, Feb. 2000.

J.-P. Bergeest and F. Jäger, A Comparison of Five Methods for Signal Intensity Standardization in MRI, in Bildverarbeitung für die Medizin 2008, Berlin Heidelberg: Springer, 2008, pp. 36–40.

Last updated