コード例 #1
0
 /**
  * The region-growing fast march. When you call beginCoarse(), the current parameters are used
  * (DIterations, scale, alpha, beta, min, max). You can apply the fast marching algorithm multiple
  * times to the same image, each time starting with beginCoarse();
  *
  * @param aiSeeds The initial region to grow.
  */
 public void beginCoarse(int[] aiSeeds) {
   super.beginCoarse(aiSeeds);
   createFeatureImage();
   m_kFastMarcher = new LseFastMarch3(m_iXBound, m_iYBound, m_iZBound, m_afFeature, aiSeeds);
 }