]> Creatis software - creaMaracasVisu.git/blob - appli/QtVTKViewer/qtvtkviewer.cxx
Support #1768 CREATIS Licence insertion
[creaMaracasVisu.git] / appli / QtVTKViewer / qtvtkviewer.cxx
1 /*
2 # ---------------------------------------------------------------------
3 #
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
5 #                        pour la Sant�)
6 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
9 #
10 #  This software is governed by the CeCILL-B license under French law and
11 #  abiding by the rules of distribution of free software. You can  use,
12 #  modify and/ or redistribute the software under the terms of the CeCILL-B
13 #  license as circulated by CEA, CNRS and INRIA at the following URL
14 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
15 #  or in the file LICENSE.txt.
16 #
17 #  As a counterpart to the access to the source code and  rights to copy,
18 #  modify and redistribute granted by the license, users are provided only
19 #  with a limited warranty  and the software's author,  the holder of the
20 #  economic rights,  and the successive licensors  have only  limited
21 #  liability.
22 #
23 #  The fact that you are presently reading this means that you have had
24 #  knowledge of the CeCILL-B license and that you accept its terms.
25 # ------------------------------------------------------------------------ */
26
27 //----------------------------------------------------------------------
28 //              File:               qtvtkviewer.cxx
29 //              Programmer:         Prieto
30 //              Last modified:  25/08/11 (Release 0.1)
31 //              Description:    Sample program fro qtvtkviewer
32 //----------------------------------------------------------------------
33
34 #include "qtvtkviewerwidget.h"
35 #include <QMainWindow>
36 #include <QApplication>
37
38
39
40
41 #include "iostream"
42
43 #include "vtkMetaImageReader.h"
44 //#include "OpenImageDialog.h"
45
46 using namespace std;
47 //using namespace creaMaracasVisuKernel;
48
49 int main(int argc, char **argv)
50 {
51
52
53
54
55
56
57
58     vtkImageData* img = 0;
59
60     /*if (argc < 2){
61
62         OpenImageDialog open(true);
63         img = open.getImageData();
64
65         if(img == 0){
66             std::cout << "ERROR: Image filename missing. usage qtvtkviewer <image filename>"
67                       << std::endl ;
68             return EXIT_FAILURE;
69          }
70     }else*/
71     if(argc==2){
72         std::string inputFilename = argv[1];
73
74         vtkMetaImageReader* reader = vtkMetaImageReader::New();
75         reader->SetFileName(inputFilename.c_str());
76         reader->Update();
77         img = reader->GetOutput();
78     }
79
80
81     QApplication app(argc, argv);
82
83
84     QMainWindow* mainwindow = new QMainWindow();
85
86     QtVTKViewerWidget *viewer = new QtVTKViewerWidget(mainwindow);
87
88     mainwindow-> setCentralWidget(viewer);
89     mainwindow->setMinimumSize(1024, 768);
90
91     mainwindow->showMaximized();
92
93     if(img)
94         viewer->setImage(img);
95     //viewer->SetLookupTable((vtkLookupTable*)colortransfer);
96
97     return app.exec();
98 }
99