24 lines
460 B
C#
24 lines
460 B
C#
|
|
using OpenCVForUnity.CoreModule;
|
|
using OpenCVForUnity.UtilsModule;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace OpenCVForUnity.BioinspiredModule
|
|
{
|
|
// C++: class 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;
|
|
|
|
|
|
}
|
|
}
|