<div><font style="BACKGROUND-COLOR: #008000">Hi, </font></div>
<div><font style="BACKGROUND-COLOR: #c7edcc">For multi-objects segmentation, it is necessary to set a set of seeds. According to ITK examples, in level set segmentation, a single seed can be located as follow:</font></div>

<div>ImageType3D::IndexType seed;<br>&nbsp; &nbsp; &nbsp; &nbsp; int seedCount;<br>&nbsp; &nbsp; &nbsp; &nbsp; seedCount=m_SeedPoints.size();<br>&nbsp; &nbsp; &nbsp; &nbsp; <br>&nbsp; &nbsp; &nbsp; &nbsp; for(int k=0; k&lt;seedCount;k++)<br>&nbsp; &nbsp; &nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; seed[0]= start[0] + int( m_SeedPoints[k].xIndex );<br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; seed[1]= start[1] + int( m_SeedPoints[k].yIndex );<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; seed[2]= start[2] + int( m_SeedPoints[k].zIndex );<br>&nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NodeType node;<br>&nbsp; &nbsp; &nbsp; &nbsp; const double seedValue = 0.0;<br>
&nbsp; &nbsp; &nbsp; &nbsp; <br>&nbsp; &nbsp; &nbsp; &nbsp; node.SetValue( seedValue );<br>&nbsp; &nbsp; &nbsp; &nbsp; node.SetIndex( seed );<br>&nbsp; &nbsp; &nbsp; &nbsp; <br>&nbsp; &nbsp; &nbsp; &nbsp; seeds-&gt;Initialize();<br>&nbsp; &nbsp; &nbsp; &nbsp; seeds-&gt;InsertElement( 0, node );<br>&nbsp; &nbsp; &nbsp; &nbsp; <br>&nbsp; &nbsp; &nbsp; &nbsp; fastMarching-&gt;SetTrialPoints(&nbsp;&nbsp;seeds&nbsp;&nbsp;);</div>

<div>&nbsp;</div>
<div>If I want to set several seeds ,what should I do?</div>
<div>Thanks!</div>