Exemple #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);
 }
Exemple #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);
 }
Exemple #3
0
 public Video(VideoStore store)
 {
     this.store            = store;
     this.currentStoreName = string.Empty;
 }
Exemple #4
0
 public Video(VideoStore store)
 {
     this.store = store;
     this.currentStoreName = string.Empty;
 }