Source-linked AI summary

Understanding the Mechanisms of Deep Transfer Learning for Medical Images

Hariharan Ravishankar, Prasad Sudhakar, Rahul Venkataramani, Sheshadri Thiruvenkadam, Pavan Annangi, Narayanan Babu, Vivek Vaidya

arXiv:1704.06040v1cs.CV

TL;DR

Medical ultrasound kidney detection is difficult under limited labeled data and substantial anatomical and imaging variability. The paper systematically transfers an ImageNet-trained CNN, varies the extent of network tuning, compares learned responses with handcrafted filters, and combines complementary detectors. Adapted CNNs outperform the handcrafted baseline, while their hybrid achieves 86% average detection accuracy and 3/45 failures, reported as 20% better than either individual method.

  • Problem

    Kidney detection in ultrasound is challenging because of imaging noise, low contrast, anatomical variability, and limited labeled data.

  • Method

    The paper adapts ImageNet-trained CaffeNet at different tuning levels, compares its features and response maps with handcrafted methods, and averages complementary likelihood maps.

  • Results

    86% average detection accuracy and 3/45 failures were achieved with the hybrid approach, with failures reported as 20% better than either individual method.

  • Takeaways & Limitations

    Full network adaptation learns problem-specific features, while handcrafted features remain complementary to CNNs in limited-data kidney detection.

Abstract

from arXiv · show

The ability to automatically learn task specific feature representations has led to a huge success of deep learning methods. When large training data is scarce, such as in medical imaging problems, transfer learning has been very effective. In this paper, we systematically investigate the process of transferring a Convolutional Neural Network, trained on ImageNet images to perform image classification, to kidney detection problem in ultrasound images. We study how the detection performance depends on the extent of transfer. We show that a transferred and tuned CNN can outperform a state-of-the-art feature engineered pipeline and a hybridization of these two techniques achieves 20\% higher performance. We also investigate how the evolution of intermediate response images from our network. Finally, we compare these responses to state-of-the-art image processing filters in order to gain greater insight into how transfer learning is able to effectively manage widely varying imaging regimes.

1 Introduction

Ultrasound kidney localization is difficult because image quality and anatomy vary substantially, while effective machine-learning models typically require abundant labeled data and problem-specific feature engineering.

  • Ultrasound organ localization and segmentation are challenged by specular noise, low soft-tissue contrast, and patient-to-patient variability.
  • Conventional machine-learning approaches generally require substantial labeled data and careful feature engineering for each problem.
  • Transfer learning offers a strategy for data-scarce medical-imaging problems by transferring knowledge from models trained on other tasks or domains.
  • Kidney detection must handle variation in shape, size, orientation, internal appearance, and adjacent structures such as the diaphragm and liver.These difficulties are clinically relevant because kidney morphology measurements support assessment of abnormalities, radiation-therapy planning, and renal transplantation.
  • Prior kidney-detection work includes Gabor-filter texture models, Markov random fields, active contours, and machine-learning methods for 2-D and 3-D ultrasound segmentation.

2 State of the art

The paper frames transfer learning as attractive for heterogeneous medical images and studies its effectiveness by comparing CNN representations, tuning levels, and handcrafted or hybrid alternatives.

  • CNNs transform multi-channel image patches into feature maps through learned convolutions, nonlinear activation, and downsampling across multiple layers.The architecture contains many parameters, making parameter transfer useful when the target learning problem has scarce data.
  • Transfer learning is especially attractive for medical images because modalities, anatomies, and clinical challenges are heterogeneous.
  • Earlier medical-imaging studies had already applied ImageNet-trained CNNs to breast classification, otitis-media classification, and ultrasound-plane localization.
  • The paper compares response maps from transfer-learned CNN layers with traditional image-processing filters to examine transfer-learning effectiveness.
  • Full network adaptation is used to learn problem-specific features and evaluate whether adapted CNNs outperform off-the-shelf image-processing filters.
  • The study also evaluates handcrafted features and CNN hybridization because they may provide complementary advantages.

3 Methods

The methods generate labeled kidney and non-kidney patches, compare CNN feature-transfer strategies with handcrafted texture features, and combine complementary likelihood maps for detection.

  • Candidate regions are classified as kidney or non-kidney, and the highest-likelihood positive region is selected as the detected kidney ROI.
  • CNNs are used as feature extractors so their representations can be compared with traditional texture features using a common machine-learning classifier.
  • The dataset contains 90 long-axis kidney ultrasound images split into distinct training and validation sets, with substantial variation in kidney dimensions, orientation, and acquisition depth.
  • Overlapping patches of varying sizes are generated by sweeping the field of view, downsampled, and labeled using a Dice similarity threshold of 0.8 against ground-truth annotations.
  • The transfer study adapts ImageNet-trained CaffeNet using full, partial, or zero network adaptation, with features extracted after the fc7 layer.Partial adaptation freezes conv1 and conv2 while updating later layers; zero adaptation leaves the original network unchanged.
  • Handcrafted baselines include Haar features, GLCM, and HoG, with approximately 2000 Haar features extracted for the study.
  • 3.5 Hybrid approach: The hybrid approach averages spatial likelihood maps from the Haar-plus-GBM and CaffeNet FA methods because their failure cases differ.This combines the complementary behavior of the two approaches during candidate selection.

4 Results

CaffeNet transfer improved kidney localization over the baseline, while adapting the network further improved detection and hybridization produced the strongest result. Visual examples also show complementary strengths and failure modes between the approaches.

  • 2% higher average detection accuracy than baseline, unadapted CaffeNet features achieved the improvement with the same number of failures.
  • 20% better than either individual method, the hybrid approach reduced failures to 3/45 and achieved 86% average detection accuracy.
  • The baseline was affected by diaphragm, kidney, and liver boundaries with textures resembling the renal sinus, whereas CaffeNet localized the kidney effectively in that case.
  • CaffeNet also produced an over-segmentation containing the diaphragm, illustrating the continuing relevance of domain-specific feature engineering in limited-data problems.

5 Discussion

The discussion compares transferred CNN responses with ultrasound-oriented hand-crafted filters and examines how tuning changes the network. The results suggest that adaptation preserves useful structure while reducing speckle noise, and that interpretability can clarify the CNN’s behavior.

  • CNN response maps showed intriguing similarities to hand-crafted ultrasound feature extractors, including similarities between responses 4(g) and (i) and 4(b) and (c).
  • CaffeNet FAL1 1 showed reduced speckle noise compared with CaffeNet PAL1 1.
  • Tuning CaffeNet on ultrasound data enabled it to learn underlying noise characteristics while preserving edges, producing improved response maps.
  • Filters in the third layer changed substantially more than filters in the first and second layers, which showed minimal change in ℓ2 norm.The passage attributes the pattern possibly to lower-level features being similar across natural and ultrasound images.
  • Response images beyond layer 2 were difficult to interpret and may require more intensive analysis.
  • Interpretability of the CNN is presented as clinically crucial and as important as the demonstrated performance results.
Loading 1704.06040v1…