-
Notifications
You must be signed in to change notification settings - Fork 2
/
aicolorization.html
110 lines (107 loc) · 5.57 KB
/
aicolorization.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="google-site-verification" content="G4gClB66Jr2h0XiecdD1OyTE0HCHwwS707_GIuEMCfU" />
<meta name="description"
content="The DRISHTI-ROBOCON is a student initiative at SVNIT to build robots for participating in ABU-ROBOCON">
<meta name="keywords" content="Drishti,ROBOCON, robocon,WE,ME">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>
AI IMAGE COLORIZATION
</title>
<link rel="apple-touch-icon" sizes="180x180" href="favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon_io/favicon-16x16.png">
<link rel="manifest" href="favicon_io/site.webmanifest">
<link href="css/all.min.css" rel="stylesheet">
<link href="css/fontawesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" media="screen" href="footer.css">
<link rel="stylesheet" type="text/css" media="screen" href="aicolorization.css">
</head>
<body>
<div class="main-div">
<nav class="navbar navbar-expand-md navbar-light" style="background-color: rgba(2,2,2,0.4);">
<a href="http://svnit.ac.in/" class="navbar-brand">
<img class="nit_photo" src="images/svnit.png">
</a>
<div class="navbar-brand v1"></div>
<a href="https://drishti-svnit.github.io/drishti/" class="navbar-brand">
<img src="images/logoleft.jpg" class="svnit_photo">
</a>
<button type="button" class="navbar-toggler" data-toggle="collapse" data-target="#menu">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="menu">
<ul class="navbar-nav ml-auto">
<li class="nav-item" style="font-weight: bold; margin-right: 20px;"><a href="index.html"
class="nav-link">Home</a></li>
<li class="nav-item" style="font-weight: bold; margin-right: 20px;"><a href="gallery.html"
class="nav-link">Gallery</a></li>
<li class="nav-item dropdown " style="font-weight: bold; margin-right: 20px;">
<a href="#" class="nav-link dropdown-toogle" data-toggle="dropdown">Projects</a>
<div class="dropdown-menu" style="background-color: rgb(220,220,220);">
<a href="tunex.html" class="dropdown-item">
Tunex
</a>
<a href="virtuon.html" class="dropdown-item">
Virtuon
</a>
<a href="gisa.html" class="dropdown-item">
GISA
</a>
<a href="planet.html" class="dropdown-item">
PlaNet
</a>
<a href="acs.html" class="dropdown-item">
Automated-Check-in-System
</a>
<a href="aicolorization.html" class="dropdown-item">
Ai-image-Colorization
</a>
</div>
</li>
<li class="nav-item" style="font-weight: bold; margin-right: 40px;"><a href="#down"
class="nav-link">Contact</a></li>
</ul>
</div>
</nav>
<div class="ref-image">
<div class="ref-title">
<h1>
AI IMAGE COLORIZATION
</h1>
<h3>2018-2019</h3>
</div>
</div>
</div>
<br><br><br>
<div class="ref-aim">
<h1>THOUGHT</h1>
<p> If you are given a task to color a black and white picture, it’s tough to color without knowing the situation or
the moment in which the picture was taken. Now think how wonderful it would be if you have a model that automatically
fills the color in the photo. We have built a model based on Machine Learning that could colorize images without any
human effort. </p>
<p><b>WORKFLOW</b></p>
<P>
<ul>
<li>DATASET PHASE
<ol>
<li>Data Augmentation</li>
<li>Data Cleaning</li>
<li>Data Collection</li>
<li>Data Compression Techniques</li>
</ol>
</li>
<li>NN PHASE: Neural Network model framework (Convolutional Neural Network)</li>
<li>ALPHA VERSION 6 . BETA VERSION</li>
<li>Need of GPU</li>
<li>Tuning Phase</li>
</ul>
</P>
</div>
</body>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</html>