-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlocal_test.html
More file actions
33 lines (30 loc) · 918 Bytes
/
Copy pathlocal_test.html
File metadata and controls
33 lines (30 loc) · 918 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Buff Checker</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Maplestory Buff Checker</h1>
<p id="status">loading image processing library...</p>
<button onclick="checkBuffs()">go</button>
<div>
<div class="input">
image source
<img id="imageSrc" alt="No Image" />
<div class="caption"><input type="file" id="fileInput" name="file" /></div>
</div>
<div class="input">
buff source
<img id="buffSrc" alt="No Image" />
<div class="caption"><input type="file" id="buffInput" name="file" /></div>
</div>
<canvas id="canvasOutput1"></canvas>
<canvas id="canvasOutput2"></canvas>
<canvas id="canvasOutput3"></canvas>
</div>
<script src="BFMatcherLocal.js" type="text/javascript"></script>
<script async src="https://docs.opencv.org/4.10.0/opencv.js" type="text/javascript"></script>
</body>
</html>