-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathunit1.lfm
195 lines (195 loc) · 3.79 KB
/
unit1.lfm
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
object Form1: TForm1
Left = 383
Height = 465
Top = 233
Width = 880
Caption = 'Form1'
ClientHeight = 465
ClientWidth = 880
OnCreate = FormCreate
LCLVersion = '2.1.0.0'
object focalLength: TEdit
Left = 152
Height = 32
Top = 32
Width = 80
OnKeyPress = focalLengthKeyPress
TabOrder = 0
Text = 'focalLength'
end
object focalLengthLabel: TLabel
Left = 74
Height = 16
Top = 48
Width = 98
Caption = 'focalLengthLabel'
ParentColor = False
end
object sensorSizeLabel: TLabel
Left = 74
Height = 16
Top = 136
Width = 96
Caption = 'sensorSizeLabel'
ParentColor = False
end
object sensorSizesComboBox: TComboBox
Left = 152
Height = 32
Top = 120
Width = 308
ItemHeight = 0
OnChange = sensorSizesComboBoxChange
OnSelect = sensorSizesComboBoxSelect
TabOrder = 1
Text = 'sensorSizesComboBox'
end
object lensMultiplicationFactorLabel: TLabel
Left = 56
Height = 16
Top = 248
Width = 168
Caption = 'lensMultiplicationFactorLabel'
ParentColor = False
end
object lensMultiplicationFactor: TEdit
Left = 256
Height = 32
Top = 232
Width = 80
TabOrder = 2
Text = 'lensMultiplicationFactor'
end
object lensFocalLengthEquivalentLabel: TLabel
Left = 37
Height = 16
Top = 296
Width = 187
Caption = 'lensFocalLengthEquivalentLabel'
ParentColor = False
end
object lensEquivalent: TEdit
Left = 256
Height = 32
Top = 282
Width = 80
TabOrder = 3
Text = 'lensEquivalent'
end
object calculateButton: TButton
Left = 152
Height = 25
Top = 184
Width = 94
Caption = 'calculateButton'
OnClick = calculateButtonClick
TabOrder = 4
end
object customSensorDimensionsCheckBox: TCheckBox
Left = 328
Height = 23
Top = 80
Width = 240
Caption = 'customSensorDimensionsCheckBox'
OnChange = customSensorDimensionsCheckBoxChange
TabOrder = 5
end
object sensorXEdit: TEdit
Left = 576
Height = 32
Top = 120
Width = 80
OnKeyPress = sensorXEditKeyPress
TabOrder = 6
Text = 'sensorXEdit'
end
object sensorYEdit: TEdit
Left = 736
Height = 32
Top = 120
Width = 80
OnKeyPress = sensorYEditKeyPress
TabOrder = 7
Text = 'sensorYEdit'
end
object sensorXLabel: TLabel
Left = 664
Height = 16
Top = 136
Width = 79
Caption = 'sensorXLabel'
ParentColor = False
end
object sensorYLabel: TLabel
Left = 824
Height = 16
Top = 136
Width = 79
Caption = 'sensorYLabel'
ParentColor = False
end
object focalLengthMMLabel: TLabel
Left = 240
Height = 16
Top = 48
Width = 120
Caption = 'focalLengthMMLabel'
ParentColor = False
end
object FOVLabel: TLabel
Left = 56
Height = 16
Top = 344
Width = 58
Caption = 'FOVLabel'
ParentColor = False
end
object FOVHorizontalLabel: TLabel
Left = 56
Height = 16
Top = 392
Width = 117
Caption = 'FOVHorizontalLabel'
ParentColor = False
end
object FOVHorizontalEdit: TEdit
Left = 120
Height = 32
Top = 376
Width = 80
TabOrder = 8
Text = 'FOVHorizontalEdit'
end
object FOVVerticalLabel: TLabel
Left = 248
Height = 16
Top = 392
Width = 101
Caption = 'FOVVerticalLabel'
ParentColor = False
end
object FOVVerticalEdit: TEdit
Left = 296
Height = 32
Top = 376
Width = 80
TabOrder = 9
Text = 'FOVVerticalEdit'
end
object FOVDiagonalLabel: TLabel
Left = 440
Height = 16
Top = 392
Width = 109
Caption = 'FOVDiagonalLabel'
ParentColor = False
end
object FOVDiagonalEdit: TEdit
Left = 496
Height = 32
Top = 376
Width = 80
TabOrder = 10
Text = 'FOVDiagonalEdit'
end
end