📄 同名像点坐标处理窗口.frm
字号:
VERSION 5.00
Begin VB.Form Form5
AutoRedraw = -1 'True
Caption = "同名像点坐标处理窗体"
ClientHeight = 3555
ClientLeft = 60
ClientTop = 465
ClientWidth = 7380
LinkTopic = "Form5"
ScaleHeight = 3555
ScaleWidth = 7380
StartUpPosition = 3 '窗口缺省
Begin VB.Frame Frame4
Caption = "附加命令"
Height = 3375
Left = 4920
TabIndex = 15
Top = 120
Width = 2415
Begin VB.CommandButton Command3
Caption = "清盘"
Height = 615
Left = 240
TabIndex = 18
Top = 2400
Width = 1935
End
Begin VB.CommandButton Command2
Caption = "对所求的同名点的坐标进行存盘"
Height = 615
Left = 240
TabIndex = 17
Top = 600
Width = 1935
End
Begin VB.CommandButton Command1
Caption = "返回影象匹配界面"
Height = 615
Left = 240
TabIndex = 16
Top = 1440
Width = 1935
End
End
Begin VB.Frame Frame1
Caption = "同名点在各自像平面坐标系中的像平面坐标的数值"
Height = 3375
Left = 120
TabIndex = 0
Top = 120
Width = 4695
Begin VB.Frame Frame3
Caption = "左相片像平面坐标"
Height = 1335
Left = 240
TabIndex = 2
Top = 360
Width = 4095
Begin VB.TextBox Text2
Height = 495
Left = 840
TabIndex = 4
Top = 720
Width = 2415
End
Begin VB.TextBox Text1
Height = 495
Left = 840
TabIndex = 3
Top = 240
Width = 2415
End
Begin VB.Label Label6
Caption = "mm"
Height = 255
Left = 3360
TabIndex = 12
Top = 960
Width = 495
End
Begin VB.Label Label5
Caption = "mm"
Height = 375
Left = 3360
TabIndex = 11
Top = 360
Width = 495
End
Begin VB.Label Label2
Caption = "Y"
Height = 375
Left = 240
TabIndex = 8
Top = 840
Width = 255
End
Begin VB.Label Label1
Caption = "X"
Height = 375
Left = 240
TabIndex = 7
Top = 240
Width = 135
End
End
Begin VB.Frame Frame2
Caption = "右相片像平面坐标"
Height = 1335
Left = 240
TabIndex = 1
Top = 1800
Width = 4095
Begin VB.TextBox Text4
Height = 495
Left = 840
TabIndex = 6
Top = 720
Width = 2415
End
Begin VB.TextBox Text3
Height = 495
Left = 840
TabIndex = 5
Top = 240
Width = 2415
End
Begin VB.Label Label8
Caption = "mm"
Height = 375
Left = 3360
TabIndex = 14
Top = 840
Width = 615
End
Begin VB.Label Label7
Caption = "mm"
Height = 375
Left = 3360
TabIndex = 13
Top = 360
Width = 615
End
Begin VB.Label Label4
Caption = "Y"
Height = 375
Left = 240
TabIndex = 10
Top = 840
Width = 375
End
Begin VB.Label Label3
Caption = "X"
Height = 375
Left = 240
TabIndex = 9
Top = 360
Width = 255
End
End
End
End
Attribute VB_Name = "Form5"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Command1_Click()
Form5.Hide
Form2.Show
Form3.Show
End Sub
Private Sub Command3_Click()
Open "同名点坐标.txt" For Output As #1
Print #1, "左右相片匹配结果同名点在各自像平面坐标系中的坐标的数值"
Print #1, "同名点点号"; "像平面坐标X"; "像平面坐标Y"
Close #1
End Sub
Private Sub Form_Load()
Form5.Text1.Text = zmx
Form5.Text2.Text = zmy
Form5.Text3.Text = ymx
Form5.Text4.Text = ymy
End Sub
Private Sub Command2_Click()
Open "同名点坐标.txt" For Append As #1
Print #1, " "
Print #1, "左相片点的坐标值"
Print #1, ntming, zmx, zmy
Print #1, "右相片点的坐标值"
Print #1, ntming, ymx, ymy
Close #1
Command2.Enabled = False
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -