frmcamshiftdemo.dfm

来自「Delphi版本的OpenCV头文件库(以及诸多实例)」· DFM 代码 · 共 136 行

DFM
136
字号
object fCamshiftdemo: TfCamshiftdemo
  Left = 321
  Top = 186
  Width = 610
  Height = 505
  Caption = 'CAMshift demo'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -10
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  KeyPreview = True
  OldCreateOrder = False
  OnCreate = FormCreate
  OnDestroy = FormDestroy
  OnKeyPress = FormKeyPress
  PixelsPerInch = 96
  TextHeight = 13
  object Panel2: TPanel
    Left = 0
    Top = 0
    Width = 602
    Height = 118
    Align = alTop
    TabOrder = 0
    object Label1: TLabel
      Left = 20
      Top = 20
      Width = 30
      Height = 16
      Caption = 'Vmin'
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -15
      Font.Name = 'MS Sans Serif'
      Font.Style = []
      ParentFont = False
    end
    object Label2: TLabel
      Left = 20
      Top = 52
      Width = 34
      Height = 16
      Caption = 'Vmax'
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -15
      Font.Name = 'MS Sans Serif'
      Font.Style = []
      ParentFont = False
    end
    object Label3: TLabel
      Left = 20
      Top = 89
      Width = 30
      Height = 16
      Caption = 'Smin'
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -15
      Font.Name = 'MS Sans Serif'
      Font.Style = []
      ParentFont = False
    end
    object tbVmin: TTrackBar
      Left = 65
      Top = 20
      Width = 287
      Height = 20
      Max = 256
      PageSize = 8
      Frequency = 16
      TabOrder = 0
    end
    object tbVmax: TTrackBar
      Left = 65
      Top = 52
      Width = 287
      Height = 20
      Max = 256
      PageSize = 8
      Frequency = 16
      TabOrder = 1
    end
    object tbSmin: TTrackBar
      Left = 65
      Top = 85
      Width = 287
      Height = 20
      Max = 256
      PageSize = 8
      Frequency = 16
      TabOrder = 2
    end
    object rgImage: TRadioGroup
      Left = 360
      Top = 8
      Width = 137
      Height = 105
      ItemIndex = 1
      Items.Strings = (
        'Mask'
        'Image')
      TabOrder = 3
      OnClick = rgImageClick
    end
  end
  object Panel1: TPanel
    Left = 0
    Top = 118
    Width = 602
    Height = 353
    Align = alClient
    TabOrder = 1
    object formImage: TImage
      Left = 1
      Top = 1
      Width = 600
      Height = 351
      Align = alClient
      Stretch = True
      OnMouseDown = formImageMouseDown
      OnMouseMove = formImageMouseMove
      OnMouseUp = formImageMouseUp
    end
  end
  object Timer1: TTimer
    Enabled = False
    Interval = 200
    OnTimer = Timer1Timer
    Left = 480
    Top = 40
  end
end

⌨️ 快捷键说明

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