Esempio n. 1
0
        private void InitializeContent(Camera camera)
        {
            camera.setMode(DefaultWidth, DefaultHeight, 1000 / 24);

            video.attachCamera(camera);
            video.AttachTo(this);
        }
Esempio n. 2
0
 public static void remove_status(Camera that, Action<StatusEvent> value)
 {
     CommonExtensions.RemoveDelegate(that, value, StatusEvent.STATUS);
 }
Esempio n. 3
0
 public static void add_status(Camera that, Action<StatusEvent> value)
 {
     CommonExtensions.CombineDelegate(that, value, StatusEvent.STATUS);
 }
Esempio n. 4
0
 public static void remove_activity(Camera that, Action<ActivityEvent> value)
 {
     CommonExtensions.RemoveDelegate(that, value, ActivityEvent.ACTIVITY);
 }
Esempio n. 5
0
 /// <summary>
 /// Specifies a video stream from a camera to be displayed within the boundaries of the Video object in the application.
 /// </summary>
 public void attachCamera(Camera camera)
 {
 }
Esempio n. 6
0
		/// <summary>
		/// Starts capturing video from a camera, or stops capturing if theCamera is set to null.
		/// </summary>
		public void attachCamera(Camera theCamera)
		{
		}
Esempio n. 7
0
		/// <summary>
		/// Starts capturing video from a camera, or stops capturing if theCamera is set to null.
		/// </summary>
		public void attachCamera(Camera theCamera, int snapshotMilliseconds)
		{
		}