示例#1
0
文件: Camera.cs 项目: zesus19/c4.v2.T
 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);
 }
示例#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);
 }
示例#3
0
 public Video(VideoStore store)
 {
     this.store            = store;
     this.currentStoreName = string.Empty;
 }
示例#4
0
文件: Video.cs 项目: zesus19/c4.v2.T
 public Video(VideoStore store)
 {
     this.store = store;
     this.currentStoreName = string.Empty;
 }