-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathFSM.cpp
181 lines (174 loc) · 4.51 KB
/
FSM.cpp
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
// * File: FSM.cpp
// * Author: Zhang Xijin(mfs6174)
// * Email: mfs6174@gmail.com
// * Copyright (c) 2012 Zhang Xijin(mfs6174@gmail.com). All rights reserved.
// *
// * Redistribution and use in source and binary forms, with or without
// * modification, are permitted provided that the following conditions
// * are met:
// * 1. Redistributions of source code must retain the above copyright
// * notice, this list of conditions and the following disclaimer.
// * 2. Redistributions in binary form must reproduce the above copyright
// * notice, this list of conditions and the following disclaimer in the
// * documentation and/or other materials provided with the distribution.
// * 3. All advertising materials mentioning features or use of this software
// * must display the following acknowledgement:
// * This product includes software developed by mfs6174(mfs6174@gmail.com).
// * 4. Neither the name of the Software nor the names of its contributors
// * may be used to endorse or promote products derived from this software
// * without specific prior written permission.
// *
// * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
// * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
// * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
// * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "cv.h"
#include "highgui.h"
#include <iostream>
#include <cstdlib>
#include <cstdio>
#include <fstream>
#include <cstring>
#include <vector>
#include <cmath>
#include "FSM.h"
using namespace std;
LDfsm fsm0;
const int sqrrad=400;
const int sttl=80;
const int LDbufsize=40;
inline int gt(int x,int y)
{
x+=y;
return ((x%LDbufsize)+LDbufsize)%LDbufsize;
}
inline int dst(CvPoint a,CvPoint b)
{
return (a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y);
}
void ldfsminit(int stsize,int hdsize,int tttl)
{
fsm0.state=0;
fsm0.flag=false;
fsm0.bufhd=0;
fsm0.stsz=stsize;
fsm0.hdsz=hdsize;
fsm0.tttl=tttl;
}
int ldfsmstate()
{
return fsm0.state;
}
int ldfsmupdate(int ipt,CvPoint pnt)
{
ipt++;
if (fsm0.bufhd==LDbufsize-1)
fsm0.flag=true;
if ( (++fsm0.bufhd)>=LDbufsize )
fsm0.bufhd=0;
int id;
if (fsm0.flag)
{
id=gt(fsm0.bufhd,fsm0.stsz);
fsm0.iptcnt[fsm0.iptbuf[id]]--;
}
fsm0.iptbuf[fsm0.bufhd]=ipt;
fsm0.pntbuf[fsm0.bufhd]=pnt;
fsm0.iptcnt[ipt]++;
int rtsgn=0;
if (!fsm0.flag)
return rtsgn;
switch (fsm0.state)
{
case 0:
if (ipt==2 && fsm0.iptcnt[2]>=(fsm0.stsz*0.8) )
{
fsm0.state=1;
rtsgn=NONE2MOVE;
}
//rtsgn==0 do nothing
break;
case 1:
if (ipt==1 && fsm0.iptcnt[1]>=(0.6*fsm0.stsz) )
{
fsm0.state=0;
rtsgn=MOVE2NONE;
}
if (ipt==2)
{
bool flag=true;
for (int i=1;i<fsm0.hdsz;i++)
if (dst(pnt,fsm0.pntbuf[gt(fsm0.bufhd,-i)])>sqrrad)
{
flag=false;
break;
}
if (flag)
{
rtsgn=MOVE2STATIC;
fsm0.state=2;
fsm0.cnt=fsm0.hdsz;
fsm0.windowpoint=pnt;
}
}
if (!rtsgn)
rtsgn=KEEPMOVE;
//do sth for the pnt if it's not N
break;
case 2:
fsm0.cnt++;
if (ipt==1 && fsm0.iptcnt[1]>=(0.6*fsm0.stsz) )
{
fsm0.state=0;
rtsgn=STATIC2NONE;
}
if (ipt==2 && fsm0.iptcnt[2]>=(fsm0.stsz*0.8) )
{
bool flag=true;
for (int i=0;i<fsm0.stsz/2;i++)
if (dst(fsm0.windowpoint,fsm0.pntbuf[gt(fsm0.bufhd,-i)])<=sqrrad)
{
flag=false;
break;
}
if (flag)
{
fsm0.state=3;
fsm0.cnt=0;
rtsgn=TRACKSTART;
}
}
if (!rtsgn)
{
if (fsm0.cnt>sttl)
{
rtsgn=STATIC2MOVE;
fsm0.state=1;
}
else
rtsgn=KEEPSTATIC;
}
break;
case 3:
fsm0.cnt++;
if (ipt==1 && fsm0.iptcnt[1]>=(0.6*fsm0.stsz) )
{
fsm0.state=0;
rtsgn=TRACKFINISH;
}
if (fsm0.cnt>fsm0.tttl)
{
fsm0.state=1;
rtsgn=TRACKABORT;
}
if (!rtsgn)
rtsgn=KEEPTRACK;
}
return rtsgn;
}