📄 右匹配影像窗口.frm
字号:
VERSION 5.00
Begin VB.Form Form3
BackColor = &H80000002&
Caption = "右匹配影象窗口"
ClientHeight = 9450
ClientLeft = 60
ClientTop = 465
ClientWidth = 13035
ControlBox = 0 'False
LinkTopic = "Form3"
ScaleHeight = 9450
ScaleWidth = 13035
StartUpPosition = 3 '窗口缺省
Begin VB.Frame Frame2
BackColor = &H8000000D&
Height = 1095
Left = 0
TabIndex = 4
Top = 8400
Width = 4575
Begin VB.CommandButton Command5
Caption = "返回影像匹配命令主窗体"
Height = 615
Left = 2280
TabIndex = 9
Top = 240
Width = 2175
End
Begin VB.CommandButton Command1
Caption = "对粗匹配结果进行精匹配"
Height = 615
Left = 120
TabIndex = 5
Top = 240
Width = 2175
End
End
Begin VB.Frame Frame1
BackColor = &H8000000D&
Height = 1095
Left = 4560
TabIndex = 1
Top = 8400
Width = 8415
Begin VB.CommandButton Command4
Caption = "刷新"
Height = 615
Left = 3360
TabIndex = 8
Top = 240
Width = 1335
End
Begin VB.CommandButton Command3
Caption = "输出同名点的像平面坐标的数值"
Height = 615
Left = 120
TabIndex = 7
Top = 240
Width = 3255
End
Begin VB.CommandButton Command2
Caption = "结束"
Height = 615
Left = 4680
TabIndex = 6
Top = 240
Width = 1335
End
Begin VB.TextBox Text3
Height = 495
Left = 7800
TabIndex = 2
Top = 360
Width = 615
End
Begin VB.Label Label1
BackColor = &H8000000D&
Caption = "用最小二乘法进行匹配时的迭代次数"
ForeColor = &H8000000E&
Height = 495
Left = 6120
TabIndex = 3
Top = 360
Width = 1695
End
End
Begin VB.PictureBox Picture1
AutoRedraw = -1 'True
AutoSize = -1 'True
Height = 8370
Left = 120
Picture = "右匹配影像窗口.frx":0000
ScaleHeight = 8310
ScaleWidth = 12780
TabIndex = 0
Top = 120
Width = 12840
End
End
Attribute VB_Name = "Form3"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Form3.Hide
Form2.Hide
Form1.Show
End Sub
Private Sub Command2_Click()
End
End Sub
Private Sub Command3_Click()
Form2.Hide
Form3.Hide
Form5.Show
Form5.Command2.Enabled = True
End Sub
Private Sub Command4_Click()
Picture1.Picture = LoadPicture(App.Path + "\实验右.BMP")
End Sub
Private Sub Command5_Click()
Form3.Hide
Form1.Show
End Sub
Private Sub Picture1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
'''''''''''''''''''''''''对选取的范围点的坐标进行保存'''''''''''''''''''''''''''''''
Dim tdown As Integer
tdown = Val(InputBox("选取的范围点在目标点的左边选1,在目标点的右边选2", , "1"))
If tdown = 1 Then
ybjx1 = X
ybjy1 = Y
Else
ybjx2 = X
ybjy2 = Y
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -