Emgu.CV.FeatureTree.FeatureTree C# (CSharp) Method

FeatureTree() public method

Create a k-d tree from the specific feature descriptors
public FeatureTree ( Matrix descriptorMatrix ) : System
descriptorMatrix Matrix The array of feature descriptors
return System
        public FeatureTree(Matrix<float> descriptorMatrix)
        {
            _descriptorMatrix = descriptorMatrix.Clone();
             _ptr = CvInvoke.cvCreateKDTree(_descriptorMatrix.Ptr);
        }

Same methods

FeatureTree::FeatureTree ( Matrix descriptors, int naive, double rho, double tau ) : System
FeatureTree::FeatureTree ( float descriptors ) : System
FeatureTree::FeatureTree ( float descriptors, int naive, double rho, double tau ) : System