<div dir="ltr">Most likely you are looking at code that is just before a loop that is searching to find the min and max values within an image. It is common practice to initialize the current values of min and max in this manner so that you can write code like<div><br></div><div>if (value > maxValue)</div><div>{ value = maxValue; }</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Oct 24, 2014 at 5:11 AM, Abdul Abdul <span dir="ltr"><<a href="mailto:abdul.sw84@gmail.com" target="_blank">abdul.sw84@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div><div>Hello,<br><br></div>I came across the following code:<br><br>PixelType maxValue = itk::NumericTraits<PixelType>::NonpositiveMin(); <br>PixelType minValue = itk::NumericTraits<PixelType>::max();<br><br></div>Shouldn't the above statements be swapped? That is, minValue for the first, and ,maxValue for the second?<br><br></div><div>Thanks.<br></div></div>
<br>_____________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at<br>
<a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Kitware offers ITK Training Courses, for more information visit:<br>
<a href="http://www.kitware.com/products/protraining.php" target="_blank">http://www.kitware.com/products/protraining.php</a><br>
<br>
Please keep messages on-topic and check the ITK FAQ at:<br>
<a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://public.kitware.com/mailman/listinfo/insight-users" target="_blank">http://public.kitware.com/mailman/listinfo/insight-users</a><br>
<br></blockquote></div><br></div>