OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:pointsmat
(Results
1 - 3
of
3
) sorted by null
/external/opencv3/doc/tutorials/core/
mat_operations.markdown
75
Mat
pointsMat
= Mat(points);
79
Point2f point =
pointsMat
.at<Point2f>(i, 0);
92
Mat
pointsMat
= Mat(points).reshape(1);
94
As a result we get a 32FC1 matrix with 3 columns instead of 32FC3 matrix with 1 column.
pointsMat
96
instance, however, developer has to make sure that lifetime of points is longer than of
pointsMat
.
/external/opencv3/modules/imgproc/src/
min_enclosing_triangle.cpp
336
cv::Mat
pointsMat
= points.getMat();
339
CV_Assert((
pointsMat
.checkVector(2) > 0) &&
340
((
pointsMat
.depth() == CV_32F) || (
pointsMat
.depth() == CV_32S)));
342
pointsMat
.convertTo(pointsVector, CV_32F);
[
all
...]
/external/opencv3/modules/imgproc/test/
test_convhull.cpp
[
all
...]
Completed in 81 milliseconds