File size: 1,512 Bytes
43317b5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>HandyLabels: Realtime Hand Gesture Recognition</title>
    <style>
        body {
            font-family: 'Arial', sans-serif;
            background-color: #f4f4f9;
            color: #333;
            text-align: center;
            padding: 20px;
        }

        h1 {
            color: #4A90E2;
            font-size: 70px; /* Larger font size for the main title */
            margin-bottom: 5px; /* Reduces space below the main title */
        }

        h2 {
            color: #333;
            font-size: 24px; /* Smaller font size for the subtitle */
            margin-top: 0;
            margin-bottom: 50px; /* Reduces space above the subtitle */
        }

        a {
            display: inline-block;
            background-color: #4CAF50;
            color: white;
            padding: 10px 20px;
            margin: 20px;
            text-decoration: none;
            font-size: 16px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        a:hover {
            background-color: #45a049;
        }

    </style>
</head>
<body>
    <h1>HandyLabels</h1>
    <h2>Realtime Hand Gesture Recognition as Annotation Tool</h2>
    <a href="{{ url_for('set_labels') }}">Set Custom Labels</a>
    <a href="{{ url_for('import_data') }}">Import Data from Label Studio</a>
    <a href="{{ url_for('edit_csv') }}" class="btn btn-primary">Edit File with LLM</a>



</body>
</html>