1234567891011121314151617181920212223 |
-
- using OpenCVForUnity.CoreModule;
- using OpenCVForUnity.UtilsModule;
- using System;
- using System.Collections.Generic;
- using System.Runtime.InteropServices;
- namespace OpenCVForUnity.BioinspiredModule
- {
- // C++: class Bioinspired
- //javadoc: Bioinspired
- public class Bioinspired
- {
- // C++: enum <unnamed>
- public const int RETINA_COLOR_RANDOM = 0;
- public const int RETINA_COLOR_DIAGONAL = 1;
- public const int RETINA_COLOR_BAYER = 2;
- }
- }
|