File size: 1,668 Bytes
bb728f2
 
89d8e0d
2c16f09
89d8e0d
44ec6b0
89d8e0d
 
bb728f2
 
 
 
 
 
7a85ee8
bb728f2
 
 
 
 
 
 
7a85ee8
 
 
 
 
b11b450
ac0b335
7a8c299
 
7e19f9a
 
 
89d8e0d
4a00551
 
bb728f2
 
 
 
 
 
 
89d8e0d
bb728f2
 
 
 
 
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
<!DOCTYPE html>
<html>
<head>
  <meta name="viewport" content="width=device-width, initial-scale=1.0"> 
  <title>What Plant Is This?</title>
  <link rel="stylesheet" href="static/styles.css">
  <link rel="icon" type="image/png" href="https://images.squarespace-cdn.com/content/v1/64790f5777b5d772678cce83/6d71eaee-f825-4324-be9b-2def32469eac/Untitled+drawing+%2811%29.png?format=100w">
</head>
<body>
  <div class="header">
    <h1>What Plant is This?</h1>
  </div>

  <div class="feature-select">
    <label for="feature">Have a neural net try to identify your...</label>
    <select name="feature" id="feature-select">
      <option value="flower">flower</option>
      <option value="leaf">leaf</option>
      <option value="fruit">fruit</option>
    </select>
  </div>

  <div id="dropzone" class="dropzone">
    <p>Drop an image</p>
  </div>
  <img id="uploaded-image" src="#" alt="Uploaded Image" />

  <div id="prediction-container" class="prediction-container">
    <p id="thinking-text">Suggestions will appear here</p>
    <div class="image-grid">
      <div id="predicted-images">
      </div>
    </div>
  </div>

  <img src='static/demo.gif' id="demo">
  
  <!-- Add the GitHub link and icon below the container -->
  <div class="github-container">
    <a href="https://github.com/brayden1moore/What-Plant-Is-This" target="_blank">
      <img src="https://upload.wikimedia.org/wikipedia/commons/9/91/Octicons-mark-github.svg" height=20px />
      <p> See the code</p>
    </a>
  </div>

  <!-- Scripts -->
  <script src="https://cdn.jsdelivr.net/gh/alexcorvi/heic2any/dist/heic2any.js"></script>
  <script src="static/script.js"></script>
</body>
</html>