-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkmeans.lfm
114 lines (114 loc) · 2.05 KB
/
kmeans.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
object KMeansDlg: TKMeansDlg
Left = 256
Height = 231
Top = 145
Width = 289
BorderStyle = bsDialog
Caption = 'Opções'
ClientHeight = 231
ClientWidth = 289
OnCreate = FormCreate
Position = poMainFormCenter
LCLVersion = '2.0.12.0'
object LabelClusters: TLabel
Left = 16
Height = 15
Top = 91
Width = 143
Caption = 'Número de agrupamentos:'
ParentColor = False
end
object SpinEditClusters: TSpinEdit
Left = 225
Height = 23
Top = 87
Width = 50
TabOrder = 2
Value = 1
end
object LabelIterMax: TLabel
Left = 16
Height = 15
Top = 124
Width = 113
Caption = 'Número de Iterações:'
ParentColor = False
end
object LabelNStart: TLabel
Left = 16
Height = 15
Top = 157
Width = 148
Caption = 'Número inicial de partições:'
ParentColor = False
end
object SpinEditIterMax: TSpinEdit
Left = 225
Height = 23
Top = 120
Width = 50
TabOrder = 3
Value = 10
end
object SpinEditNStart: TSpinEdit
Left = 225
Height = 23
Top = 153
Width = 50
TabOrder = 4
Value = 1
end
object OKButton: TButton
Left = 107
Height = 25
Top = 191
Width = 75
Caption = 'OK'
ModalResult = 1
TabOrder = 5
end
object CancelButton: TButton
Left = 200
Height = 25
Top = 191
Width = 75
Cancel = True
Caption = 'Cancelar'
ModalResult = 2
TabOrder = 6
end
object LabelTransform: TLabel
Left = 16
Height = 15
Top = 21
Width = 82
Caption = 'Transformação:'
ParentColor = False
end
object ComboBoxTransform: TComboBox
Left = 115
Height = 23
Top = 17
Width = 160
ItemHeight = 15
Style = csDropDownList
TabOrder = 0
end
object LabelCoef: TLabel
Left = 16
Height = 15
Top = 55
Width = 63
Caption = 'Coeficiente:'
ParentColor = False
end
object ComboBoxCoef: TComboBox
Left = 115
Height = 23
Top = 51
Width = 160
ItemHeight = 15
Style = csDropDownList
TabOrder = 1
end
end