Bioinspired.cs 489 B

1234567891011121314151617181920212223
  1. 
  2. using OpenCVForUnity.CoreModule;
  3. using OpenCVForUnity.UtilsModule;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Runtime.InteropServices;
  7. namespace OpenCVForUnity.BioinspiredModule
  8. {
  9. // C++: class Bioinspired
  10. //javadoc: Bioinspired
  11. public class Bioinspired
  12. {
  13. // C++: enum <unnamed>
  14. public const int RETINA_COLOR_RANDOM = 0;
  15. public const int RETINA_COLOR_DIAGONAL = 1;
  16. public const int RETINA_COLOR_BAYER = 2;
  17. }
  18. }