]> Creatis software - clitk.git/blobdiff - segmentation/clitkExtractLungFilter.txx
Unitialized variable was causing crash at startup on Windows
[clitk.git] / segmentation / clitkExtractLungFilter.txx
index fda0203ba51ce5d5c5452106fd8b52607098f417..67d3f5e641c08bb357a57c0b51fc17805287de45 100644 (file)
@@ -3,7 +3,7 @@
 
   Authors belong to: 
   - University of LYON              http://www.universite-lyon.fr/
-  - Léon Bérard cancer center       http://oncora1.lyon.fnclcc.fr
+  - Léon Bérard cancer center       http://www.centreleonberard.fr
   - CREATIS CNRS laboratory         http://www.creatis.insa-lyon.fr
 
   This software is distributed WITHOUT ANY WARRANTY; without even
@@ -14,7 +14,7 @@
 
   - BSD        See included LICENSE.txt file
   - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
-  ======================================================================-====*/
+  ===========================================================================**/
 
 #ifndef CLITKEXTRACTLUNGSFILTER_TXX
 #define CLITKEXTRACTLUNGSFILTER_TXX
@@ -392,7 +392,6 @@ GenerateOutputInformation()
   unsigned int initialNumberOfLabels = statisticsImageFilter->GetMaximum();
   working_mask = statisticsImageFilter->GetOutput();   
   
-  DD(initialNumberOfLabels);
   PrintMemory(GetVerboseMemoryFlag(), "After count label");
  
   // Decompose the first label
@@ -404,7 +403,7 @@ GenerateOutputInformation()
     typedef clitk::DecomposeAndReconstructImageFilter<MaskImageType,MaskImageType> DecomposeAndReconstructFilterType;
     typename DecomposeAndReconstructFilterType::Pointer decomposeAndReconstructFilter=DecomposeAndReconstructFilterType::New();
     decomposeAndReconstructFilter->SetInput(working_mask);
-    decomposeAndReconstructFilter->SetVerbose(true);
+    decomposeAndReconstructFilter->SetVerbose(false);
     decomposeAndReconstructFilter->SetRadius(radius);
     decomposeAndReconstructFilter->SetMaximumNumberOfLabels(2);
     decomposeAndReconstructFilter->SetMinimumObjectSize(this->GetMinimalComponentSize());