Ejemplo n.º 1
0
 public Camera(string deviceName, IVideoSource videoSource, VideoStore videoStore)
 {
     this.deviceName = deviceName;
     this.lastFrameTime = DateTime.MinValue;
     this.video = new Video(videoStore);
     this.videoSource = videoSource;
     this.videoSource.NewFrame += new NewFrameEventHandler(videoSource_NewFrame);
 }
Ejemplo n.º 2
0
 public Camera(string deviceName, IVideoSource videoSource, VideoStore videoStore)
 {
     this.deviceName            = deviceName;
     this.lastFrameTime         = DateTime.MinValue;
     this.video                 = new Video(videoStore);
     this.videoSource           = videoSource;
     this.videoSource.NewFrame += new NewFrameEventHandler(videoSource_NewFrame);
 }
Ejemplo n.º 3
0
 public Video(VideoStore store)
 {
     this.store            = store;
     this.currentStoreName = string.Empty;
 }
Ejemplo n.º 4
0
 public Video(VideoStore store)
 {
     this.store = store;
     this.currentStoreName = string.Empty;
 }