udlgopprmclusteringtree.dfm

来自「ADaM is a data mining and image processi」· DFM 代码 · 共 161 行

DFM
161
字号
inherited dlgOpPrmClusteringTree: TdlgOpPrmClusteringTree
  Caption = 'Clustering Tree Parameters'
  ClientHeight = 235
  ClientWidth = 416
  PixelsPerInch = 96
  TextHeight = 15
  inherited pnlBottom: TPanel
    Top = 200
    Width = 416
    inherited btnOk: TButton
      Left = 184
    end
    inherited btnCancel: TButton
      Left = 260
    end
    inherited btnHelp: TButton
      Left = 336
    end
  end
  inherited pnlClient: TPanel
    Width = 416
    Height = 200
    inherited pgCtrlPrm: TPageControl
      Width = 384
      Height = 168
      inherited tabPrm: TTabSheet
        Caption = 'Global'
        object Label1: TLabel
          Left = 24
          Top = 32
          Width = 153
          Height = 15
          Caption = 'Random number generator '
        end
        object Label2: TLabel
          Left = 24
          Top = 80
          Width = 126
          Height = 15
          Caption = 'Distance normalization'
        end
        object cmbRnd: TComboBox
          Left = 201
          Top = 27
          Width = 145
          Height = 23
          Style = csDropDownList
          ItemHeight = 15
          ItemIndex = 1
          TabOrder = 0
          Text = 'Standard'
          Items.Strings = (
            'Random'
            'Standard')
        end
        object cmbDistanceNorm: TComboBox
          Left = 201
          Top = 75
          Width = 145
          Height = 23
          Style = csDropDownList
          ItemHeight = 15
          TabOrder = 1
          Items.Strings = (
            'None'
            'Variance')
        end
      end
      object tabSize: TTabSheet
        Caption = 'Node size'
        ImageIndex = 1
        object Label3: TLabel
          Left = 24
          Top = 32
          Width = 151
          Height = 15
          Caption = 'Min size of node to splitting '
        end
        object Label4: TLabel
          Left = 24
          Top = 80
          Width = 110
          Height = 15
          Caption = 'Min size of of leaves'
        end
        object spinMinSizeToSplit: TLMDSpinEdit
          Left = 200
          Top = 27
          Width = 121
          Height = 23
          MaxValue = 50000
          MinValue = 1
          TabOrder = 0
          Value = 1
        end
        object spinMinSizeLeaves: TLMDSpinEdit
          Left = 200
          Top = 75
          Width = 121
          Height = 23
          MaxValue = 50000
          MinValue = 1
          TabOrder = 1
          Value = 1
        end
      end
      object tabPrePruning: TTabSheet
        Caption = 'Pre-pruning'
        ImageIndex = 2
        object Label5: TLabel
          Left = 24
          Top = 24
          Width = 131
          Height = 15
          Caption = 'Max number of clusters '
        end
        object Label6: TLabel
          Left = 26
          Top = 58
          Width = 85
          Height = 15
          Caption = 'Max tree depth '
        end
        object Label7: TLabel
          Left = 25
          Top = 96
          Width = 148
          Height = 15
          Caption = 'Goodness of split threshold'
        end
        object edGoodnessThreshold: TEdit
          Left = 228
          Top = 92
          Width = 121
          Height = 23
          TabOrder = 0
          Text = '0.0'
        end
        object spinMaxDepth: TLMDSpinEdit
          Left = 230
          Top = 54
          Width = 121
          Height = 23
          MinValue = 1
          TabOrder = 1
          Value = 1
        end
        object spinMaxClusters: TLMDSpinEdit
          Left = 228
          Top = 18
          Width = 121
          Height = 23
          MinValue = 1
          TabOrder = 2
          Value = 1
        end
      end
    end
  end
end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?