-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstructionPositifs.c
198 lines (170 loc) · 5.03 KB
/
constructionPositifs.c
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
// Programme permettant de traiter une série d'images et de créer une liste
// des fichiers avec les occurences d'un objet dans celles-ci
#include "cv.h"
#include "highgui.h"
#include <stdio.h>
#include <string.h>
IplImage *image = NULL;
CvPoint origin;
CvRect selection;
int select_object = 0;
// Fonction de callback pour gérer la selection à la souris
void on_mouse(int event, int x, int y, int flags, void* param)
{
if (image != NULL)
{
if (image->origin)
{
x = image->width - x;
y = image->height - y;
}
// Mise à jour de la zone de sélection
if (select_object)
{
selection.x = MIN(x, origin.x);
selection.y = MIN(y, origin.y);
selection.width = selection.x + CV_IABS(x - origin.x);
selection.height = selection.y + CV_IABS(y-origin.y);
selection.x = MAX(selection.x, 0);
selection.y = MAX(selection.y, 0);
selection.width = MIN(selection.width, image->width);
selection.height = MIN(selection.height, image->height);
selection.width -= selection.x;
selection.height -= selection.y;
}
// Gestion des évènements souris
switch(event)
{
case CV_EVENT_LBUTTONDOWN:
// On commence une phase de sélection
origin = cvPoint(x,y);
selection = cvRect(x,y,0,0);
select_object = 1;
break;
case CV_EVENT_LBUTTONUP:
// On termine une phase de sélection
select_object = 0;
if (selection.width > 0 && selection.height > 0)
{
// action à effectuer après la sélection
// On ne fait rien, l'action est exécutée par la boucle principale
}
break;
}
}
return;
}
// Fonction principale
int main(int argc, char** argv)
{
IplImage *frame = NULL;
int i, j, nbrObjets, quit=0, imgsuiv=0;
CvRect objets[10];
char c, file[51];
FILE *fichier;
printf("Programme de generation d'une liste d'images positives\n");
printf("pour la generation d'une base de donnees de reconnaissance d'objet\n\n");
printf("Utilisation : passer la liste d'images a traiter en argument.\n\n");
printf("Commandes :\n");
printf("\tq : quitter\n");
printf("\t<ESPACE> : valider la selection courante\n");
printf("\t<ESC> : annuler les selections de l'image courante\n");
printf("\t<ENTREE> : valider les selections et passer a l'image suivante\n\n\n");
if (argc < 2)
{
printf("Pas assez d'arguments\n");
return 1;
}
printf("Nom du fichier a ecrire (le fichier sera ecrase) : ");
scanf("%s", file);
printf("\n\n\n");
if ( (fichier = fopen(file, "w+")) == NULL)
{
printf("Impossible d'ouvrir le fichier destination !\n");
return 1;
}
cvNamedWindow("Image courante", 0);
cvSetMouseCallback("Image courante", on_mouse, 0);
for (i=1; i < argc && !quit; i++)
{
printf("Image : %s\n", argv[i]);
printf("===================================================\n\n");
if ( (image = cvLoadImage(argv[i], 1)) == NULL )
{
printf("\tImpossible de charger l'image...\n\n\n\n");
continue;
}
cvShowImage("Image courante", image);
// On alloue les buffers si ce n'est pa déjà fait
if (frame == NULL)
{
frame = cvCreateImage(cvGetSize(image), 8, 3);
frame->origin = image->origin;
}
// il n'y a pas d'objet
nbrObjets = 0;
// On efface une éventuelle sélection
selection.width = 0;
selection.height = 0;
// On boucle jusqu'à devoir passer à l'image suivante
imgsuiv=0;
while (!imgsuiv)
{
// On fait le rendu de l'image en ajoutant la zone de selection
// On travaille sur une copie de l'image
cvCopy(image, frame, 0);
// On rend la zone de selection
if( selection.width > 0 && selection.height > 0 )
{
cvSetImageROI(frame, selection);
cvXorS(frame, cvScalarAll(255), frame, 0);
cvResetImageROI(frame);
}
// On affiche l'image
cvShowImage("Image courante", frame);
// On répond aux entrées utilisateur
c = (char)cvWaitKey(10);
switch (c)
{
case 'q' :
// On passe à l'image suivante
imgsuiv=1;
// En fait, non, on quitte
quit=1;
break;
case 27 : // <ESC>
nbrObjets = 0;
break;
case 10 : // <ENTREE>
fprintf(fichier, "%s", argv[i]);
if (nbrObjets > 0)
{
fprintf(fichier, " %d", nbrObjets);
for (j = 0; j < nbrObjets; j++)
fprintf(fichier, " %d %d %d %d",
objets[j].x, objets[j].y, objets[j].width, objets[j].height);
}
fprintf(fichier, "\n");
// On passe à l'image suivante
imgsuiv=1;
break;
case 32 : // <ESPACE>
if (selection.width > 0 && selection.height > 0)
{
objets[nbrObjets] = selection;
nbrObjets++;
printf("\t%d. rect x=%d\ty=%d\t\twidth=%d\theight=%d\n",
nbrObjets, selection.x, selection.y, selection.width, selection.height);
}
// On efface la selection courante de l'ecran
selection.width = 0;
selection.height = 0;
break;
}
}
printf("\n\n\n");
}
fclose(fichier);
cvDestroyWindow("Image courante");
return 0;
}