123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using Emgu.CV;
- using Emgu.CV.Structure;
- namespace BBIWARG.Input.InputProviding
- {
-
-
-
- public class NewFrameEventArgs : EventArgs
- {
-
-
-
- public int FrameID { get; private set; }
-
-
-
- public int Height { get { return DepthImageRaw.Height; } }
- public Image<Gray, UInt16> DepthImageRaw { get; private set; }
-
-
-
- public int Width { get { return DepthImageRaw.Width; } }
-
-
-
-
- public NewFrameEventArgs(int frameID, Image<Gray, UInt16> depthImageRaw)
- {
- FrameID = frameID;
- DepthImageRaw = depthImageRaw;
- }
- }
- }
|