InputFrame.cs 599 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Drawing;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using Emgu.CV;
  8. using Emgu.CV.Structure;
  9. namespace bbiwarg.InputProviders
  10. {
  11. class InputFrame
  12. {
  13. public int Width { get; private set; }
  14. public int Height { get; private set; }
  15. public IntPtr RawDepthData { get; private set; }
  16. public InputFrame(int width, int height, IntPtr rawDepthData) {
  17. this.Width = width;
  18. this.Height = height;
  19. this.RawDepthData = rawDepthData;
  20. }
  21. }
  22. }