File size: 1,234 Bytes
b2f488a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Image Colorization</title>
    <link rel="stylesheet" href="static/style.css"/>
    <script src="static/script.js" defer></script>
    <script src="https://www.marvinj.org/releases/marvinj-0.8.js"></script>
</head>
<body>
    <header>
        <h1>Color Black and White Images</h1>
    </header>
    <main>
        <div class="group">
            <div class="container">
                <img id="original_img" onclick="image_file_input.click()"/>
                <input id="image_file_input" type="file" accept="image/*" />
                <span class="container__label">Original Image</span>
            </div>
            <div class="container">
                <img id="result_img" />
                <span class="container__label">Predicted Image</span>
            </div>
        </div>
    </main>
    <footer>
        <p>
            made with passion by 
            <a href="https://github.com/AnujPanthri/Image-Colorization/">Anuj Panthri</a>
            |
            trained using 
            <a href="/config">config.yaml</a>
        </p>
    </footer>
</body>
</html>