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(); }
public void CloseAllForms() { if (_tablecalibrationform != null) { _tablecalibrationform.Close(); _tablecalibrationform = null; } }