]> Creatis software - gdcm.git/commitdiff
Fix P vs p :-(
authorjpr <jpr>
Mon, 8 Sep 2008 08:10:33 +0000 (08:10 +0000)
committerjpr <jpr>
Mon, 8 Sep 2008 08:10:33 +0000 (08:10 +0000)
Example/CMakeLists.txt
Example/PcpdenseToDicom.cxx

index 71874c718eb0b9abadf0be6188364a6a86d5d4f8..dae792884d92e9207e05f1e61de8aa7cc1631c12 100644 (file)
@@ -50,7 +50,7 @@ SET(EXAMPLE_SOURCES
   ToMRIregister
   DenseMultiFramesToDicom
   Dense2007ToDicom
-  pcpdenseToDicom
+  PcpdenseToDicom
     
   #BatchUncompress
     
index 359ad62e1398e98a6b15571b6a591ce154165926..f9a818cf1983853e5b0ed8f1b34d45563b2a48cc 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: PcpdenseToDicom.cxx,v $
   Language:  C++
-  Date:      $Date: 2008/09/04 14:10:44 $
-  Version:   $Revision: 1.1 $
+  Date:      $Date: 2008/09/08 08:10:33 $
+  Version:   $Revision: 1.2 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -368,7 +368,7 @@ XY Dimensions           47          50
      for( i=0;i<NY;i++)
         for(j=0;j<NX;j++) {
            from >> pixelValue;
-           image[i*NX+j] = (unsigned short int)(pixelValue * 1000.)
+           image[i*NX+j] = (unsigned short int)(pixelValue * 1000.);
         }
 }