]> Creatis software - clitk.git/commitdiff
Removed warnings
authorSimon Rit <simon.rit@creatis.insa-lyon.fr>
Sun, 4 Dec 2011 14:04:46 +0000 (15:04 +0100)
committerSimon Rit <simon.rit@creatis.insa-lyon.fr>
Sun, 4 Dec 2011 14:04:46 +0000 (15:04 +0100)
common/clitkDicomRTDoseIO.cxx
itk/clitkSegmentationUtils.txx
segmentation/clitkExtractLymphStation_Supports.txx
segmentation/clitkExtractMediastinumFilter.txx

index da66a01a066e1162db5575495cdbdb3b5a298698..960cb1d72cb2a50f8905fd62b79d4abefafe7a20 100644 (file)
@@ -151,7 +151,7 @@ void clitk::DicomRTDoseIO::ReadImageInformation()
   while (1) {
     int len;
     gfov = (double*) realloc (gfov, (gfov_len + 1) * sizeof(double));
-    rc = sscanf (gfov_str, "%g%n", &gfov[gfov_len], &len);
+    rc = sscanf (gfov_str, "%lf%n", &gfov[gfov_len], &len);
     if (rc != 1) {
       break;
     }
index 76572b594540e9f7393e38a535a40ff3f4ffcb52..501c64f86fedd8ace7de88f1e7e9388c4e6fd807 100644 (file)
@@ -1373,6 +1373,7 @@ namespace clitk {
     iter2.GoToBegin();
     double dmin = 100000.0;
     typename ImageType::IndexType indexmin;
+    indexmin.Fill(0);
     while (!iter1.IsAtEnd()) {
       if (iter1.Get() != BG) {
         double d = iter2.Get();
index 430d6a9d0df0a5745599587b45fa9193a5a22180..a022392653df59bb5a3511295067980c43db274c 100644 (file)
@@ -111,7 +111,7 @@ Support_SI_Limit(const std::string station_limit, const std::string station,
   m_Working_Support = m_ListOfSupports[station];
   
   // Get structure or structureZ
-  double z;
+  double z=0.;
   int found=0;
   std::string file;
 
index 27cb661b0616ebf86fee19f7bfa8d0192d04351a..675718082192ea3663ada290675da3648b91a5e2 100644 (file)
@@ -263,6 +263,7 @@ GenerateOutputInformation() {
   MaskImagePointer bones_ant;
   MaskImagePointer bones_post;
   MaskImagePointType middle_AntPost_position;
+  middle_AntPost_position.Fill(NumericTraits<MaskImagePointType::ValueType>::Zero);
   if (GetUseBones()) { 
     this->StartNewStep("[Mediastinum] Ant/Post limits with bones");