1 /*=========================================================================
4 Module: $RCSfile: vtkgdcmSerieViewer.cxx,v $
6 Date: $Date: 2005/09/07 08:21:28 $
7 Version: $Revision: 1.11 $
9 Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10 l'Image). All rights reserved. See Doc/License.txt or
11 http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
13 This software is distributed WITHOUT ANY WARRANTY; without even
14 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 PURPOSE. See the above copyright notices for more information.
17 =========================================================================*/
18 // This example illustrates how the vtkGdcmReader vtk class can
19 // use the result of gdcm::SerieHelper constructor and check
20 // the various Setters :
21 // SerieHelper::SetOrderToReverse,
22 // SerieHelper::SetUserLessThanFunction
23 // SerieHelper::SetLoadMode
24 // vtkGdcmReader::SetUserFunction
25 // vtkGdcmReader::SetCoherentFileList
27 // * the Directory name that contains the Dicom images constituting the stack
28 // should be given as command line argument (keyword : dirname=),
29 // * you can navigate through the stack by hitting any character key,
30 // * the produced vtk file is named "foo.vtk" (in the invocation directory).
32 //----------------------------------------------------------------------------
33 #include <vtkRenderWindowInteractor.h>
34 #include <vtkImageViewer.h>
35 #include <vtkStructuredPoints.h>
36 #include <vtkStructuredPointsWriter.h>
37 #include <vtkCommand.h>
38 #include <vtkRenderer.h>
39 #include <vtkImageMapToColors.h>
40 #include <vtkLookupTable.h>
42 #include "vtkGdcmReader.h"
43 #include "gdcmDocument.h" // for NO_SHADOWSEQ
44 #include "gdcmSerieHelper.h"
45 #include "gdcmDebug.h"
46 #include "gdcmValEntry.h"
48 #include "gdcmArgMgr.h" // for Argument Manager functions
49 #include <string.h> // for strcmp
50 #ifndef vtkFloatingPointType
51 #define vtkFloatingPointType float
54 void userSuppliedMirrorFunction (uint8_t *im, gdcm::File *f);
55 void userSuppliedTopDownFunction(uint8_t *im, gdcm::File *f);
56 bool userSuppliedLessThanFunction(gdcm::File *f1, gdcm::File *f2);
57 bool userSuppliedLessThanFunction2(gdcm::File *f1, gdcm::File *f2);
60 uint16_t *elemsToOrderOn;
62 //----------------------------------------------------------------------------
63 // Callback for the interaction
64 class vtkgdcmObserver : public vtkCommand
67 virtual char const *GetClassName() const
69 return "vtkgdcmObserver";
72 static vtkgdcmObserver *New()
74 return new vtkgdcmObserver;
79 this->ImageViewer = NULL;
82 virtual void Execute(vtkObject *, unsigned long event, void* )
84 if ( this->ImageViewer )
86 if ( event == vtkCommand::CharEvent )
88 int max = ImageViewer->GetWholeZMax();
89 int slice = (ImageViewer->GetZSlice() + 1 ) % ++max;
90 ImageViewer->SetZSlice( slice );
91 ImageViewer->GetRenderer()->ResetCameraClippingRange();
92 ImageViewer->Render();
96 vtkImageViewer *ImageViewer;
99 int main(int argc, char *argv[])
102 " \n vtkgdcmSerieViewer : \n",
103 " Display a 'Serie' (same Serie UID) within a Directory ",
104 " You can navigate through the stack by hitting any character key. ",
105 " usage: vtkgdcmSerieViewer dirname=sourcedirectory ",
106 " [noshadowseq][noshadow][noseq] ",
107 " [reverse] [{[mirror]|[topdown]|[rotate]}] ",
108 " [order=] [check][debug] ",
109 " sourcedirectory : name of the directory holding the images ",
110 " if it holds more than one serie, ",
111 " only the first one id displayed. ",
112 " noshadowseq: user doesn't want to load Private Sequences ",
113 " noshadow : user doesn't want to load Private groups (odd number) ",
114 " noseq : user doesn't want to load Sequences ",
115 " reverse : user wants to sort the images reverse order ",
116 " mirror : user wants to 'mirror' the images | just some simple ",
117 " topdown : user wants to 'topdown' the images| examples of user ",
118 " rotate : NOT YET MADE (useless?) | supplied functions ",
119 " check : user wants to force more coherence checking ",
120 " order= : group1-elem1,group2-elem2,... (in hexa, no space) ",
121 " if we want to use them as a sort criterium ",
122 " Right now : ValEntries only -just an example- ",
124 " order= : order=name if we want to sort on file name (why not ?) ",
125 " debug : user wants to run the program in 'debug mode' ",
129 // Initialize Arguments Manager
130 gdcm::ArgMgr *am= new gdcm::ArgMgr(argc, argv);
132 if (argc == 1 || am->ArgMgrDefined("usage") )
134 am->ArgMgrUsage(usage); // Display 'usage'
139 char *dirName = am->ArgMgrWantString("dirname",usage);
141 int loadMode = gdcm::LD_ALL;
142 if ( am->ArgMgrDefined("noshadowseq") )
143 loadMode |= gdcm::LD_NOSHADOWSEQ;
146 if ( am->ArgMgrDefined("noshadow") )
147 loadMode |= gdcm::LD_NOSHADOW;
148 if ( am->ArgMgrDefined("noseq") )
149 loadMode |= gdcm::LD_NOSEQ;
152 int reverse = am->ArgMgrDefined("reverse");
154 int mirror = am->ArgMgrDefined("mirror");
155 int topdown = am->ArgMgrDefined("topdown");
156 int rotate = am->ArgMgrDefined("rotate");
158 if ( mirror && topdown )
160 std::cout << "mirror *OR* topDown !"
167 std::cout << "'rotate' undealt with -> ignored !"
171 int check = am->ArgMgrDefined("check");
173 // This is so ugly, a cstring is NOT a char * (god damit!)
174 bool bname = ( strcmp(am->ArgMgrGetString("order", (char*)"not found"),"name")==0 );
176 elemsToOrderOn = am->ArgMgrGetXInt16Enum("order", &orderNb);
178 if (am->ArgMgrDefined("debug"))
179 gdcm::Debug::DebugOn();
181 /* if unused Param we give up */
182 if ( am->ArgMgrPrintUnusedLabels() )
184 am->ArgMgrUsage(usage);
189 delete am; // we don't need Argument Manager any longer
191 // ----------------------- End Arguments Manager ----------------------
193 gdcm::SerieHelper *sh = new gdcm::SerieHelper();
194 sh->SetLoadMode(loadMode);
196 sh->SetSortOrderToReverse();
197 sh->SetDirectory( dirName, true);
202 // For all the Coherent Files lists of the gdcm::Serie
203 gdcm::FileList *l = sh->GetFirstCoherentFileList();
206 std::cout << "Oops! No CoherentFileList found ?!?" << std::endl;
211 sh->SetUserLessThanFunction(userSuppliedLessThanFunction2);
212 else if (orderNb != 0)
213 sh->SetUserLessThanFunction(userSuppliedLessThanFunction);
217 nbFiles = l->size() ;
220 std::cout << "Sort list : " << nbFiles << " long" << std::endl;
221 sh->OrderFileList(l); // sort the list
222 break; // The first one is OK. user will have to check
226 std::cout << "Oops! Empty CoherentFileList found ?!?" << std::endl;
228 l = sh->GetNextCoherentFileList();
233 if ( !sh->IsCoherent(l) ) // just be sure (?)
235 std::cout << "Files are not coherent. Stop everything " << std::endl;
241 vtkGdcmReader *reader = vtkGdcmReader::New();
242 reader->AllowLookupTableOff();
245 reader->SetUserFunction (userSuppliedMirrorFunction);
247 reader->SetUserFunction (userSuppliedTopDownFunction);
249 // Only the first FileList is dealt with (just an example)
250 // (The files will not be parsed twice by the reader)
252 //---------------------------------------------------------
253 reader->SetCoherentFileList(l);
254 //---------------------------------------------------------
256 // because we passed a Coherent File List from a SerieHelper,
257 // setting LoadMode is useless in this case
258 // reader->SetLoadMode(NO_SHADOWSEQ);
262 reader->GetOutput()->Print( cout );
264 vtkRenderWindowInteractor *iren = vtkRenderWindowInteractor::New();
266 vtkImageViewer *viewer = vtkImageViewer::New();
268 if( reader->GetLookupTable() )
271 vtkImageMapToColors *map = vtkImageMapToColors::New ();
272 map->SetInput (reader->GetOutput());
273 map->SetLookupTable (reader->GetLookupTable());
274 map->SetOutputFormatToRGB();
275 viewer->SetInput ( map->GetOutput() );
280 vtkFloatingPointType *range = reader->GetOutput()->GetScalarRange();
281 viewer->SetColorLevel (0.5 * (range[1] + range[0]));
282 viewer->SetColorWindow (range[1] - range[0]);
284 viewer->SetInput ( reader->GetOutput() );
286 viewer->SetupInteractor (iren);
288 //vtkFloatingPointType *range = reader->GetOutput()->GetScalarRange();
289 //viewer->SetColorWindow (range[1] - range[0]);
290 //viewer->SetColorLevel (0.5 * (range[1] + range[0]));
292 // Here is where we setup the observer,
293 vtkgdcmObserver *obs = vtkgdcmObserver::New();
294 obs->ImageViewer = viewer;
295 iren->AddObserver(vtkCommand::CharEvent,obs);
302 //if you wish you can export dicom to a vtk file
303 vtkStructuredPointsWriter *writer = vtkStructuredPointsWriter::New();
304 writer->SetInput( reader->GetOutput());
305 writer->SetFileName( "foo.vtk" );
306 writer->SetFileTypeToBinary();
318 // --------------------------------------------------------
319 // This is just a *very* simple example of user supplied function
320 // to mirror (why not ?) the image
321 // It's *not* part of gdcm.
322 // --------------------------------------------------------
330 imj = (ty *)im +j*nx; \
331 for (i=0;i<nx/2;i++) \
334 imj[i] =imj[nx-1-i]; \
343 imj = (ty *)im +j*nx; \
345 imj[i] =imj[nx/2+1]; \
350 void userSuppliedMirrorFunction(uint8_t *im, gdcm::File *f)
352 if (f->GetZSize() != 1)
354 std::cout << "mirror : Multiframe images not yet dealt with" << std::endl;
358 if (f->GetSamplesPerPixel() != 1 || f->GetBitsAllocated() == 24)
360 std::cout << "mirror : RGB / YBR not yet dealt with" << std::endl;
363 int nx = f->GetXSize();
364 int ny = f->GetYSize();
366 std::string pixelType = f->GetPixelType();
367 if ( pixelType == "8U" || pixelType == "8S" )
372 if ( pixelType == "16U" || pixelType == "16S")
377 std::cout << "mirror : Pixel Size (!=8, !=16) not yet dealt with"
383 // --------------------------------------------------------
384 // This is just a *very* simple example of user supplied function
385 // to topdown (why not ?) the image
386 // It's *not* part of gdcm.
387 // --------------------------------------------------------
393 for (j=0;j<ny/2;j++) \
395 imj = (ty *)im +j*nx; \
396 imJ = (ty *)im +(ny-1-j)*nx; \
405 void userSuppliedTopDownFunction(uint8_t *im, gdcm::File *f)
407 if (f->GetZSize() != 1)
409 std::cout << "mirror : Multiframe images not yet dealt with" << std::endl;
413 if (f->GetSamplesPerPixel() != 1 || f->GetBitsAllocated() == 24)
415 std::cout << "mirror : RGB / YBR not yet dealt with" << std::endl;
418 int nx = f->GetXSize();
419 int ny = f->GetYSize();
421 std::string pixelType = f->GetPixelType();
422 if ( pixelType == "8U" || pixelType == "8S" )
427 if ( pixelType == "16U" || pixelType == "16S")
432 std::cout << "topdown : Pixel Size (!=8, !=16) not yet dealt with"
437 // --------------------------------------------------------
438 // This is just a *very* simple example of user supplied 'LessThan' function
439 // It's *not* part of gdcm.
441 // Note : orderNb and elemsToOrderOn are here global variables.
442 // Within a 'normal' function they would't be any orderNb and elemsToOrderOn var
443 // User *knows* on what field(s) he wants to compare;
444 // He just writes a decent function.
445 // Here, we want to get info from the command line Argument Manager.
447 // Warning : it's up to 'vtkgdcmSerieViewer' user to find a suitable data set !
448 // --------------------------------------------------------
451 bool userSuppliedLessThanFunction(gdcm::File *f1, gdcm::File *f2)
453 // for *this* user supplied function, I supposed only ValEntries are checked.
456 gdcm::ValEntry *e1,*e2;
457 for (int ri=0; ri<orderNb; ri++)
459 std::cout << std::hex << elemsToOrderOn[2*ri] << "|"
460 << elemsToOrderOn[2*ri+1]
463 e1= f1->gdcm::Document::GetValEntry( elemsToOrderOn[2*ri],
464 elemsToOrderOn[2*ri+1]);
466 e2= f2->gdcm::Document::GetValEntry( elemsToOrderOn[2*ri],
467 elemsToOrderOn[2*ri+1]);
470 std::cout << std::hex << elemsToOrderOn[2*ri] << "|"
471 << elemsToOrderOn[2*ri+1]
472 << " not found" << std::endl;
475 s1 = e1->gdcm::ValEntry::GetValue();
476 s2 = e2->gdcm::ValEntry::GetValue();
477 std::cout << "[" << s1 << "] vs [" << s2 << "]" << std::endl;
485 return false; // all fields equal
488 // --------------------------------------------------------
489 // This is just an other *very* simple example of user supplied 'LessThan'
491 // It's *not* part of gdcm.
493 // Warning : it's up to 'vtkgdcmSerieViewer' user to find a suitable data set !
494 // --------------------------------------------------------
496 bool userSuppliedLessThanFunction2(gdcm::File *f1, gdcm::File *f2)
498 std::cout << "[" << f1->GetFileName() << "] vs ["
499 << f2->GetFileName() << "]" << std::endl;
500 return f1->GetFileName() < f2->GetFileName();