about summary refs log tree commit diff stats
path: root/js/lut-cam/lut-extraction/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'js/lut-cam/lut-extraction/index.html')
-rw-r--r--js/lut-cam/lut-extraction/index.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/js/lut-cam/lut-extraction/index.html b/js/lut-cam/lut-extraction/index.html
new file mode 100644
index 0000000..4202e8f
--- /dev/null
+++ b/js/lut-cam/lut-extraction/index.html
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>LUT Profile Extractor</title>
+    <style>
+       body {    
+            width: 100%;
+            height: 100%;
+            background-color: beige;
+        }
+    </style>
+</head>
+<body>
+    <h1>LUT Profile Extractor</h1>
+    <input type="file" id="lut-upload" accept="image/png">
+    <canvas id="lut-preview" style="display:none;"></canvas>
+    <canvas id="sample-output"></canvas>
+    <img id="sample-image" src="sample.jpeg" alt="Photograph of a colorful parrot." />
+    <h2>LUT Profile JS Code:</h2>
+    <pre id="lut-code"></pre>
+    <script src="script.js"></script>
+</body>
+</html>