HomeSort by relevance Sort by last modified time
    Searched refs:ptidx (Results 1 - 6 of 6) sorted by null

  /external/opencv3/modules/cudafeatures2d/src/cuda/
orb.cu 78 const int ptidx = blockIdx.x * blockDim.y + threadIdx.y;
80 if (ptidx < npoints)
82 const short2 loc = loc_[ptidx];
121 response[ptidx] = ((float)a * b - (float)c * c - harris_k * ((float)a + b) * ((float)a + b)) * scale_sq_sq;
161 const int ptidx = blockIdx.x * blockDim.y + threadIdx.y;
163 if (ptidx < npoints)
167 const short2 loc = loc_[ptidx];
203 angle[ptidx] = kp_dir;
347 const int ptidx = blockIdx.y * blockDim.y + threadIdx.y;
349 if (ptidx < npoints && descidx < dsize
    [all...]
  /external/opencv3/modules/ml/src/
kdtree.hpp 83 const float* getPoint(int ptidx, int* label = 0) const;
kdtree.cpp 519 const float* KDTree::getPoint(int ptidx, int* label) const
521 CV_Assert( (unsigned)ptidx < (unsigned)points.rows);
523 *label = labels[ptidx];
524 return points.ptr<float>(ptidx);
  /external/opencv3/modules/features2d/src/
orb.cpp 135 size_t ptidx, ptsize = pts.size(); local
150 for( ptidx = 0; ptidx < ptsize; ptidx++ )
152 int x0 = cvRound(pts[ptidx].pt.x);
153 int y0 = cvRound(pts[ptidx].pt.y);
154 int z = pts[ptidx].octave;
168 pts[ptidx].response = ((float)a * b - (float)c * c -
179 size_t ptidx, ptsize = pts.size(); local
181 for( ptidx = 0; ptidx < ptsize; ptidx++
    [all...]
  /external/opencv3/modules/shape/src/
sc_dis.cpp 339 for (int ptidx=0; ptidx<contourMat.cols; ptidx++)
343 if (ptidx==cmp) continue;
346 if (queryInliers[ptidx]==0 || queryInliers[cmp]==0) continue; //avoid outliers
352 if (disMatrix.at<float>(ptidx, cmp)<logspaces[i])
360 if (angleMatrix.at<float>(ptidx, cmp)<angspaces[i])
369 descriptors.at<float>(ptidx, idx)++;
  /external/opencv3/modules/video/src/
lkpyramid.cpp 238 for( int ptidx = range.start; ptidx < range.end; ptidx++ )
240 Point2f prevPt = prevPts[ptidx]*(float)(1./(1 << level));
245 nextPt = nextPts[ptidx]*(float)(1./(1 << level));
250 nextPt = nextPts[ptidx]*2.f;
251 nextPts[ptidx] = nextPt;
264 status[ptidx] = false;
266 err[ptidx] = 0;
491 err[ptidx] = (float)minEig
    [all...]

Completed in 782 milliseconds