Bioinspired.cs 460 B

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