wangrong
2025-01-23 02819b5c047bb354b0ef2374e7c6a6ac4bbd5bba
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <style>
        body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            background-color: #f5f5f5;
            font-family: Arial, sans-serif;
        }
 
        .container {
            text-align: center;
        }
 
        form {
            width: 300px;
            padding: 20px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            margin-top: 20px;
            text-align: left;
            margin: auto;
        }
 
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }
 
        input, select {
            width: 100%;
            padding: 8px;
            margin-bottom: 16px;
            box-sizing: border-box;
        }
 
        button {
            width: 100%;
            padding: 10px;
            background-color: #4caf50;
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
 
        button:hover {
            background-color: #45a049;
        }
    </style>
    <title>Similiarity Search Sample</title>
</head>
<body>
    <div class="container">
        <h2>Similiarity Search Sample Based VideoPipe</h2>
        <p class="centered-text">There are <span style="color:red">{{total_images}} {{search_for}}</span> to be Searched.</p>
        <form enctype="multipart/form-data" method="post" action="/search">
            <label for="query_image">Select Image:</label>
            <input type="file" id="query_image" name="query_image" accept=".jpg, .jpeg, .png" required>
 
            <label for="topK">Select TopK</label>
            <select id="topK" name="topK" required>
                <option value="5">Top5</option>
                <option value="10">Top10</option>
                <option value="50">Top50</option>
                <option value="100">Top100</option>
            </select>
            <button type="submit">Search</button>
        </form>
    </div>
 
</body>
</html>