From bed04f95aa85402e4e51151702703ef55d02cf9b Mon Sep 17 00:00:00 2001
From: Thomas Feuvrier <thomas.feuvrier@c-s.fr>
Date: Thu, 19 Mar 2009 10:31:48 +0100
Subject: [PATCH] COMP: Fixed warning compilations

---
 Code/BasicFilters/otbMeanShiftImageFilter.txx | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Code/BasicFilters/otbMeanShiftImageFilter.txx b/Code/BasicFilters/otbMeanShiftImageFilter.txx
index 24e1dc02b7..f80d60b5b7 100644
--- a/Code/BasicFilters/otbMeanShiftImageFilter.txx
+++ b/Code/BasicFilters/otbMeanShiftImageFilter.txx
@@ -380,12 +380,12 @@ MeanShiftImageFilter<TInputImage,TOutputImage,TLabeledOutput,TBufferConverter>
   for (LabelType label = 0; label < numRegions;++label)
   {
     OutputPixelType pixel;
-    TBufferConverter::FloatArrayToPixel(modes,label*clusteredOutputPtr->GetNumberOfComponentsPerPixel(),
+    TBufferConverter::FloatArrayToPixel(modes,static_cast<unsigned int>(label*clusteredOutputPtr->GetNumberOfComponentsPerPixel()),
                                         pixel,clusteredOutputPtr->GetNumberOfComponentsPerPixel(),invScale);
     // Filling the modes map
     m_Modes[label]=pixel;
-    regionIndeces = regionList->GetRegionIndeces(label);
-    for (int i = 0; i<regionList->GetRegionCount(label); ++i)
+    regionIndeces = regionList->GetRegionIndeces(static_cast<int>(label));
+    for (int i = 0; i<regionList->GetRegionCount(static_cast<int>(label)); ++i)
     {
       boundIndex[0]= regionIndeces[i] % clusterBoudariesOutputPtr->GetRequestedRegion().GetSize()[0];
       boundIndex[1]= regionIndeces[i] / clusterBoudariesOutputPtr->GetRequestedRegion().GetSize()[0];
-- 
GitLab