Lines Matching refs:_results
214 CvMat* _results, CvMat* _neighbor_responses, in write_results() argument
220 int rstep = _results && !CV_IS_MAT_CONT(_results->type) ? _results->step/sizeof(result) : 1; in write_results()
227 if( _results || start+i == 0 ) in write_results()
276 if( _results ) in write_results()
277 _results->data.fl[(start + i)*rstep] = r; in write_results()
305 float CvKNearest::find_nearest( const CvMat* _samples, int k, CvMat* _results, in find_nearest() argument
327 if( _results && (!CV_IS_MAT(_results) || in find_nearest()
328 _results->cols != 1 && _results->rows != 1 || in find_nearest()
329 _results->cols + _results->rows - 1 != _samples->rows) ) in find_nearest()
333 if( _results && CV_MAT_TYPE(_results->type) != CV_32FC1 && in find_nearest()
334 (CV_MAT_TYPE(_results->type) != CV_32SC1 || regression)) in find_nearest()
387 _results, _neighbor_responses, _dist, sort_buf ); in find_nearest()