Esempio n. 1
0
        public ViewOuter(BackMatch b, string p)
        {
            this._bm = b;
            InitializeComponent();
            this.Text          = Resources.Prog_Name + " - 外方位元素查看";
            this.textBox9.Text = p;

            FillData();
        }
Esempio n. 2
0
        /// <summary>
        /// 单像空间后方交会_右像片
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void 右影像RToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (!CheckOpen())
            {
                return;
            }

            try
            {
                _right = new BackMatch(_existData, _camPara, "RIGHT");
                _right.SetLimit(1E-7);
                _right.Process();
                new ViewOuter(_right, "右图像").Show();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, Resources.Prog_Name, MessageBoxButtons.OK, MessageBoxIcon.Error);
                return;
            }
        }