Table of Contents

Class GPCTrainingParams

Namespace
OpenCvSharp.OptFlow
Assembly
OpenCvSharp.dll

Parameters for training a GPCTree or GPCForest5.

public sealed class GPCTrainingParams
Inheritance
GPCTrainingParams
Inherited Members

Properties

DescriptorType

Type of descriptors to use. Default: DCT.

public GPCDescType DescriptorType { get; set; }

Property Value

GPCDescType

MaxTreeDepth

Maximum tree depth to stop partitioning. Default: 20.

public uint MaxTreeDepth { get; set; }

Property Value

uint

MinNumberOfSamples

Minimum number of samples in the node to stop partitioning. Default: 3.

public int MinNumberOfSamples { get; set; }

Property Value

int

PrintProgress

Print progress to stdout. Default: true.

public bool PrintProgress { get; set; }

Property Value

bool