Lines Matching refs:bounds_max
118 int find_ortho_range(CvMat* bounds_min, CvMat* bounds_max, in find_ortho_range()
124 (typename __treetype::scalar_type*)bounds_max->data.ptr, in find_ortho_range()
170 int find_ortho_range(CvMat* bounds_min, CvMat* bounds_max, in find_ortho_range()
173 assert(CV_MAT_TYPE(bounds_min->type) == CV_MAT_TYPE(bounds_max->type)); in find_ortho_range()
175 assert(bounds_max->rows * bounds_max->cols == dims()); in find_ortho_range()
179 (bounds_min, bounds_max,results)); in find_ortho_range()
243 CvMat* bounds_min, CvMat* bounds_max, in cvFindFeaturesBoxed() argument
254 bounds_max->cols * bounds_max->rows != dims) in cvFindFeaturesBoxed()
256 if (CV_MAT_TYPE(bounds_min->type) != CV_MAT_TYPE(bounds_max->type)) in cvFindFeaturesBoxed()
268 CvMat* old_bounds_max = bounds_max; in cvFindFeaturesBoxed()
269 bounds_max = cvCreateMat(bounds_max->rows, bounds_max->cols, type); in cvFindFeaturesBoxed()
270 cvConvert(old_bounds_max, bounds_max); in cvFindFeaturesBoxed()
273 nr = tr->find_ortho_range(bounds_min, bounds_max, results); in cvFindFeaturesBoxed()
278 cvReleaseMat(&bounds_max); in cvFindFeaturesBoxed()