-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
33 lines (24 loc) · 762 Bytes
/
Program.cs
File metadata and controls
33 lines (24 loc) · 762 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
29
30
31
32
33
using System;
using System.Threading;
namespace DrowsyDoc
{
class Program
{
static void Main(string[] args)
{
CameraCapture cp = new CameraCapture();
Detect_Landmarks dl = new Detect_Landmarks();
ImageShow ishow = new ImageShow();
Thread camera = new Thread(cp.CaptureCamera);
camera.Name = "Take Picture Thread";
Thread d_land = new Thread(dl.detect_landmark);
d_land.Name = "LandMark Deetection Thread";
Thread i_show = new Thread(ishow.view_image);
i_show.Name = "Console Printing Thread";
camera.Start();
d_land.Start();
//i_show.Start();
}
}
}