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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package edu.wpi.first.wpijavacv;
import static com.googlecode.javacv.cpp.opencv_imgproc.*;
import static com.googlecode.javacv.cpp.opencv_core.*;
/**
* A class that represents a polygon, can be obtained from approxPolygon()
* in WpiContour
* @author Greg Granito
*/
public class WPIPolygon extends WPIDisposable {
CvSeq polygon;
CvRect boundingRect;
WPIPolygon(CvSeq data) {
polygon = data;
}
CvSeq getCVSeq() {
return polygon;
}
/**
*
* @return an array of WpiPoints of the vertices of the polygon
*/
public WPIPoint[] getPoints() {
CvPoint points = new CvPoint(getNumVertices());
WPIPoint[] wpiPoints= new WPIPoint[getNumVertices()];
cvCvtSeqToArray(polygon, points.position(0), CV_WHOLE_SEQ);
for (int j = 0; j < getNumVertices(); j++) {
wpiPoints[j] = new WPIPoint(points.position(j).x(), points.position(j).y());
}
return wpiPoints;
}
/**
*
* @return the width of the bounding rectangle of the polygon
*/
public int getWidth() {
if (boundingRect == null) {
boundingRect = cvBoundingRect(polygon, 0);
}
return boundingRect.width();
}
/**
*
* @return the height of the bounding rectangle of the polygon
*/
public int getHeight() {
if (boundingRect == null) {
boundingRect = cvBoundingRect(polygon, 0);
}
return boundingRect.height();
}
/**
*
* @return the x coord of the top left corner of the bounding
* rectangle of the polygon
*/
public int getX() {
if (boundingRect == null) {
boundingRect = cvBoundingRect(polygon, 0);
}
return boundingRect.x();
}
/**
*
* @return the y coord of the top left corner of the bounding
* rectangle of the polygon
*/
public int getY() {
if (boundingRect == null) {
boundingRect = cvBoundingRect(polygon, 0);
}
return boundingRect.y();
}
/**
*
* @return the number of vertices in the polygon
*/
public int getNumVertices() {
return polygon.total();
}
/**
*
* @return whether or not the polygon is convex
*/
public boolean isConvex() {
return cvCheckContourConvexity(polygon) == 0 ? false : true;
}
/**
*
* @return the area in pixels of the polygon
*/
public int getArea() {
return Math.abs((int) cvContourArea(polygon, CV_WHOLE_SEQ, -1));
}
/**
*
* @return the perimeter in pixels of the polygon
*/
public int getPerimeter() {
return (int) cvArcLength(polygon, CV_WHOLE_SEQ, -1);
}
public void disposed() {
polygon.deallocate();
}
}
|