<div dir="ltr">Since the image type is unsigned char, cout is interpreting the values of GetMaximum() and GetMinimum as chars. Cast the result to int before sending to cout:<div><br></div><div><div>  std::cout << "Min: " << static_cast<int>(statisticsImageFilter->GetMinimum()) << std::endl;</div><div>  std::cout << "Max: " << static_cast<int>(statisticsImageFilter->GetMaximum()) << std::endl;</div></div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Sat, Aug 27, 2016 at 3:04 PM, Tammy DiPrima <span dir="ltr"><<a href="mailto:tammy.diprima@stonybrook.edu" target="_blank">tammy.diprima@stonybrook.edu</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word;color:rgb(0,0,0);font-size:14px;font-family:Calibri,sans-serif"><div>Hello,</div><div><br></div><div>Is StatisticsImageFilter-><wbr>GetMaximum() and GetMinimum() the ITK functions that calculate the max/min values in the 2D image array?  </div><div>I’m running the example code from <a href="https://github.com/lorensen/ITKWikiExamplesTarballs/raw/master/StatisticsImageFilter.tar" target="_blank">ITKWikiExamples</a>, and the output is:</div><div><br></div><div><div>Mean: 23.5875</div><div>Std.: 73.8819</div><div>Min: </div><div>Max: �</div></div><div><br></div><div>I modified the code to write the image to file (attached).  As far as I can tell, statisticsImageFilter-><wbr>GetMinimum() should be 0 and statisticsImageFilter-><wbr>GetMaximum() should be 255.</div><div><br></div><div>Is GetMinimum() and GetMaximum() not the right functions?</div><div><br></div><div>Thanks in advance</div><div><br></div><div><img src="cid:075AAAE2-374A-4A10-8606-BF18EB1CC678" type="image/png"></div></div>
<br>______________________________<wbr>_______<br>
Powered by <a href="http://www.kitware.com" rel="noreferrer" 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" rel="noreferrer" target="_blank">http://www.kitware.com/<wbr>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" rel="noreferrer" target="_blank">http://www.kitware.com/<wbr>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" rel="noreferrer" target="_blank">http://www.itk.org/Wiki/ITK_<wbr>FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://public.kitware.com/mailman/listinfo/insight-users" rel="noreferrer" target="_blank">http://public.kitware.com/<wbr>mailman/listinfo/insight-users</a><br>
<br></blockquote></div><br></div>