[go: up one dir, main page]

Menu

[r61]: / RootTrace_v2 / ccnode.h  Maximize  Restore  History

Download this file

28 lines (16 with data), 262 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
#ifndef ccnode_H
#define ccnode_H
#include "cv.h"
#include "highgui.h"
struct ccnode
{
ccnode * next;
CvPoint pt;
ccnode(CvPoint pnt)
{
pt.x = pnt.x;
pt.y = pnt.y;
next = NULL;
}
};
#endif