-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstruct.c
More file actions
357 lines (313 loc) · 6.58 KB
/
struct.c
File metadata and controls
357 lines (313 loc) · 6.58 KB
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
//#include <opencv/cv.h>
#include "struct.h"
#define VECT_LEN 100
#define MIN_VIT 1000000
#define MAX_VIT 10000000
void test(linked_List* mvt_list) {
Point p = new_point(0,0,0,0,0);
//int x = 0;
Mvt vect = new_vect();
for (int i =0; i < 15; i++) {
switch (i){
case 0:
set_point(p,0,10,0,0,0);
break;
case 1:
set_point(p,10,10,0,0,0);
break;
case 2:
set_point(p,5,40,0,0,0);
break;
case 3:
set_point(p,100,100,0,0,0);
break;
case 4:
set_point(p,100,150,0,0,0);
break;
case 5:
set_point(p,100,200,0,0,0);
break;
case 6:
set_point(p,150,200,0,0,0);
break;
case 7:
set_point(p,200,200,0,0,0);
break;
case 8:
set_point(p,200,150,0,0,0);
break;
case 9:
set_point(p,200,100,0,0,0);
break;
case 10:
set_point(p,150,100,0,0,0);
break;
case 11:
set_point(p,100,100,0,0,0);
break;
case 12:
set_point(p,100,110,0,0,0);
break;
case 13:
set_point(p,120,120,0,0,0);
break;
case 14:
set_point(p,125,113,0,0,0);
break;
case 15:
set_point(p,125,113,0,0,0);
break;
}
/*for(int i = 0; i < 100; i++) {
if(i < 20)
x=i;
else if (i < 40)
x = 2*i;
else if (i <70)
x = 3*i;
else if (i<90)
x = 2*i;
else
x=i;
set_point(p,x,100,0,0,0)*/;
vect_update(vect,p, mvt_list);
}
printf("time=%f\n",(double)(vect[0].t -vect[1].t)/CLOCKS_PER_SEC);
print_vect(vect);
}
ColorRGB* new_color(int r,int g,int b) {
ColorRGB *pcolor = (ColorRGB*)malloc(sizeof(struct s_ColorRGB));
pcolor->r = r;
pcolor->g = g;
pcolor->b = b;
return pcolor;
}
void set_color2(ColorRGB* c,int r, int g, int b) {
if (c) {
c->r = r;
c->g = g;
c->b = b;
}
}
Point new_point(int x, int y, int r, int g, int b) {
Point myPoint = (Point)malloc(sizeof(struct s_Point));
myPoint->x = x;
myPoint->y = y;
myPoint->color = new_color(r,g,b);
return myPoint;
}
void new_point1(Point p, int x, int y, int r, int g, int b) {
Point myPoint = (Point)malloc(sizeof(struct s_Point));
myPoint->x = x;
myPoint->y = y;
myPoint->color = new_color(r,g,b);
p = myPoint;
}
void set_point(Point p, int x, int y, int r, int g, int b) {
if (p) {
p->x = x;
p->y = y;
set_color2(p->color,r,g,b);
}
}
void printp(Point p) {
printf("coord : (%d,%d) || RGB : (%d,%d,%d)\n",p->x,p->y,p->color->r,p->color->g,p->color->b);
}
Mvt new_vect() {
Mvt new_vect = (Mvt)malloc(VECT_LEN*sizeof(struct s_Mvt));
for(int i = 0; i < VECT_LEN; i++) {
new_vect[i].t = 0;
new_vect[i].v = 0;
new_vect[i].p = new_point(0,0,0,0,0);
}
return new_vect;
}
void set_Mvt(Mvt newM, Mvt pred,Point pt) {
newM->t = clock();
double dy2 = pow((double)(pred->p->y - pt->y),2);
double dx2 = pow((double)(pred->p->x - pt->x),2);
double dist = sqrt(dx2+dy2);
newM->v = dist / ((double)(newM->t - pred->t)/CLOCKS_PER_SEC);
printf("dx2= %lf - dy2= %lf - dist= %f\n",dx2,dy2,dist);
*newM->p = *pt;
}
///////////////////////////////////////////////////////////////////////////////////////////////////
void print_Mvt(Mvt mvt) {
if (mvt->v > MIN_VIT /*&& mvt->v < MAX_VIT*/) {
printf("t = %f ,\033[32m v = %f\033[0m || ", (double)mvt->t/CLOCKS_PER_SEC, mvt->v);
}else {
printf("t = %f , v = %f || ", (double)mvt->t/CLOCKS_PER_SEC, mvt->v);
}
Point tmp = mvt->p;
printp(tmp);
}
void print_vect(Mvt vect) {
for(int i = 0; i < VECT_LEN;i++)
{
printf("%2d : ",i);
print_Mvt(&vect[i]);
}
}
// LINKED LISTS
linked_List *emptyList()
{
linked_List* list = (linked_List*)malloc(sizeof(linked_List));
if(list == NULL)
{
printf("Error allocating memory !");
exit(EXIT_FAILURE);
}
list->first = NULL;
list->last = NULL;
list->count = 0;
return list;
}
void freeList(linked_List* list)
{
Element* curr = list->first;
while(curr != NULL)
{
Element* tmp = curr;
curr = curr->next;
free(tmp);
}
free(list);
}
void addFirst(linked_List *list, Point p)
{
Element *elt = (Element*)malloc(sizeof(Element));
if(list == NULL || elt == NULL)
exit(EXIT_FAILURE);
elt->point = p;
elt->next = list->first;
elt->prev = NULL;
if(!list->count) //if empty
{
list->first = elt;
list->last = elt;
}
else
{
elt->next->prev = elt;
list->first = elt;
}
list->count++;
}
void addLast(linked_List *list, Point p)
{
Element *elt = (Element*)malloc(sizeof(Element));
if(list == NULL || elt == NULL)
exit(EXIT_FAILURE);
elt->point = p;
elt->prev = list->last;
elt->next = NULL;
if(!list->count)
{
list->first = elt;
list->last = elt;
}
else
{
elt->prev->next = elt;
list->last = elt;
}
list->count++;
}
Element* getIndex(linked_List *list, int index)
{
if(!index)
return list->first;
if(index == list->count-1)
return list->last;
if(index >= list->count || index < 0)
{
printf("Wrong index.\n");
return NULL;
}
Element *tmp = list->first;
int i = 0;
while(i < index)
{
tmp = tmp->next;
i++;
}
return tmp;
}
void addIndex(linked_List *list, int index, Point p)
{
if(!index)
{
addFirst(list, p);
return;
}
if(index == list->count)
{
addLast(list, p);
return;
}
if(index >= list->count || index < 0)
{
printf("Wrong Index !\n");
return;
}
Element *elt = getIndex(list, index-1);
Element *tmp = (Element*)malloc(sizeof(Element));
tmp->point = p;
tmp->prev = elt;
tmp->next = elt->next;
tmp->next->prev = tmp;
elt->next = tmp;
list->count++;
}
void printList(linked_List *list)
{
if(!list->count)
{
printf("List is empty\n");
return;
}
printf("%d : {", list->count);
Element *tmp = list->first;
while(tmp != NULL && tmp != list->last)
{
printf("(%d,%d),",tmp->point->x, tmp->point->y);
tmp = tmp->next;
}
printf("(%d,%d)}\n", tmp->point->x, tmp->point->y);
}
//returns the linked_List mvt_list filled with the mvt's points
void vect_update(Mvt vect, Point p, linked_List* mvt_list)
{
static int i = 0;
static int start = 0;
static int len = 0;
static int end = 0;
set_Mvt(&vect[(i+1)%VECT_LEN],&vect[(i)], p);
i = (i+1)%VECT_LEN;
if (vect[i].v > MIN_VIT) {
if (!start)
start = i;
len++;
}else {
if (start && !end )
end = i-1;
}
//if (end > 4 || len == VECT_LEN-1) {
// end > 4 : Valeur arbitraire (seuil d'érreur/incohérence)
//fin de mouvement
if (i == 15) {
printf("\033[33mMVT DETECTER : START=%d || END=%d\033[0m\n", start, start+len-1);
//Sauvegarde mouvement en liste
for(int y = start+1; y < start+len-1; y++)
{
addLast(mvt_list, vect[y].p);
}
//Fonction de traitement de mouvement, vect[start] to vect[(start+len-1)%V_L]
// }
//start = len = end = 0;
}
}