Research Article

Fast and Accurate Semiautomatic Segmentation of Individual Teeth from Dental CT Images

Pseudocode 2

// 1. Current Slice Segmentation
SRG_2D_BoundingBox_Fill_Holes();
// 2-1. Propagation to upward
for(int z=seedPnt.Z+1; z<m_volumeDepth; z++)
  shapeBased2DSRG();
// 2-2. Propagation to downward
for(int z=seedPnt.Z-1; z>0; z- -)
  shapeBased2DSRG();