You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.6 KiB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Graphische Datenverarbeitung - Color - XYZ</title>
  6. <script type="text/javascript" src="quantisegrayscale.bundle.js"></script>
  7. <link rel="icon" type="image/png" href="ai-logo.png">
  8. </head>
  9. <body>
  10. <nav class="navbar navbar-light bg-light">
  11. <div class="container">
  12. <a class="navbar-brand" href="/index.html">
  13. <img src="ai-logo.png" width="30" height="30" class="d-inline-block align-top" alt="">
  14. Graphische Datenverarbeitung
  15. </a>
  16. <div class="navbar-brand">Posterise Black and White</div>
  17. </div>
  18. </nav>
  19. <br>
  20. <div class="container">
  21. <div class="row">
  22. <figure class="figure col-sm-6">
  23. <canvas id="result" class="figure-img mx-auto d-block" width="512" height="384"></canvas>
  24. <figcaption class="figure-caption text-center">
  25. Quantise the image to 4 brightness values.
  26. </figcaption>
  27. </figure>
  28. <figure class="figure col-sm-6">
  29. <img class="figure-img mx-auto d-block" src="quantise-grayscale-poster-finished.png">
  30. <figcaption class="figure-caption text-center">Reference image</figcaption>
  31. </figure>
  32. <figure class="figure col-sm-6">
  33. <canvas id="original" class="figure-img mx-auto d-block" width="512" height="384"></canvas>
  34. <figcaption class="figure-caption text-center">
  35. Original
  36. </figcaption>
  37. </figure>
  38. </div>
  39. </div>
  40. </body>
  41. </html>