ColorImageFormat.cs 532 B

12345678910111213141516171819
  1. using RootSystem = System;
  2. using System.Linq;
  3. using System.Collections.Generic;
  4. namespace Windows.Kinect
  5. {
  6. //
  7. // Windows.Kinect.ColorImageFormat
  8. //
  9. public enum ColorImageFormat : int
  10. {
  11. None =0,
  12. Rgba =1,
  13. Yuv =2,
  14. Bgra =3,
  15. Bayer =4,
  16. Yuy2 =5,
  17. }
  18. }