public bool CameraStop()
 {
     if (cameraOperator.IsGrabbing)
     {
         int nRet = cameraOperator.StopGrabbing();
         if (nRet != 0)
         {
             return(false);
         }
     }
     cameraOperator.Stop();
     return(true);
 }