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 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
/* Copyright (c) 2008-2025 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/.
*
* Covered Software is provided under this License on an "as is"
* basis, without warranty of any kind, either expressed, implied, or
* statutory, including, without limitation, warranties that the
* Covered Software is free of defects, merchantable, fit for a
* particular purpose or non-infringing.
* See the Mozilla Public License v. 2.0 for more details.
*
* 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/file_open.h"
#include "gui/mrview/mode/list.h"
#include "gui/mrview/tool/list.h"
#include "gui/mrview/sync/syncmanager.h"
using namespace MR;
using namespace App;
void usage ()
{
AUTHOR =
"J-Donald Tournier (jdtournier@gmail.com), "
"Dave Raffelt (david.raffelt@florey.edu.au), "
"Robert E. Smith (robert.smith@florey.edu.au), "
"Rami Tabbara (rami.tabbara@florey.edu.au), "
"Max Pietsch (maximilian.pietsch@kcl.ac.uk), "
"Thijs Dhollander (thijs.dhollander@gmail.com)";
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;
MR::GUI::MRView::Sync::SyncManager sync;//sync allows syncing between mrview windows in different processes
window.show();
try {
window.parse_arguments();
}
catch (Exception& e) {
e.display();
return;
}
if (qApp->exec())
throw Exception ("error running Qt application");
}
|