-
Notifications
You must be signed in to change notification settings - Fork 4
/
gui_config.json
29 lines (29 loc) · 1.63 KB
/
gui_config.json
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
// Default settings for GUI. Can be overriden by command-line arguments.
// Comments beginning with // are ignored.
// Use "True" or "False" for binary options.
// For other field types, the comments specify what the allowed values are.
// If you're a user, do not remove fields.
// If you're a developer who's adding or removing fields, modify parser.py.
{
// Print debugging messages during execution.
"DEBUG": "False",
// Directory that the file browser (File > Open or File > Add Images) will start searching from.
// Leave as "." to start searching from your current working directory.
"FILE_BROWSER_START_DIR": ".",
// For list of options, see the GitHub README or run gui.py with the -h option.
"THEME_NAME": "dark-nr",
// Defaults to "" (empty string) to be automatically set by THEME_NAME.
// Enter a color (name, e.g. "red" or "blue", or 6-hexit color code RRGGBB) to override that.
"CONTOUR_COLOR": "",
// Startup width and height of the GUI as a ratio of primary monitor size.
// Enter a number between 0 (not inclusive) and 1.
"STARTUP_WIDTH_RATIO": 0.75,
"STARTUP_HEIGHT_RATIO": 0.7,
"DISPLAY_ADVANCED_MENU_MESSAGES_IN_TERMINAL": "False",
// The maximum difference in pixel spacing (in mm) between any two images of the global group,
// such that they are considered to have the same spacing.
// For example, if pixel spacing is 0.0001, then the x spacing values of the two images have to be
// within 0.0001 of each other, and same for the y and z spacing values.
// If, for some reason, you don't want any tolerance, set this to 0.0.
"GROUP_MAX_SPACING_DIFF": 0.0001
}