<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style>
</head>
<body class='hmmessage'>
Hi everyone, i have two regions in my image .. <BR>
it is a binary image .. <BR>
i used label map to label these object .. <BR>
how can i say that i want to pick the largest region among these two regions ?<BR>
i want to pic the largest to apply a some filters on it .. <BR>
&nbsp;<BR>
&nbsp;<BR>
This is my code and dont know how to finish it &nbsp;<BR>
&nbsp;<BR><FONT color=#0000ff size=2><FONT color=#0000ff size=2>
typedef</FONT></FONT><FONT size=2> </FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>unsigned</FONT></FONT><FONT size=2> </FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>long</FONT></FONT><FONT size=2> LabelType; <BR>
</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>typedef</FONT></FONT><FONT size=2> itk::ShapeLabelObject&lt; LabelType, 2 &gt; LabelObjectType;<BR>
</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>typedef</FONT></FONT><FONT size=2> itk::LabelMap&lt; LabelObjectType &gt; LabelMapType;<BR>
</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>typedef</FONT></FONT><FONT size=2> itk::BinaryImageToShapeLabelMapFilter&lt; OutputImageType, LabelMapType &gt; ConverterType;<BR>
ConverterType::Pointer converter = ConverterType::New(); <BR>
converter-&gt;SetInputForegroundValue( 255 );<BR>
LabelMapType::Pointer labelMap = converter-&gt;GetOutput();<BR>
</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>for</FONT></FONT><FONT size=2>( </FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>unsigned</FONT></FONT><FONT size=2> </FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>int</FONT></FONT><FONT size=2> label=1; label&lt;=labelMap-&gt;GetNumberOfLabelObjects(); label++ ) <BR>
{<BR>
</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>const</FONT></FONT><FONT size=2> LabelObjectType * labelObject = labelMap-&gt;GetLabelObject( label ); </FONT><BR>
<FONT size=2></FONT>&nbsp;<BR>
<FONT size=2></FONT>&nbsp;<BR>
<FONT size=2>Thanks <BR></FONT>                                               </body>
</html>