Vision Touch Surface Library
 All Classes Files Functions Variables Pages
hand.h
Go to the documentation of this file.
1 #ifndef HAND_H
2 #define HAND_H
3 
4 #include<vector>
5 #include <opencv2/opencv.hpp>
6 #include <highgui.h>
7 
8 using namespace std;
9 using namespace cv;
10 
11 #include "finger.h"
12 
13 class Hand
14 {
15 public:
16  Hand();
17 
18  vector<Finger> fingers;
19  vector<Point> contour;
20  Point2f centroid;
21  int shapeType;
22  bool foundPalm;
23 
24 
25 };
26 
27 #endif // HAND_H