forked from MRtrix3/mrtrix3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mrview.cpp
98 lines (72 loc) · 2.8 KB
/
mrview.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/* Copyright (c) 2008-2017 the MRtrix3 contributors.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at http://mozilla.org/MPL/2.0/.
*
* MRtrix is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* For more details, see http://www.mrtrix.org/.
*/
#include "gui/gui.h"
#include "command.h"
#include "progressbar.h"
#include "memory.h"
#include "gui/mrview/icons.h"
#include "gui/mrview/window.h"
#include "gui/mrview/mode/list.h"
#include "gui/mrview/tool/list.h"
using namespace MR;
using namespace App;
void usage ()
{
AUTHOR = "J-Donald Tournier ([email protected]), Dave Raffelt ([email protected]), Robert E. Smith ([email protected]), Max Pietsch ([email protected]), Thijs Dhollander ([email protected])";
SYNOPSIS = "The MRtrix image viewer.";
DESCRIPTION
+ "Any images listed as arguments will be loaded and available through the "
"image menu, with the first listed displayed initially. Any subsequent "
"command-line options will be processed as if the corresponding action had "
"been performed through the GUI."
+ "Note that because images loaded as arguments (i.e. simply listed on the "
"command-line) are opened before the GUI is shown, subsequent actions to be "
"performed via the various command-line options must appear after the last "
"argument. This is to avoid confusion about which option will apply to which "
"image. If you need fine control over this, please use the -load or -select_image "
"options. For example:"
+ "$ mrview -load image1.mif -interpolation 0 -load image2.mif -interpolation 0"
+ "or"
+ "$ mrview image1.mif image2.mif -interpolation 0 -select_image 2 -interpolation 0";
REFERENCES
+ "Tournier, J.-D.; Calamante, F. & Connelly, A. " // Internal
"MRtrix: Diffusion tractography in crossing fiber regions. "
"Int. J. Imaging Syst. Technol., 2012, 22, 53-66";
ARGUMENTS
+ Argument ("image", "An image to be loaded.")
.optional()
.allow_multiple()
.type_image_in ();
GUI::MRView::Window::add_commandline_options (OPTIONS);
#define TOOL(classname, name, description) \
MR::GUI::MRView::Tool::classname::add_commandline_options (OPTIONS);
{
using namespace MR::GUI::MRView::Tool;
#include "gui/mrview/tool/list.h"
}
REQUIRES_AT_LEAST_ONE_ARGUMENT = false;
}
void run ()
{
GUI::MRView::Window window;
window.show();
try {
window.parse_arguments();
}
catch (Exception& e) {
e.display();
return;
}
if (qApp->exec())
throw Exception ("error running Qt application");
}