OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:virt_point
(Results
1 - 2
of
2
) sorted by null
/external/opencv/cv/src/
cvsubdivision2d.cpp
663
CvPoint2D32f
virt_point
;
local
674
icvIntersectLines3( &a0, &b0, &c0, &a1, &b1, &c1, &
virt_point
);
675
if( fabs(
virt_point
.x ) < FLT_MAX * 0.5 &&
676
fabs(
virt_point
.y ) < FLT_MAX * 0.5 )
678
voronoi_point = cvSubdiv2DAddPoint( subdiv,
virt_point
, 1 );
694
icvIntersectLines3( &a0, &b0, &c0, &a1, &b1, &c1, &
virt_point
);
696
if( fabs(
virt_point
.x ) < FLT_MAX * 0.5 &&
697
fabs(
virt_point
.y ) < FLT_MAX * 0.5 )
699
voronoi_point = cvSubdiv2DAddPoint( subdiv,
virt_point
, 1 );
/external/opencv3/modules/imgproc/src/
subdivision2d.cpp
602
Point2f
virt_point
= computeVoronoiPoint(org0, dst0, org1, dst1);
local
604
if( fabs(
virt_point
.x ) < FLT_MAX * 0.5 &&
605
fabs(
virt_point
.y ) < FLT_MAX * 0.5 )
608
qedges[edge2 >> 2].pt[3 - (edge2 & 2)] = newPoint(
virt_point
, true);
622
Point2f
virt_point
= computeVoronoiPoint(org0, dst0, org1, dst1);
local
624
if( fabs(
virt_point
.x ) < FLT_MAX * 0.5 &&
625
fabs(
virt_point
.y ) < FLT_MAX * 0.5 )
628
qedges[edge2 >> 2].pt[1 + (edge2 & 2)] = newPoint(
virt_point
, true);
Completed in 692 milliseconds