Emgu CV Library Documentation
cvFindFeaturesBoxed Method (tr, boundsMin, boundsMax, results)
NamespacesEmgu.CVCvInvokecvFindFeaturesBoxed(IntPtr, IntPtr, IntPtr, IntPtr)

www.emgu.com/wiki
Performs orthogonal range seaching on the given kd-tree. That is, it returns the set of vectors v in tr that satisfy bounds_min[i] <= v[i] <= bounds_max[i], 0 <= i < d, where d is the dimension of vectors in the tree. The function returns the number of such vectors found
Declaration Syntax
C#Visual BasicVisual C++
public static void cvFindFeaturesBoxed(
	IntPtr tr,
	IntPtr boundsMin,
	IntPtr boundsMax,
	IntPtr results
)
Public Shared Sub cvFindFeaturesBoxed ( _
	tr As IntPtr, _
	boundsMin As IntPtr, _
	boundsMax As IntPtr, _
	results As IntPtr _
)
public:
static void cvFindFeaturesBoxed(
	IntPtr tr, 
	IntPtr boundsMin, 
	IntPtr boundsMax, 
	IntPtr results
)
Parameters
tr (IntPtr)
Pointer to kd-tree index of reference vectors
boundsMin (IntPtr)
1 x d or d x 1 vector (CV_32FC1 or CV_64FC1) giving minimum value for each dimension
boundsMax (IntPtr)
1 x d or d x 1 vector (CV_32FC1 or CV_64FC1) giving maximum value for each dimension
results (IntPtr)
1 x m or m x 1 vector (CV_32SC1) to contain output row indices (referring to matrix passed to cvCreateFeatureTree)

Assembly: Emgu.CV (Module: Emgu.CV) Version: 1.5.0.0 (1.5.0.0)