コード例 #1
0
ファイル: Video.cs プロジェクト: 0000duck/LaserCalibrate
 /// <summary>
 /// 停止预览
 /// </summary>
 public void StopPreview()
 {
     if (IsRecording)
     {
         throw new Exception("Please stop recording first!");
     }
     if (IsPreviewing)
     {
         CamLeft.StopPreview();
         CamRight.StopPreview();
         IsPreviewing = false;
     }
 }
コード例 #2
0
 /// <summary>
 /// 停止预览
 /// </summary>
 public void StopPreview()
 {
     CamLeft.StopPreview();
     CamRight.StopPreview();
     IsPreviewing = false;
 }