X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Example%2FTestWrite.cxx;h=a3c4806e2bf7632eac51e6707097656a33bb78c6;hb=8c1361afb0434404e7c81a71960d5297460604a9;hp=9673abf03387600ce14f32240cf69c1ba60f7f17;hpb=8fca7bc2830904113dbb5521c009775d964c5c98;p=gdcm.git diff --git a/Example/TestWrite.cxx b/Example/TestWrite.cxx index 9673abf0..a3c4806e 100644 --- a/Example/TestWrite.cxx +++ b/Example/TestWrite.cxx @@ -1,9 +1,6 @@ #include -#include "gdcm.h" -#include "gdcmHeader.h" -#include "gdcmDocument.h" - #include +#include "gdcm.h" int main(int argc, char* argv[]) { @@ -11,8 +8,8 @@ int main(int argc, char* argv[]) char zozo[200]; - gdcmHeader* e1; - gdcmFile * f1; + gdcm::Header* e1; + gdcm::File * f1; //gdcmDocument * d; //not used void* imageData; @@ -20,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; } /* @@ -49,14 +49,15 @@ int main(int argc, char* argv[]) toto = argv[1]; - e1 = new gdcmHeader(toto.c_str(), false, true); - if (!e1->IsReadable()) { + e1 = new gdcm::Header( toto.c_str() ); + if (!e1->IsReadable()) + { std::cerr << "Sorry, not a Readable DICOM / ACR File" <Print(); - f1 = new gdcmFile(e1); + f1 = new gdcm::File(e1); // --- dataSize = f1->GetImageDataSize(); @@ -91,7 +92,7 @@ int main(int argc, char* argv[]) && transferSyntaxName != "Uncompressed ACR-NEMA" ) { std::cout << std::endl << "===========================================" << std::endl; - f1->ParsePixelData(); + f1->GetPixelConverter()->Print(); std::cout << std::endl << "===========================================" << std::endl; } @@ -107,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. @@ -134,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; iWriteDcmExplVR(zozo); + break; + } return 0; }