TrafficSignRecognition - 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 TrafficSignRecognition
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.splitContainer1 = New System.Windows.Forms.SplitContainer()
Me.panel1 = New System.Windows.Forms.Panel()
Me.imageBox1 = New Emgu.CV.UI.ImageBox()
Me.panel2 = New System.Windows.Forms.Panel()
Me.processTimeLabel = New System.Windows.Forms.Label()
Me.informationLabel = New System.Windows.Forms.Label()
Me.textBox1 = New System.Windows.Forms.TextBox()
Me.button1 = New System.Windows.Forms.Button()
Me.label1 = New System.Windows.Forms.Label()
Me.openFileDialog1 = New System.Windows.Forms.OpenFileDialog()
Me.splitContainer1.Panel1.SuspendLayout()
Me.splitContainer1.Panel2.SuspendLayout()
Me.splitContainer1.SuspendLayout()
DirectCast(Me.imageBox1, System.ComponentModel.ISupportInitialize).BeginInit()
Me.panel2.SuspendLayout()
Me.SuspendLayout()
'
' splitContainer1
'
Me.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill
Me.splitContainer1.Location = New System.Drawing.Point(0, 0)
Me.splitContainer1.Name = "splitContainer1"
'
' splitContainer1.Panel1
'
Me.splitContainer1.Panel1.Controls.Add(Me.panel1)
'
' splitContainer1.Panel2
'
Me.splitContainer1.Panel2.Controls.Add(Me.imageBox1)
Me.splitContainer1.Panel2.Controls.Add(Me.panel2)
Me.splitContainer1.Size = New System.Drawing.Size(786, 380)
Me.splitContainer1.SplitterDistance = 215
Me.splitContainer1.TabIndex = 0
'
' panel1
'
Me.panel1.AutoScroll = True
Me.panel1.Dock = System.Windows.Forms.DockStyle.Fill
Me.panel1.Location = New System.Drawing.Point(0, 0)
Me.panel1.Name = "panel1"
Me.panel1.Size = New System.Drawing.Size(215, 380)
Me.panel1.TabIndex = 0
'
' imageBox1
'
Me.imageBox1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
Me.imageBox1.Dock = System.Windows.Forms.DockStyle.Fill
Me.imageBox1.Location = New System.Drawing.Point(0, 81)
Me.imageBox1.Name = "imageBox1"
Me.imageBox1.Size = New System.Drawing.Size(567, 299)
Me.imageBox1.TabIndex = 4
Me.imageBox1.TabStop = False
'
' panel2
'
Me.panel2.Controls.Add(Me.processTimeLabel)
Me.panel2.Controls.Add(Me.informationLabel)
Me.panel2.Controls.Add(Me.textBox1)
Me.panel2.Controls.Add(Me.button1)
Me.panel2.Controls.Add(Me.label1)
Me.panel2.Dock = System.Windows.Forms.DockStyle.Top
Me.panel2.Location = New System.Drawing.Point(0, 0)
Me.panel2.Name = "panel2"
Me.panel2.Size = New System.Drawing.Size(567, 81)
Me.panel2.TabIndex = 3
'
' processTimeLabel
'
Me.processTimeLabel.AutoSize = True
Me.processTimeLabel.Location = New System.Drawing.Point(33, 55)
Me.processTimeLabel.Name = "processTimeLabel"
Me.processTimeLabel.Size = New System.Drawing.Size(0, 13)
Me.processTimeLabel.TabIndex = 4
'
' informationLabel
'
Me.informationLabel.AutoSize = True
Me.informationLabel.Location = New System.Drawing.Point(27, 55)
Me.informationLabel.Name = "informationLabel"
Me.informationLabel.Size = New System.Drawing.Size(0, 13)
Me.informationLabel.TabIndex = 3
'
' textBox1
'
Me.textBox1.Location = New System.Drawing.Point(73, 21)
Me.textBox1.Name = "textBox1"
Me.textBox1.[ReadOnly] = True
Me.textBox1.Size = New System.Drawing.Size(360, 20)
Me.textBox1.TabIndex = 2
'
' button1
'
Me.button1.Location = New System.Drawing.Point(439, 19)
Me.button1.Name = "button1"
Me.button1.Size = New System.Drawing.Size(75, 23)
Me.button1.TabIndex = 1
Me.button1.Text = "Load Image"
Me.button1.UseVisualStyleBackColor = True
'
' label1
'
Me.label1.AutoSize = True
Me.label1.Location = New System.Drawing.Point(27, 24)
Me.label1.Name = "label1"
Me.label1.Size = New System.Drawing.Size(26, 13)
Me.label1.TabIndex = 0
Me.label1.Text = "File:"
'
' openFileDialog1
'
Me.openFileDialog1.FileName = "openFileDialog1"
'
' TrafficSignRecognitionForm
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0F, 13.0F)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(786, 380)
Me.Controls.Add(Me.splitContainer1)
Me.Name = "TrafficSignRecognitionForm"
Me.Text = "Traffic Sign Recognition"
Me.splitContainer1.Panel1.ResumeLayout(False)
Me.splitContainer1.Panel2.ResumeLayout(False)
Me.splitContainer1.ResumeLayout(False)
DirectCast(Me.imageBox1, System.ComponentModel.ISupportInitialize).EndInit()
Me.panel2.ResumeLayout(False)
Me.panel2.PerformLayout()
Me.ResumeLayout(False)
End Sub
Private splitContainer1 As System.Windows.Forms.SplitContainer
Private panel1 As System.Windows.Forms.Panel
Private imageBox1 As Emgu.CV.UI.ImageBox
Private panel2 As System.Windows.Forms.Panel
Friend WithEvents button1 As System.Windows.Forms.Button
Private label1 As System.Windows.Forms.Label
Private openFileDialog1 As System.Windows.Forms.OpenFileDialog
Private textBox1 As System.Windows.Forms.TextBox
Private informationLabel As System.Windows.Forms.Label
Private processTimeLabel As System.Windows.Forms.Label
End Class
<< back to index
|