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.
26 lines
556 B
26 lines
556 B
using System;
|
|
|
|
namespace Emgu.CV.ML
|
|
{
|
|
/// <summary>
|
|
/// Extreme Random tree
|
|
/// </summary>
|
|
public class ERTrees : RTrees
|
|
{
|
|
/// <summary>
|
|
/// Create an extreme Random tree
|
|
/// </summary>
|
|
public ERTrees()
|
|
{
|
|
_ptr = MlInvoke.CvERTreesCreate();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Release the extreme random tree and all memory associate with it
|
|
/// </summary>
|
|
protected override void DisposeObject()
|
|
{
|
|
MlInvoke.CvERTreesRelease(_ptr);
|
|
}
|
|
}
|
|
}
|