-
Notifications
You must be signed in to change notification settings - Fork 24
/
extractui.dfm
executable file
·71 lines (71 loc) · 1.48 KB
/
extractui.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
object ExtractForm: TExtractForm
Left = 423
Top = 77
BorderStyle = bsDialog
Caption = 'Extract Objects (Remove Haze)'
ClientHeight = 138
ClientWidth = 524
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
PixelsPerInch = 96
TextHeight = 13
object ReadIntLabel: TLabel
Left = 144
Top = 16
Width = 231
Height = 13
Caption = 'Otsu levels: larger values for larger volumes (1..5)'
end
object ReadIntLabel1: TLabel
Left = 144
Top = 40
Width = 279
Height = 13
Caption = 'Edge dilation voxels: larger values for larger volumes (0..12)'
end
object OneContiguousObjectCheck: TCheckBox
Left = 8
Top = 72
Width = 313
Height = 17
Caption = 'Only extract single largest object'
Checked = True
State = cbChecked
TabOrder = 3
end
object OKBtn: TButton
Left = 432
Top = 96
Width = 75
Height = 25
Caption = 'OK'
ModalResult = 1
TabOrder = 0
end
object OtsuLevelsEdit: TSpinEdit
Left = 16
Top = 8
Width = 121
Height = 22
MaxValue = 5
MinValue = 1
TabOrder = 1
Value = 3
end
object DilateEdit: TSpinEdit
Left = 16
Top = 40
Width = 121
Height = 22
MaxValue = 12
MinValue = 0
TabOrder = 2
Value = 2
end
end