コード例 #1
0
ファイル: FormSupplier.cs プロジェクト: AtiX/objectTable
        public void ShowTableCalibrationForm()
        {
            int width, height;
                SettingsManager.KinectSet.GetDepthResolution(out width, out height);

                form_TableHeightCalibration thc = new form_TableHeightCalibration(_tmanager.LastKinectDepthFrame, width, height);
                thc.Show();
        }
コード例 #2
0
ファイル: FormSupplier.cs プロジェクト: AtiX/objectTable
 public void CloseAllForms()
 {
     if (_tablecalibrationform != null)
     {
         _tablecalibrationform.Close();
         _tablecalibrationform = null;
     }
 }