]> Creatis software - gdcm.git/blobdiff - Example/TestWrite.cxx
'd' option (Implicit Dicom VR) removed from usage, because the (unused)
[gdcm.git] / Example / TestWrite.cxx
index cb9b9e697bdde0093188e1bf6c54218644dcbdea..1793b4d9be95e91def0066d0d2c09668a1db8b86 100644 (file)
@@ -17,11 +17,14 @@ int main(int argc, char* argv[])
 
    if (argc < 3) {
          std::cerr << "usage: " << std::endl 
-                   << argv[0] << " fileName writtingMode "
+                   << argv[0] << " OriginalFileName writtingMode "
                 << std::endl 
-                   << "(a : ACR, d : DICOM Implicit VR,"
-                   << " x : DICOM Explicit VR  r : RAW)"
+                   << "(a : ACR, produces a file named OriginalFileName.ACR"
+                   << " x : DICOM Explicit VR, produces a file named OriginalFileName.XDCM"
+                   << " r : RAW, produces a file named OriginalFileName.RAW"
+                   << " v : explicit VR + computes the video inv image --> OriginalFileName.VDCM"
                 << std::endl;
+
          return 0;
    }
 /*
@@ -46,8 +49,9 @@ int main(int argc, char* argv[])
      
    toto = argv[1]; 
 
-   e1 = new gdcmHeader(toto.c_str(), false, true);
-   if (!e1->IsReadable()) {
+   e1 = new gdcmHeader( toto.c_str() );
+   if (!e1->IsReadable())
+   {
        std::cerr << "Sorry, not a Readable DICOM / ACR File"  <<std::endl;
        return 0;
    }
@@ -104,7 +108,8 @@ int main(int argc, char* argv[])
       f1->WriteAcr(zozo);
       break;
 
-   case 'd' :
+   case 'd' :  // Not document in the 'usage', because the method is knowed to be bugged. 
+
            // ecriture d'un fichier DICOM Implicit VR 
            // à partir d'un dcmHeader correct.
 
@@ -131,6 +136,29 @@ int main(int argc, char* argv[])
       f1->WriteRawData(zozo);
       break;
 
+   case 'v' :
+
+     if ( f1->GetHeader()->GetBitsAllocated() == 8)
+     {
+        std::cout << "videoinv for 8 bits" << std::endl;
+        for (int i=0; i<dataSize; i++) 
+        {
+           ((uint8_t*)imageData)[i] += 127;
+        }
+     }
+     else
+     {
+        std::cout << "videoinv for 16 bits" << std::endl;    
+        for (int i=0; i<dataSize/2; i++) 
+        {
+           ((uint16_t*)imageData)[i] += 60000; //32767;
+        }
+     }
+     sprintf(zozo, "%s.VDCM", toto.c_str());
+     printf ("WriteDCM Explicit VR + VideoInv\n");
+     f1->WriteDcmExplVR(zozo);
+     break;
+
    }
   return 0;
 }