-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathMainForm.cs
550 lines (463 loc) · 22.3 KB
/
MainForm.cs
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
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using Emgu.CV;
using Emgu.CV.Structure;
using System.Diagnostics;
using FaceDetection;
using SURFFeatureExample;
using Emgu.CV.UI;
using Emgu.CV.GPU;
using Emgu.CV.CvEnum;
using System.IO;
namespace PassFace
{
public partial class MainForm : Form
{
public MainForm()
{
InitializeComponent();
CameraCapture();
CheckForIllegalCrossThreadCalls = false;
}
Image<Bgr, Byte> image;
private Capture _capture = null;
private bool _captureInProgress;
MCvFont font = new MCvFont(FONT.CV_FONT_HERSHEY_TRIPLEX, 0.5d, 0.5d);
//Eigen Parameters
int eigenTrainedImageCounter;
List<Image<Gray, byte>> eigenTrainingImages = new List<Image<Gray, byte>>();
List<int> eigenIntlabels = new List<int>();
List<string> eigenlabels = new List<string>();
EigenFaceRecognizer eigenFaceRecognizer;
//Fisher Parameters
int fisherTrainedImageCounter;
List<Image<Gray, byte>> fisherTrainingImages = new List<Image<Gray, byte>>();
List<int> fisherIntlabels = new List<int>();
List<string> fisherlabels = new List<string>();
FisherFaceRecognizer fisherFaceRecognizer;
//LBPH Parameters
int lbphTrainedImageCounter;
List<Image<Gray, byte>> lbphTrainingImages = new List<Image<Gray, byte>>();
List<int> lbphIntlabels = new List<int>();
List<string> lbphlabels = new List<string>();
LBPHFaceRecognizer lbphFaceRecognizer;
private void CameraCapture()
{
try
{
_capture = new Capture();
_capture.ImageGrabbed += ProcessFrame2;
}
catch (NullReferenceException excpt)
{
MessageBox.Show(excpt.Message);
}
}
private void ProcessFrame(object sender, EventArgs arg)
{
if (faceRecog.Checked == true)
{
long recpoints;
Image<Bgr, Byte> img = new Image<Bgr, byte>(secondImageBox.Image.Bitmap);
using (Image<Gray, Byte> modelImage = img.Convert<Gray, Byte>())
using (Image<Gray, Byte> observedImage = _capture.RetrieveBgrFrame().Convert<Gray, Byte>())
{
Image<Bgr, byte> result = SurfRecognizer.Draw(modelImage, observedImage, out recpoints);
captureImageBox.Image = observedImage;
if (recpoints > 10)
{
MCvFont f = new MCvFont(Emgu.CV.CvEnum.FONT.CV_FONT_HERSHEY_COMPLEX, 1.0, 1.0);
//Draw "Hello, world." on the image using the specific font
result.Draw("Person Recognited, Welcome", ref f, new Point(40, 40), new Bgr(0, 255, 0));
ImageViewer.Show(result, String.Format(" {0} Points Recognited", recpoints));
}
}
}
///////////////////////////////////////////////////////////////////////
if (faceRecog.Checked == false)
{
Image<Bgr, Byte> detectedface;
Image<Bgr, Byte> frame = _capture.RetrieveBgrFrame();
Image<Bgr, Byte> image = frame.Resize(400, 300, Emgu.CV.CvEnum.INTER.CV_INTER_CUBIC);//Read the files as an 8-bit Bgr image
long detectionTime;
List<Rectangle> faces = new List<Rectangle>();
List<Rectangle> eyes = new List<Rectangle>();
DetectFace.Detect(image, "haarcascade_frontalface_default.xml", "haarcascade_eye.xml", faces, eyes, out detectionTime);
foreach (Rectangle face in faces)
{
image.Draw(face, new Bgr(Color.Red), 2);
image.ROI = face;
detectedface = image;
if (eqHisChecked.Checked == false)
secondImageBox.Image = detectedface.Convert<Gray, Byte>().Resize(2, Emgu.CV.CvEnum.INTER.CV_INTER_CUBIC);
CvInvoke.cvResetImageROI(image);
}
foreach (Rectangle eye in eyes)
{
image.Draw(eye, new Bgr(Color.Blue), 2);
}
captureImageBox.Image = image;
}
}
private void ProcessFrame2(object sender, EventArgs arg)
{
if (comboBoxCapture.Text == "Camera")
{
image = _capture.RetrieveBgrFrame().Resize(320, 240, Emgu.CV.CvEnum.INTER.CV_INTER_CUBIC);
}
if (comboBoxCapture.Text == "Single Image")
{
OpenFileDialog Openfile = new OpenFileDialog();
if (Openfile.ShowDialog() == DialogResult.OK)
{
image = new Image<Bgr, byte>(Openfile.FileName);
}
}
List<Rectangle> faces = new List<Rectangle>();
List<Rectangle> eyes = new List<Rectangle>();
long detectionTime;
DetectFace.Detect(image, "haarcascade_frontalface_default.xml", "haarcascade_eye.xml", faces, eyes, out detectionTime);
foreach (Rectangle face in faces)
{
//Image ROI selected as each face in image
if (workCorruptedImages.Checked == true)
{
image.ROI = face;
}
if (faceRecog.Checked == true)
{
//now program apply selected algorithm if recognition has started
//For SURF Algorithm
if (comboBoxAlgorithm.Text == "SURF Feature Extractor")
{
string dataDirectory=Directory.GetCurrentDirectory()+"\\TrainedFaces";
string[] files = Directory.GetFiles(dataDirectory, "*.jpg", SearchOption.AllDirectories);
foreach (var file in files)
{
richTextBox1.Text += file.ToString();
long recpoints;
Image<Bgr,Byte>sampleImage = new Image<Bgr, Byte>(file);
secondImageBox.Image = sampleImage;
using (Image<Gray, Byte> modelImage = sampleImage.Convert<Gray, Byte>())
using (Image<Gray, Byte> observedImage = image.Convert<Gray, Byte>())
{
Image<Bgr, byte> result = SurfRecognizer.Draw(modelImage, observedImage, out recpoints);
//captureImageBox.Image = observedImage;
if (recpoints > 10)
{
MCvFont f = new MCvFont(Emgu.CV.CvEnum.FONT.CV_FONT_HERSHEY_COMPLEX, 1.0, 1.0);
result.Draw("Person Recognited, Welcome", ref f, new Point(40, 40), new Bgr(0, 255, 0));
ImageViewer.Show(result, String.Format(" {0} Points Recognited", recpoints));
}
}
}
}
//For EigenFaces
else if (comboBoxAlgorithm.Text == "EigenFaces")
{
CvInvoke.cvResetImageROI(image);
//image._EqualizeHist();
if (eqHisChecked.Checked == true)
{
image._EqualizeHist();
}
var result = eigenFaceRecognizer.Predict(image.Convert<Gray, Byte>().Resize(100, 100, Emgu.CV.CvEnum.INTER.CV_INTER_CUBIC));
if (result.Label != -1)
{
image.Draw(eigenlabels[result.Label].ToString(), ref font, new Point(face.X - 2, face.Y - 2), new Bgr(Color.LightGreen));
label6.Text = result.Distance.ToString();
}
}
//For FisherFaces
else if (comboBoxAlgorithm.Text == "FisherFaces")
{
CvInvoke.cvResetImageROI(image);
if (eqHisChecked.Checked == true)
{
image._EqualizeHist();
}
var result = fisherFaceRecognizer.Predict(image.Convert<Gray, Byte>().Resize(100, 100, Emgu.CV.CvEnum.INTER.CV_INTER_CUBIC));
if (result.Label != -1)
{
image.Draw(fisherlabels[result.Label].ToString(), ref font, new Point(face.X - 2, face.Y - 2), new Bgr(Color.LightGreen));
label6.Text = result.Distance.ToString();
}
}
//For LBPH
else if (comboBoxAlgorithm.Text == "LBPHFaces")
{
if (eqHisChecked.Checked == true)
{
image._EqualizeHist();
}
var result = lbphFaceRecognizer.Predict(image.Convert<Gray, Byte>().Resize(100, 100, Emgu.CV.CvEnum.INTER.CV_INTER_CUBIC));
if (result.Label != -1)
{
CvInvoke.cvResetImageROI(image);
image.Draw(lbphlabels[result.Label].ToString(), ref font, new Point(face.X - 2, face.Y - 2), new Bgr(Color.LightGreen));
label6.Text = result.Distance.ToString();
label7.Text = lbphlabels[result.Label].ToString();
}
}
}
CvInvoke.cvResetImageROI(image);
image.Draw(face, new Bgr(Color.Red), 2);
}
captureImageBox.Image = image;
}
private void ReleaseData()
{
if (_capture != null)
_capture.Dispose();
}
private void captureButton_Click(object sender, EventArgs e)
{
if (comboBoxCapture.Text == "Camera")
{
if (_capture != null)
{
if (_captureInProgress)
{ //stop the capture
comboBoxCapture.Enabled = true;
captureButton.Text = "Start Capture";
_capture.Pause();
}
else
{
//start the capture
comboBoxCapture.Enabled = false;
captureButton.Text = "Stop";
_capture.Start();
}
_captureInProgress = !_captureInProgress;
}
}
else if (comboBoxCapture.Text == "Single Image")
{
ProcessFrame2(null,new EventArgs());
}
}
private void faceRecog_CheckedChanged(object sender, EventArgs e)
{
}
private void addDatabaseButton_Click(object sender, EventArgs e)
{
//Take time for save filename
string fileName = textBox1.Text+"_"+DateTime.Now.Day.ToString() + "-" + DateTime.Now.Month.ToString() + "-" + DateTime.Now.Year.ToString()
+ "-" + DateTime.Now.Hour.ToString() + "-" + DateTime.Now.Minute.ToString()+"-" + DateTime.Now.Second.ToString()+".jpg";
//First The faces in the Image is detected
Image<Bgr, Byte> image = _capture.RetrieveBgrFrame().Resize(400, 300, Emgu.CV.CvEnum.INTER.CV_INTER_CUBIC);
List<Rectangle> faces = new List<Rectangle>();
List<Rectangle> eyes = new List<Rectangle>();
long detectionTime;
DetectFace.Detect(image, "haarcascade_frontalface_default.xml", "haarcascade_eye.xml", faces, eyes, out detectionTime);
foreach (Rectangle face in faces)
{
image.ROI = face;
}
Directory.CreateDirectory("TrainedFaces");
image.Resize(100, 100, Emgu.CV.CvEnum.INTER.CV_INTER_CUBIC).ToBitmap().Save("TrainedFaces\\" + fileName);
}
private void comboBoxAlgorithm_SelectedIndexChanged(object sender, EventArgs e)
{
}
string fileName(string file)
{
string[] fileArr = file.Split('\\');
var fileName=fileArr[fileArr.Length - 1].Split(comboBoxSplitChar.Text.ToCharArray()[0])[0];
return fileName;
}
string fileNameforExtract(string file)
{
string[] fileArr = file.Split('\\');
var fileName = fileArr[fileArr.Length - 1];
return fileName;
}
private void comboBoxCapture_SelectedIndexChanged(object sender, EventArgs e)
{
}
private void richTextBox1_TextChanged(object sender, EventArgs e)
{
richTextBox1.SelectionStart = richTextBox1.Text.Length;
richTextBox1.ScrollToCaret();
}
private void button1_Click(object sender, EventArgs e)
{
if (comboBoxAlgorithm.Text == "EigenFaces")
{
try
{
string dataDirectory = Directory.GetCurrentDirectory() + "\\TrainedFaces";
string[] files = Directory.GetFiles(dataDirectory, "*.jpg", SearchOption.AllDirectories);
eigenTrainedImageCounter = 0;
foreach (var file in files)
{
Image<Bgr, Byte> TrainedImage = new Image<Bgr, Byte>(file);
if (eqHisChecked.Checked == true)
{
TrainedImage._EqualizeHist();
}
eigenTrainingImages.Add(TrainedImage.Convert<Gray, Byte>());
eigenlabels.Add(fileName(file));
eigenIntlabels.Add(eigenTrainedImageCounter);
eigenTrainedImageCounter++;
richTextBox1.Text += fileName(file) + "\n";
}
/*
//TermCriteria for face recognition with numbers of trained images like maxIteration
MCvTermCriteria termCrit = new MCvTermCriteria(eigenTrainedImageCounter, 0.001);
//Eigen face recognizer
eigenObjRecognizer=new EigenObjectRecognizer(
eigenTrainingImages.ToArray(),
eigenlabels.ToArray(),
3000,
ref termCrit);
*/
eigenFaceRecognizer = new EigenFaceRecognizer(eigenTrainedImageCounter, 2000);
eigenFaceRecognizer.Train(eigenTrainingImages.ToArray(), eigenIntlabels.ToArray());
//eigenFaceRecognizer.Save(dataDirectory + "\\trainedDataEigen.dat");
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
MessageBox.Show("Nothing in binary database, please add at least a face(Simply train the prototype with the Add Face Button).", "Triained faces load", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
}
else if (comboBoxAlgorithm.Text == "FisherFaces")
{
try
{
string dataDirectory = Directory.GetCurrentDirectory() + "\\TrainedFaces";
string[] files = Directory.GetFiles(dataDirectory, "*.jpg", SearchOption.AllDirectories);
fisherTrainedImageCounter = 0;
foreach (var file in files)
{
Image<Bgr, Byte> TrainedImage = new Image<Bgr, Byte>(file);
fisherTrainingImages.Add(TrainedImage.Convert<Gray, Byte>());
if (eqHisChecked.Checked == true)
{
TrainedImage._EqualizeHist();
}
fisherlabels.Add(fileName(file));
fisherIntlabels.Add(fisherTrainedImageCounter);
fisherTrainedImageCounter++;
richTextBox1.Text += fileName(file) + "\n";
}
fisherFaceRecognizer = new FisherFaceRecognizer(fisherTrainedImageCounter, 2000);
fisherFaceRecognizer.Train(fisherTrainingImages.ToArray(), fisherIntlabels.ToArray());
//fisherFaceRecognizer.Save(dataDirectory + "\\trainedDataFisher.dat");
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
MessageBox.Show("Nothing in binary database, please add at least a face(Simply train the prototype with the Add Face Button).", "Triained faces load", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
}
else if (comboBoxAlgorithm.Text == "LBPHFaces")
{
try
{
string dataDirectory = Directory.GetCurrentDirectory() + "\\TrainedFaces";
string[] files = Directory.GetFiles(dataDirectory, "*.jpg", SearchOption.AllDirectories);
lbphTrainedImageCounter = 0;
foreach (var file in files)
{
Image<Bgr, Byte> TrainedImage = new Image<Bgr, Byte>(file);
if (eqHisChecked.Checked == true)
{
TrainedImage._EqualizeHist();
}
lbphTrainingImages.Add(TrainedImage.Convert<Gray, Byte>());
lbphlabels.Add(fileName(file));
lbphIntlabels.Add(lbphTrainedImageCounter);
lbphTrainedImageCounter++;
richTextBox1.Text += fileName(file) + "\n";
}
lbphFaceRecognizer = new LBPHFaceRecognizer(1, 8, 8, 8, 400);
lbphFaceRecognizer.Train(lbphTrainingImages.ToArray(), lbphIntlabels.ToArray());
lbphFaceRecognizer.Save(dataDirectory + "\\trainedDataLBPH.dat");
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
MessageBox.Show("Nothing in binary database, please add at least a face(Simply train the prototype with the Add Face Button).", "Triained faces load", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
}
}
private void button2_Click(object sender, EventArgs e)
{
if (comboBoxAlgorithm.Text == "EigenFaces")
{
try
{
string dataDirectory = Directory.GetCurrentDirectory() + "\\TrainedFaces\\trainedDataEigen.dat";
eigenFaceRecognizer = new EigenFaceRecognizer(eigenTrainedImageCounter, 3000);
eigenFaceRecognizer.Load(dataDirectory);
richTextBox1.Text += "Trained Database Loaded.";
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
MessageBox.Show("Nothing in binary database, please add at least a face(Simply train the prototype with the Add Face Button).", "Triained faces load", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
}
else if (comboBoxAlgorithm.Text == "FisherFaces")
{
try
{
string dataDirectory = Directory.GetCurrentDirectory() + "\\TrainedFaces\\trainedDataFisher.dat";
fisherFaceRecognizer = new FisherFaceRecognizer(fisherTrainedImageCounter, 3000);
fisherFaceRecognizer.Load(dataDirectory);
richTextBox1.Text += "Trained Database Loaded.";
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
MessageBox.Show("Nothing in binary database, please add at least a face(Simply train the prototype with the Add Face Button).", "Triained faces load", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
}
else if (comboBoxAlgorithm.Text == "LBPHFaces")
{
try
{
string dataDirectory = Directory.GetCurrentDirectory() + "\\TrainedFaces\\trainedDataLBPH.dat";
lbphFaceRecognizer = new LBPHFaceRecognizer(1, 8, 8, 8, 400);
lbphFaceRecognizer.Load(dataDirectory);
richTextBox1.Text += "Trained Database Loaded.";
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
MessageBox.Show("Nothing in binary database, please add at least a face(Simply train the prototype with the Add Face Button).", "Triained faces load", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
}
}
private void buttonFaceExtract_Click(object sender, EventArgs e)
{
string dataDirectory = directoryFaceExtract.Text;
string[] files = Directory.GetFiles(dataDirectory, "*.jpg", SearchOption.AllDirectories);
foreach (var file in files)
{
Image<Bgr, byte> fullImage = new Image<Bgr, byte>(file);
List<Rectangle> faces = new List<Rectangle>();
List<Rectangle> eyes = new List<Rectangle>();
long detectionTime;
DetectFace.Detect(fullImage, "haarcascade_frontalface_default.xml", "haarcascade_eye.xml", faces, eyes, out detectionTime);
foreach (Rectangle face in faces)
{
string fileNameImage = fileNameforExtract(file);
fullImage.ROI = face;
Directory.CreateDirectory("TrainedFaces");
fullImage.Resize(100, 100, Emgu.CV.CvEnum.INTER.CV_INTER_CUBIC).ToBitmap().Save("TrainedFaces\\" + fileNameImage);
richTextBox1.Text += fileNameImage + "\n";
secondImageBox.Image = fullImage;
}
}
}
}
}