Health/Assets/OpenCVForUnity/org/opencv_contrib/bioinspired/Bioinspired.cs

24 lines
460 B
C#
Raw Normal View History

2023-11-07 13:55:35 +00:00
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;
}
}