OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:_hull
(Results
1 - 2
of
2
) sorted by null
/external/opencv3/modules/imgproc/src/
convhull.cpp
129
void convexHull( InputArray _points, OutputArray
_hull
, bool clockwise, bool returnPoints )
138
_hull
.release();
142
returnPoints = !
_hull
.fixedType() ? returnPoints :
_hull
.type() != CV_32S;
253
Mat(nout, 1, CV_32S, hullbuf).copyTo(
_hull
);
256
_hull
.create(nout, 1, CV_MAKETYPE(depth, 2));
257
Mat hull =
_hull
.getMat();
265
void convexityDefects( InputArray _points, InputArray
_hull
, OutputArray _defects )
277
Mat hull =
_hull
.getMat();
/external/opencv3/modules/imgproc/test/
test_convhull.cpp
513
std::vector<int>
_hull
;
local
514
cv::convexHull(_points,
_hull
, clockwise);
515
n =
_hull
.size();
516
memcpy(hull2->data.ptr, &
_hull
[0], n*sizeof(
_hull
[0]));
520
std::vector<cv::Point>
_hull
;
local
521
cv::convexHull(_points,
_hull
, clockwise);
522
n =
_hull
.size();
523
memcpy(hull2->data.ptr, &
_hull
[0], n*sizeof(
_hull
[0]))
527
std::vector<cv::Point2f>
_hull
;
local
[
all
...]
Completed in 185 milliseconds