~ubuntu-branches/ubuntu/utopic/mricron/utopic

1.1.3 by Michael Hanke
Import upstream version 0.20110413.1~dfsg.1
1
object AutoROIForm: TAutoROIForm
2
  Left = 785
3
  Height = 355
4
  Top = 200
5
  Width = 265
6
  HorzScrollBar.Page = 264
7
  VertScrollBar.Page = 354
8
  ActiveControl = VarianceEdit
9
  Caption = 'Create ROI'
10
  ClientHeight = 355
11
  ClientWidth = 265
12
  Constraints.MaxHeight = 355
13
  Constraints.MaxWidth = 265
14
  Constraints.MinHeight = 355
15
  Constraints.MinWidth = 265
16
  Font.Name = 'MS Sans Serif'
17
  OnCreate = FormCreate
18
  OnDestroy = FormDestroy
19
  OnHide = FormHide
20
  OnShow = FormShow
21
  Position = poScreenCenter
22
  LCLVersion = '0.9.28.2'
23
  object OriginLabel: TLabel
24
    Left = 4
25
    Height = 18
26
    Top = 42
27
    Width = 48
28
    Caption = 'Origin: '
29
    ParentColor = False
30
  end
31
  object OriginBtn: TSpeedButton
32
    Left = 7
33
    Height = 25
34
    Hint = 'You can also double-click on the image'
35
    Top = 5
36
    Width = 114
37
    Caption = 'Reset origin'
38
    Color = clBtnFace
39
    NumGlyphs = 0
40
    OnClick = OriginBtnClick
41
    ShowHint = True
42
    ParentShowHint = False
43
  end
44
  object DiffLabel: TLabel
45
    Left = 12
46
    Height = 18
47
    Top = 98
48
    Width = 147
49
    Caption = 'Difference from origin'
50
    ParentColor = False
51
  end
52
  object Label1: TLabel
53
    Left = 12
54
    Height = 18
55
    Top = 132
56
    Width = 130
57
    Caption = 'Difference at edge'
58
    ParentColor = False
59
  end
60
  object Label2: TLabel
61
    Left = 12
62
    Height = 18
63
    Top = 167
64
    Width = 85
65
    Caption = 'Radius (mm)'
66
    ParentColor = False
67
  end
68
  object Label3: TLabel
69
    Left = 12
70
    Height = 18
71
    Top = 202
72
    Width = 129
73
    Caption = 'Erode/dilate cycles'
74
    ParentColor = False
75
  end
76
  object AutoROIBtn: TSpeedButton
77
    Left = 56
78
    Height = 25
79
    Top = 304
80
    Width = 65
81
    Caption = 'Apply'
82
    Color = clBtnFace
83
    NumGlyphs = 0
84
    OnClick = AutoROIBtnClick
85
  end
86
  object CancelBtn: TSpeedButton
87
    Left = 120
88
    Height = 25
89
    Top = 304
90
    Width = 65
91
    Caption = 'Cancel'
92
    Color = clBtnFace
93
    NumGlyphs = 0
94
    OnClick = CancelBtnClick
95
  end
96
  object Label4: TLabel
97
    Left = 4
98
    Height = 18
99
    Top = 74
100
    Width = 79
101
    Caption = 'Constraints'
102
    ParentColor = False
103
  end
104
  object ExcludeBlackCheck: TCheckBox
105
    Left = 12
106
    Height = 21
107
    Top = 236
108
    Width = 230
109
    Caption = 'Zero intensity constrains edge'
110
    OnClick = AutoROIchange
111
    TabOrder = 0
112
  end
113
  object VarianceEdit: TSpinEdit
114
    Left = 173
115
    Height = 27
116
    Top = 90
117
    Width = 72
118
    MaxValue = 255
119
    OnChange = AutoROIchange
120
    TabOrder = 1
121
    Value = 16
122
  end
123
  object EdgeEdit: TSpinEdit
124
    Left = 173
125
    Height = 27
126
    Top = 126
127
    Width = 72
128
    MaxValue = 255
129
    OnChange = AutoROIchange
130
    TabOrder = 2
131
    Value = 16
132
  end
133
  object RadiusEdit: TSpinEdit
134
    Left = 173
135
    Height = 27
136
    Top = 161
137
    Width = 72
138
    MaxValue = 9999
139
    OnChange = AutoROIchange
140
    TabOrder = 3
141
    Value = 32
142
  end
143
  object ErodeEdit: TSpinEdit
144
    Left = 173
145
    Height = 27
146
    Top = 196
147
    Width = 72
148
    MaxValue = 12
149
    OnChange = AutoROIchange
150
    TabOrder = 4
151
  end
152
  object ROIconstraint: TComboBox
153
    Left = 12
154
    Height = 31
155
    Top = 268
156
    Width = 212
157
    ItemHeight = 0
158
    Items.Strings = (
159
      'Append to current VOI'
160
      'Delete from current VOI'
161
      'Constain with current VOI'
162
    )
163
    OnChange = AutoROIchange
164
    Style = csDropDownList
165
    TabOrder = 5
166
  end
167
  object Timer1: TTimer
168
    Enabled = False
169
    Interval = 400
170
    OnTimer = Timer1Timer
171
    left = 40
172
    top = 34
173
  end
174
end