-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtypes.bea
More file actions
63 lines (51 loc) · 836 Bytes
/
types.bea
File metadata and controls
63 lines (51 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
@namespace cv
@type TermCriteria
int type
int maxCount
double epsilon
@type Point
int x
int y
@type Point2f
float x
float y
@type Size
int width
int height
@type Size2f
float width
float height
@type Rect
int x
int y
int width
int height
@type Range
int start
int end
@type RotatedRect
Point2f center
Size2f size
float angle
@type minMaxIdxRet
double minVal
double maxVal
int minIdx
int maxIdx
@type minMaxLocRet
double minVal
double maxVal
Point minLoc
Point maxLoc
@type Scalar
@type std::string
#@type size_t castfrom int
@type std::vector<cv::Point>
@type std::vector<int>
@type std::vector<cv::Mat*>
@type std::vector<cv::Mat>
@type Vec3f
@type std::vector<Vec3f>
@type Vec2f
@type std::vector<Vec2f>
@type std::vector<Point2f>