Logo
Acquisti Giochi Scienza Affari Notizie Societè Casa
Regionale Sport Computer Salute Tempo libero Consultazione  


MotionDetection - designer

' translated in VB:NET from c#

' by Giuseppe Di Santo - Studio IT

 

Imports Emgu.CV.UI

Imports Emgu.CV

Imports Emgu.CV.Structure

Imports System

Imports System.ComponentModel

Imports System.Drawing

Imports System.Windows.Forms

 

 

 

<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _

Partial Class MotionDetection

    Inherits System.Windows.Forms.Form

 

    'Form overrides dispose to clean up the component list.

    <System.Diagnostics.DebuggerNonUserCode()> _

    Protected Overrides Sub Dispose(ByVal disposing As Boolean)

        Try

            If disposing AndAlso components IsNot Nothing Then

                components.Dispose()

            End If

        Finally

            MyBase.Dispose(disposing)

        End Try

    End Sub

 

    'Required by the Windows Form Designer

    Private components As System.ComponentModel.IContainer

 

    'NOTE: The following procedure is required by the Windows Form Designer

    'It can be modified using the Windows Form Designer. 

    'Do not modify it using the code editor.

    <System.Diagnostics.DebuggerStepThrough()> _

    Private Sub InitializeComponent()

        Me.components = New System.ComponentModel.Container

        Me.label1 = New System.Windows.Forms.Label()

        Me.label2 = New System.Windows.Forms.Label()

        Me.label3 = New System.Windows.Forms.Label()

        Me.motionImageBox = New Emgu.CV.UI.ImageBox()

        Me.capturedImageBox = New Emgu.CV.UI.ImageBox()

        Me.SuspendLayout()

        '

        ' label1

        '

        Me.label1.AutoSize = True

        Me.label1.Location = New System.Drawing.Point(9, 18)

        Me.label1.Name = "label1"

        Me.label1.Size = New System.Drawing.Size(85, 13)

        Me.label1.TabIndex = 1

        Me.label1.Text = "Captured Image:"

        '

        ' label2

        '

        Me.label2.AutoSize = True

        Me.label2.Location = New System.Drawing.Point(424, 18)

        Me.label2.Name = "label2"

        Me.label2.Size = New System.Drawing.Size(39, 13)

        Me.label2.TabIndex = 3

        Me.label2.Text = "Motion"

        '

        ' label3

        '

        Me.label3.AutoSize = True

        Me.label3.Location = New System.Drawing.Point(12, 452)

        Me.label3.Name = "label3"

        Me.label3.Size = New System.Drawing.Size(35, 13)

        Me.label3.TabIndex = 4

        Me.label3.Text = "label3"

        '

        ' motionImageBox

        '

        Me.motionImageBox.Image = Nothing

        Me.motionImageBox.Location = New System.Drawing.Point(419, 53)

        Me.motionImageBox.Name = "motionImageBox"

        Me.motionImageBox.Size = New System.Drawing.Size(397, 353)

        Me.motionImageBox.TabIndex = 2

        '

        ' capturedImageBox

        '

        Me.capturedImageBox.Image = Nothing

        Me.capturedImageBox.Location = New System.Drawing.Point(4, 53)

        Me.capturedImageBox.Name = "capturedImageBox"

        Me.capturedImageBox.Size = New System.Drawing.Size(409, 353)

        Me.capturedImageBox.TabIndex = 0

        '

        ' Form1

        '

        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0F, 13.0F)

        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font

        Me.ClientSize = New System.Drawing.Size(841, 474)

        Me.Controls.Add(Me.label3)

        Me.Controls.Add(Me.label2)

        Me.Controls.Add(Me.motionImageBox)

        Me.Controls.Add(Me.label1)

        Me.Controls.Add(Me.capturedImageBox)

        Me.Name = "Form1"

        Me.Text = "MotionDetection"

        Me.ResumeLayout(False)

        Me.PerformLayout()

 

    End Sub

 

 

 

    Private capturedImageBox As Emgu.CV.UI.ImageBox

    Private label1 As System.Windows.Forms.Label

    Private motionImageBox As Emgu.CV.UI.ImageBox

    Private label2 As System.Windows.Forms.Label

    Private label3 As System.Windows.Forms.Label

 

End Class


<< back to index