mirror of https://github.com/emgucv/emgucv.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
//----------------------------------------------------------------------------
|
|
// Copyright (C) 2004-2012 by EMGU. All rights reserved.
|
|
//----------------------------------------------------------------------------
|
|
|
|
using System;
|
|
using Emgu.Util;
|
|
|
|
namespace Emgu.CV.ML
|
|
{
|
|
/// <summary>
|
|
/// A statistic model
|
|
/// </summary>
|
|
public abstract class StatModel : UnmanagedObject
|
|
{
|
|
/// <summary>
|
|
/// Save the statistic model to file
|
|
/// </summary>
|
|
/// <param name="fileName">The file name where this StatModel will be saved</param>
|
|
public void Save(String fileName)
|
|
{
|
|
MlInvoke.StatModelSave(_ptr, fileName, IntPtr.Zero);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Load the statistic model from file
|
|
/// </summary>
|
|
/// <param name="fileName">The file to load the model from</param>
|
|
public void Load(String fileName)
|
|
{
|
|
MlInvoke.StatModelLoad(_ptr, fileName, IntPtr.Zero);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Clear the statistic model
|
|
/// </summary>
|
|
public void Clear()
|
|
{
|
|
MlInvoke.StatModelClear(_ptr);
|
|
}
|
|
}
|
|
}
|