arskrald/AR-2b/Assets/OpenCVForUnity/org/opencv/ml/Ml.cs

30 lines
697 B
C#
Raw Normal View History

2019-02-28 10:52:10 +00:00

using OpenCVForUnity.CoreModule;
using OpenCVForUnity.UtilsModule;
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
namespace OpenCVForUnity.MlModule
{
// C++: class Ml
//javadoc: Ml
public class Ml
{
// C++: enum ErrorTypes
public const int TEST_ERROR = 0;
public const int TRAIN_ERROR = 1;
// C++: enum VariableTypes
public const int VAR_NUMERICAL = 0;
public const int VAR_ORDERED = 0;
public const int VAR_CATEGORICAL = 1;
// C++: enum SampleTypes
public const int ROW_SAMPLE = 0;
public const int COL_SAMPLE = 1;
}
}