Home | History | Annotate | Download | only in src

Lines Matching refs:results

83   void find_nn(CvMat* d, int k, int emax, CvMat* results, CvMat* dist) {
86 uchar* resultsptr = results->data.ptr;
91 assert(results->rows == d->rows);
92 assert(results->rows == dist->rows);
93 assert(results->cols == k);
112 resultsptr += results->step;
119 CvMat* results) {
120 int rn = results->rows * results->cols;
128 (int*) results->data.ptr);
162 void find_nn(CvMat* d, int k, int emax, CvMat* results, CvMat* dist) {
165 assert(CV_MAT_TYPE(results->type) == CV_32SC1);
168 (d, k, emax, results, dist));
171 CvMat* results) {
179 (bounds_min, bounds_max,results));
205 // results is m x k set of row indices of matching points.
208 CvMat* results, CvMat* dist, int k, int emax) {
218 if (results->rows != desc->rows && results->cols != k)
219 CV_ERROR(CV_StsUnmatchedSizes, "results and desc must be same height");
222 if (CV_MAT_TYPE(results->type) != CV_32SC1)
223 CV_ERROR(CV_StsUnsupportedFormat, "results must be CV_32SC1");
234 tr->find_nn(desc, k, emax, results, dist);
244 CvMat* results) {
258 if (CV_MAT_TYPE(results->type) != CV_32SC1)
259 CV_ERROR(CV_StsUnsupportedFormat, "results must be CV_32SC1");
273 nr = tr->find_ortho_range(bounds_min, bounds_max, results);