?? 同名像點坐標處理窗口.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 + -