forked from neurolabusc/MRIcroGL10_OLD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dcm2nii.dfm
executable file
·143 lines (143 loc) · 3.19 KB
/
dcm2nii.dfm
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
object dcm2niiForm: Tdcm2niiForm
Left = 435
Top = 172
Width = 780
Height = 480
Caption = 'dcm2nii'
Color = clBtnFace
Constraints.MinHeight = 120
Constraints.MinWidth = 640
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
Menu = MainMenu1
OldCreateOrder = False
Position = poScreenCenter
OnClose = FormClose
OnCreate = FormCreate
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Panel1: TPanel
Left = 0
Top = 0
Width = 772
Height = 32
Align = alTop
BevelOuter = bvNone
TabOrder = 0
DesignSize = (
772
32)
object outnameLabel: TLabel
Left = 160
Top = 8
Width = 63
Height = 13
Caption = 'Output Name'
end
object Label2: TLabel
Left = 6
Top = 8
Width = 46
Height = 13
Caption = 'Compress'
end
object outputFolderLabel: TLabel
Left = 432
Top = 8
Width = 64
Height = 13
Caption = 'Output Folder'
end
object VerboseLabel: TLabel
Left = 88
Top = 8
Width = 39
Height = 13
Caption = 'Verbose'
end
object compressCheck: TCheckBox
Left = 60
Top = 6
Width = 19
Height = 17
TabOrder = 0
OnClick = compressCheckClick
end
object outnameEdit: TEdit
Left = 232
Top = 4
Width = 193
Height = 21
Hint =
'Name for NIfTI images. Special characers are %f (Folder name) %i' +
' (ID) %n (patient Name) %p (Protocol name) %s (Series number) %t' +
' (Time)'
TabOrder = 1
Text = '%f%s'
OnKeyUp = outnameEditKeyUp
end
object outputFolderName: TButton
Left = 502
Top = 2
Width = 268
Height = 25
Anchors = [akLeft, akTop, akRight]
Caption = 'input folder'
TabOrder = 2
OnClick = outputFolderNameClick
end
object VerboseCheck: TCheckBox
Left = 132
Top = 6
Width = 19
Height = 17
TabOrder = 3
OnClick = compressCheckClick
end
end
object Memo1: TMemo
Left = 0
Top = 32
Width = 772
Height = 402
Align = alClient
TabOrder = 1
end
object MainMenu1: TMainMenu
Left = 32
Top = 56
object FileMenu: TMenuItem
Caption = 'File'
object DicomMenu: TMenuItem
Caption = 'DICOM to NIfTI...'
OnClick = DicomMenuClick
end
object ParRecMenu: TMenuItem
Caption = 'PAR/REC to NIfTI...'
OnClick = ParRecMenuClick
end
object ResetMenu: TMenuItem
Caption = 'Reset Defaults'
OnClick = ResetMenuClick
end
end
object EditMenu: TMenuItem
Caption = 'Edit'
object CopyMenu: TMenuItem
Caption = 'Copy'
OnClick = CopyMenuClick
end
end
end
object OpenDialog1: TOpenDialog
Filter = 'Philips research (*.par)|*.par'
Options = [ofHideReadOnly, ofAllowMultiSelect, ofEnableSizing]
Title = 'Open existing file'
Left = 80
Top = 56
end
end