OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:hpoints
(Results
1 - 2
of
2
) sorted by null
/external/opencv3/modules/imgproc/src/
rotcalipers.cpp
359
const Point2f*
hpoints
= hull.ptr<Point2f>();
local
363
rotatingCalipers(
hpoints
, n, CALIPERS_MINAREARECT, (float*)out );
372
box.center.x = (
hpoints
[0].x +
hpoints
[1].x)*0.5f;
373
box.center.y = (
hpoints
[0].y +
hpoints
[1].y)*0.5f;
374
double dx =
hpoints
[1].x -
hpoints
[0].x;
375
double dy =
hpoints
[1].y -
hpoints
[0].y
[
all
...]
convhull.cpp
278
int
hpoints
= hull.checkVector(1, CV_32S);
local
279
CV_Assert(
hpoints
> 2 );
289
int hcurr = hptr[rev_orientation ? 0 :
hpoints
-1];
292
for( i = 0; i <
hpoints
; i++ )
294
int hnext = hptr[rev_orientation ?
hpoints
- i - 1 : i];
Completed in 639 milliseconds