<p>Hi,<br>I want to segment the serial image with confidence connect filter. One can set seed as follow<br>typedef float&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PixelType;<br>typedef itk::Image&lt;PixelType,2&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ImageType;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>
ImageType::IndexType seed;<br>int seedCount;<br>seedCount=m_SeedPoints.size();<br>&nbsp;<br>for(int k=0; k&lt;seedCount;k++)<br>{<br>&nbsp; seed[0]= int( m_SeedPoints[k].xIndex );<br>&nbsp; seed[1]= int( m_SeedPoints[k].yIndex );<br>&nbsp; seed[2]= int( m_SeedPoints[k].zIndex );<br>
}<br>confidenceFilter-&gt;SetSeed( seed );</p>
<div>But in above case, only the last selected point is add as the seed point to confidence connect filter. How to <br>add all the selected points to the filter?</div>
<div>Thanks for any hints</div>