Home | History | Annotate | Download | only in src

Lines Matching full:points

140 computeSums( const Mat& points, const size_t* ofs, int a, int b, double* sums )
142 int i, j, dims = points.cols;
143 const float* data = points.ptr<float>(0);
171 points = _points;
174 points.release();
175 points.create(_points.size(), _points.type());
180 float* dstdata = points.ptr<float>(0);
182 size_t dstep = points.step1();
204 computeSums(points, ptofs, 0, n-1, sumstack.ptr<double>(top));
255 computeSums(points, ptofs, middle+1, last, rsums);
280 CV_Assert( vecmat.isContinuous() && vecmat.type() == CV_32F && vecmat.total() == (size_t)points.cols );
282 K = std::min(K, points.rows);
283 int ptdims = points.cols;
342 const float* row = points.ptr<float>(i);
423 int ptdims = points.cols;
450 const float* row = points.ptr<float>(i);
482 int ptdims = points.cols;
493 _pts.create( nidx, ptdims, points.type());
509 CV_Assert( (unsigned)k < (unsigned)points.rows );
510 const float* src = points.ptr<float>(k);
521 CV_Assert( (unsigned)ptidx < (unsigned)points.rows);
524 return points.ptr<float>(ptidx);
530 return !points.empty() ? points.cols : 0;