-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
131 lines (108 loc) · 6.1 KB
/
index.html
File metadata and controls
131 lines (108 loc) · 6.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Processing</title>
<link rel="icon" href="images/fav.png" sizes="32x32" type="image/png">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" />
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
</head>
<body>
<div class="scroll-up-btn">
<i class="fas fa-angle-up"></i>
</div>
<!-- Navbar starts -->
<nav class="navbar">
<div class="max-width">
<ul></ul>
<ul class="menu">
<li><a href="#abstract" class="menu-btn">Abstract</a></li>
<li><a href="#intro" class="menu-btn">Introduction</a></li>
<li><a href="#role" class="menu-btn">Team Roles</a></li>
</ul>
<div class="menu-btn">
<i class="fas fa-bars"></i>
</div>
</div>
</nav>
<!-- Navbar ends -->
<!-- home section start -->
<section class="home" id="home">
<h1> Implementation of face detection & face recognition</h1>
<h1>using different algorithms</h1>
</section>
<!-- home section ends -->
<section class="abstract" id="abstract">
<h1>ABSTRACT</h1>
<br>
<br><br>
<img src="images/img.jpeg" alt="">
<br><br>
<p>While recognizing any individual, the most important attribute is face. It serves as an individual identity of everyone and therefore face recognition helps in authenticating any person's identity using his personal characteristics. The whole procedure for authenticating any face data is sub-divided into two phases, in the first phase, the face detection is done quickly except for those cases in which the object is placed quite far, followed by this the second phase is initiated in which the face is recognized as an individual. Then the whole process is repeated thereby helping in developing a face recognition model which is considered to be one of the most extremely deliberated biometric technology. Basically, there are two type of techniques that are currently being followed in face recognition pattern that is, the Eigenface method and the Fisherface method. The Eigenface method basically make use of the PCA (Principal Component Analysis) to minimize the face dimensional space of the facial features. The area of concern of this paper is using the digital image processing to develop a face recognition system.
</p>
</section>
<section class="one" id="intro">
<h1>Introduction</h1>
<br><br>
<p>Recent advances in automated face analysis, pattern recognition and machine learning have made it possible to develop automatic face recognition systems to address these applications. On the one hand, recognising face is natural process, because people usually do it effortlessly without much conscious. On the other hand, application of this process in area of computer vision remains a difficult problem. Being part of a biometric technology, automated face recognition has a plenty of desirable properties. They are based on the important advantage—non‐invasiveness. The various biometric methods can be distinguished into physiological (fingerprint, DNA, face) and behavioural (keystroke, voice print) categories. The physiological approaches are more stable and non‐alterable, except by severe injury. Behavioural patterns are more sensitive to human overall condition, such as stress, illness or fatigue.</p>
<br>
<br><br>
<p>Face detection performance is a key issue, so techniques for dealing with non‐frontal face detection are discussed. Subspace modelling and learning‐based dimension reduction methods are fundamental to many current face recognition techniques. Discovering such algorithms so as to extract effective features and construct robust classifiers stands another challenge in this area. Face recognition has merits of both high accuracy and low intrusive, so it has drawn the attention of the researches in various fields from psychology, image processing to computer vision.</p>
</section>
<section id="role" >
<div class="wrapper">
<div class="header">ROLES OF TEAM MEMBERS</div>
<div class="cards_wrap">
<div class="card_item">
<div class="card_inner">
<div class="role_name">Thenish reddy </div>
<div class="real_name">19BCE1019</div>
<b> <div class="film">Face recognition using local binary pattern histogram algorithm .</div></b>
</div>
</div>
<div class="card_item">
<div class="card_inner">
<div class="role_name">Chirag Dua </div>
<div class="real_name">19BCE1061</div>
<b><div class="film"> Face Recognition Using Eigenfaces Method.</div></b>
</div>
</div>
<div class="card_item">
<div class="card_inner">
<div class="role_name">S. Teja Naga Surya Varma </div>
<div class="real_name">19BCE1069</div>
<b><div class="film">Face recognition using Fisherface algorithm.</div></b>
</div>
</div>
<div class="card_item">
<div class="card_inner">
<div class="role_name"> S. Pranith Sai </div>
<div class="real_name">19BCE1780</div>
<b><div class="film">Face recognition using CNN googleNet dataset.</div></b>
</div>
</div>
<div class="card_item">
<div class="card_inner">
<div class="role_name">Shane Gomes </div>
<div class="real_name">19BCE1081</div>
<b> <div class="film">Face recognition using the YOLO algorithm.</div></b>
</div>
</div>
<div class="card_item">
<div class="card_inner">
<div class="role_name">S. Omsimha Reddy</div>
<div class="real_name">19BCE1214 </div>
<b><div class="film">Face Detection using Haar-Cascades algorithm.</div></b>
</div>
</div>
</div>
</div>
</div>
</section>
<footer>
Made by TEAM B </footer>
<script src="script.js"></script>
</body>
</html>