Grow from seed error — exceeded max number of voxels

Regarding Grow-from-Seed Limitation:

Your dataset dimensions (2184 × 1885 × 2230 ≈ 9.2 billion voxels) exceeds the practical limit of the grow-from-seed algorithm. This is not a memory issue but an algorithmic complexity issue:

  • Grow-from-seed has O(n³) to O(n⁴) complexity
  • Large datasets cause extremely slow computation or crashes

Recommended Solutions:

  1. Downsample: Resample the volume by 2x-4x before segmentation
  2. Crop ROI: Use Crop Volume to focus on the region of interest
  3. Use Alternative Methods:
    • Threshold segmentation (for bones like we did)
    • Deep learning (TotalSegmentator extension)
    • Level set / Region growing (with smaller seed regions)

Disclaimer

This AI assistant provides suggestions and code for 3D Slicer operations based on available information. Users are responsible for verifying the accuracy and appropriateness of any actions taken. The authors and developers assume no liability for any damage, data loss, or other issues that may arise from using these suggestions. Always save your work and back up important data before executing any operations. Medical imaging analysis results should be validated by qualified professionals before clinical use.

FROM: GitHub - jumbojing/slicerClaw: A revolutionary, lightning-fast AI assistant natively integrated into 3D Slicer. · GitHub

1 Like