binaryTreeApply

PURPOSE ^

Apply learned binary decision tree classifier.

SYNOPSIS ^

function hs = binaryTreeApply( X, tree, maxDepth, minWeight, nThreads )

DESCRIPTION ^

 Apply learned binary decision tree classifier.

 USAGE
  hs = binaryTreeApply( X, tree, [maxDepth], [minWeight], [nThreads] )

 INPUTS
  X          - [NxF] N length F feature vectors
  tree       - learned tree classification model
  maxDepth   - [] maximum depth of tree
  minWeight  - [] minimum sample weigth to allow split
  nThreads   - [16] max number of computational threads to use

 OUTPUTS
  hs         - [Nx1] predicted output log ratios

 EXAMPLE

 See also binaryTreeTrain

 Piotr's Computer Vision Matlab Toolbox      Version 3.40
 Copyright 2014 Piotr Dollar.  [pdollar-at-gmail.com]
 Licensed under the Simplified BSD License [see external/bsd.txt]

Generated by m2html © 2003