]> Creatis software - clitk.git/blob - vv/vv.cxx
corrections post- "-h" addition in VV
[clitk.git] / vv / vv.cxx
1 /*=========================================================================
2   Program:   vv                     http://www.creatis.insa-lyon.fr/rio/vv
3
4   Authors belong to:
5   - University of LYON              http://www.universite-lyon.fr/
6   - Léon Bérard cancer center       http://www.centreleonberard.fr
7   - CREATIS CNRS laboratory         http://www.creatis.insa-lyon.fr
8
9   This software is distributed WITHOUT ANY WARRANTY; without even
10   the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11   PURPOSE.  See the copyright notices for more information.
12
13   It is distributed under dual licence
14
15   - BSD        See included LICENSE.txt file
16   - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17 ===========================================================================**/
18 #include <utility>
19 #include <cassert>
20 #include <ctime>
21 #include <string>
22 #include <ostream>
23 #include <sstream>
24 #include <QApplication>
25 #include <QPixmap>
26 #include <QSplashScreen>
27 #include <QTimer>
28 #include <QDesktopWidget>
29 #include <QDir>
30
31 #include "clitkIO.h"
32 #include "vvMainWindow.h"
33 #include "vvReadState.h"
34 #include "vvToolsList.h"
35 #include "vvConfiguration.h"
36
37 #include <vtkFileOutputWindow.h>
38 #include <vtkSmartPointer.h>
39
40 #include <itkFileOutputWindow.h>
41 #include <itkSmartPointer.h>
42 #include <itksys/SystemTools.hxx>
43
44 #include <sys/types.h>
45 #include <sys/stat.h>
46 #include <errno.h>
47
48 void load_image_first_error()
49 {
50   std::cerr << "You need to load an image before adding an overlay!" << std::endl;
51   exit(1);
52 }
53
54 std::string create_timed_string()
55 {
56   time_t t;
57   time(&t);
58
59   struct tm* pt = localtime(&t);
60
61   const int size = 64;
62   char st[size];
63   strftime(st, size, "%Y%m%d-%H%M%S", pt);
64
65   return st;
66 }
67
68 //------------------------------------------------------------------------------
69 #ifdef _WIN32
70 int CALLBACK WinMain(HINSTANCE hInstance, HINSTANCE prevInstance, LPSTR lpCmdLine, int nShowCmd)
71 {
72   int argc = __argc;
73   char **argv = __argv;
74 #else
75 int main( int argc, char** argv )
76 {
77 #endif
78
79   CLITK_INIT;
80
81   QApplication app( argc, argv );
82   Q_INIT_RESOURCE(vvIcons);
83   
84   // 
85   // ATTENTION: Rômulo Pinho - 05/08/2011
86   // Forcing the locale of the application is necessary
87   // because QT initialization changes it to the locale
88   // of the language of the system. This can cause 
89   // inconsistencies when, e.g., reading float values
90   // from DICOM fields with gdcm, since the decimal
91   // point may be changed for a comma (as in French).
92   // In practice, functions such as scanf and its
93   // variations are directly affected.
94   // https://bugreports.qt.nokia.com//browse/QTBUG-15247?page=com.atlassian.jira.plugin.system.issuetabpanels%253Achangehistory-tabpanel
95   //
96 #ifndef _WIN32
97   std::string old_locale = setlocale(LC_NUMERIC, NULL);
98   setlocale(LC_NUMERIC, "POSIX");
99 #endif
100
101   vvMainWindow window;
102
103   //Try to give the window a sensible default size
104   int width=QApplication::desktop()->width()*0.8;
105   int height=QApplication::desktop()->height()*0.9;
106   if (width> 1.5*height)
107     width=1.5*height;
108   window.resize(width,height);
109
110   window.show();
111
112   std::vector<std::string> sequence_filenames;
113   enum {P_NORMAL,P_SEQUENCE,P_WINDOW,P_LEVEL};
114   int parse_mode=P_NORMAL;
115   int n_image_loaded=0;
116   std::string win(""), lev("");
117
118         bool link_images = false;
119   if (argc >1) {
120     for (int i = 1; i < argc; i++) {
121       std::string current = argv[i];
122       if (!current.compare(0,1,"-")) { // && !current.compare(0,2,"--")) { //We are parsing an option
123         if (parse_mode == P_SEQUENCE) {//First finish the current sequence
124           window.LoadImages(sequence_filenames, vvImageReader::MERGEDWITHTIME);
125           sequence_filenames.clear();
126           parse_mode=P_NORMAL;
127         } 
128         else if (parse_mode == P_WINDOW) { // handle negative window values
129           win=current;
130           parse_mode=P_NORMAL;
131           continue;
132         } else if (parse_mode == P_LEVEL) { // handle negative level values
133           lev=current;
134           parse_mode=P_NORMAL;
135           continue;
136         }
137         if ((current=="--help") || (current=="-h")) {
138           std::cout << "vv " << VV_VERSION << ", the 2D, 2D+t, 3D and 3D+t (or 4D) image viewer" << std::endl << std::endl
139                     << "Synopsis: vv file(s) [OPTIONS] file(s)" << std::endl << std::endl
140                     << "Open file(s) for visualization." << std::endl << std::endl
141                     << "OPTIONS may be:" << std::endl
142                     << "--help         \t Print command line help and exit." << std::endl
143                     << "--window number\t Gray scale window width for all images." << std::endl
144                     << "--level number \t Gray scale window level for all images." << std::endl
145                     << "--linkall      \t Link pan, zoom and spatial position of crosshair in images." << std::endl
146                     << "--log          \t Log output messages in vv-log directory." << std::endl
147                     << "--state file   \t Read display parameters from file." << std::endl
148                     << "--sequence file\t Read all file(s) until next option in a single temporal sequence." << std::endl
149                     << std::endl
150                     << "These last options must follow a file name since they overlay something on an image:" << std::endl
151                     << "--vf file      \t Overlay the vector field in file." << std::endl
152                     << "--overlay file \t Overlay the image in file with complementary colors." << std::endl
153                     << "--fusion file  \t Overlay the image in file with alpha blending and colormap." << std::endl
154                     //<< "--roi file     \t Overlay binary mask images. Option may be repeated on a single base image." << std::endl
155                     << "--contour file \t Overlay DICOM RT-STRUCT contours." << std::endl;
156           exit(0);
157         } else if (current=="--vf") {
158           if (!n_image_loaded) load_image_first_error();
159           window.AddField(argv[i+1],n_image_loaded-1);
160           i++; //skip vf name
161         } else if (current=="--overlay") {
162           if (!n_image_loaded) load_image_first_error();
163           window.AddOverlayImage(n_image_loaded-1,argv[i+1]);
164           i++; //skip overlay name
165         } /*else if (current=="--roi") {
166           if (!n_image_loaded) load_image_first_error();
167           window.AddROI(n_image_loaded-1,argv[i+1]);
168           i++; //skip roi name
169         }*/ else if (current=="--contour") {
170           if (!n_image_loaded) load_image_first_error();
171           window.AddDCStructContour(n_image_loaded-1,argv[i+1]);
172           i++; //skip roi name
173         } else if (current=="--fusion") {
174           if (!n_image_loaded) load_image_first_error();
175           window.AddFusionImage(n_image_loaded-1,argv[i+1]);
176           i++; //skip fusion name
177         } else if (current == "--sequence") {
178           n_image_loaded++; //count only one for the sequence
179           parse_mode=P_SEQUENCE;
180         } else if (current == "--window") {
181           parse_mode=P_WINDOW;
182         } else if (current == "--level") {
183           parse_mode=P_LEVEL;
184         } else if (current == "--linkall") {
185           link_images = true;
186         }
187         else if (current == "--log") {
188           std::string log_dir = QDir::tempPath().toStdString() + std::string("/vv-log");
189
190           if(itksys::SystemTools::FileExists(log_dir.c_str()) &&
191               !itksys::SystemTools::FileIsDirectory(log_dir.c_str())) {
192             std::cerr << "Error creating log directory, file exists and is not a directory." << std::endl;
193             exit(1);
194           } else if(!itksys::SystemTools::MakeDirectory(log_dir.c_str())) {
195             std::cerr << "Error creating log directory." << std::endl;
196             exit(1);
197           }
198
199           std::string log_file = log_dir + "/" + create_timed_string() + ".log";
200
201           itk::SmartPointer<itk::FileOutputWindow> itk_log = itk::FileOutputWindow::New();
202           itk_log->SetFileName(log_file.c_str());
203           itk_log->FlushOn();
204           itk_log->AppendOn();
205           itk::OutputWindow::SetInstance(itk_log);
206
207           vtkSmartPointer<vtkFileOutputWindow> vtk_log = vtkFileOutputWindow::New();
208           vtk_log->SetFileName(log_file.c_str());
209           vtk_log->FlushOn();
210           vtk_log->AppendOn();
211           vtkOutputWindow::SetInstance(vtk_log);
212         } else if (current == "--state") {
213           //window.ReadSavedStateFile(argv[i+1]);
214           vvReadState read_state;
215           read_state.Run(&window, argv[i+1]);
216           n_image_loaded += read_state.GetNumberOfImages();
217           i++;
218         }
219         
220       } else if (parse_mode == P_SEQUENCE) {
221         sequence_filenames.push_back(current);
222       } else if (parse_mode == P_WINDOW) {
223         win=current;
224         parse_mode=P_NORMAL;
225       } else if (parse_mode == P_LEVEL) {
226         lev=current;
227         parse_mode=P_NORMAL;
228       } else {
229         std::vector<std::string> image;
230         image.push_back(current);
231         window.LoadImages(image, vvImageReader::IMAGE);
232         n_image_loaded++;
233       }
234     }
235     if (parse_mode == P_SEQUENCE) { //Finish any current sequence
236       window.LoadImages(sequence_filenames, vvImageReader::MERGEDWITHTIME);
237       sequence_filenames.clear();
238       parse_mode=P_NORMAL;
239     }
240   }
241
242   if(win!="" && lev!="") {
243     window.SetWindowLevel(atof(win.c_str()), atof(lev.c_str()));
244     window.ApplyWindowLevelToAllImages();
245   }
246
247   if (link_images)
248     window.LinkAllImages();
249
250   int ret = app.exec();
251   
252 #ifndef _WIN32
253   // restoring the locale, just to be clean...
254   setlocale(LC_NUMERIC, old_locale.c_str());
255 #endif
256
257   return ret;
258 }