OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:ptidx
(Results
1 - 7
of
7
) 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/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
...]
/external/opencv3/modules/ml/src/
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
);
kdtree.hpp
83
const float* getPoint(int
ptidx
, int* label = 0) const;
/external/opencv3/modules/calib3d/src/
circlesgrid.cpp
883
size_t
ptIdx
= findNearestKeypoint(pt);
884
if (norm(keypoints[
ptIdx
] - pt) > parameters.minDistanceToAddKeypoint)
892
points.push_back(
ptIdx
);
[
all
...]
Completed in 130 milliseconds