-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (27 loc) · 1.25 KB
/
index.html
File metadata and controls
41 lines (27 loc) · 1.25 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Camera Circle Visualization</title>
</head>
<body>
<canvas id="cameraCanvas" width="800" height="800"></canvas>
<label for="ellipseRadiusYInput">Ellipse Radius Y:</label>
<input type="number" id="ellipseRadiusYInput" value="300"><br>
<label for="ellipseRadiusXInput">Ellipse Radius X:</label>
<input type="number" id="ellipseRadiusXInput" value="300"><br>
<label for="cameraCountInput">Number of Cameras:</label>
<input type="number" id="cameraCountInput" value="12"><br>
<label for="focalLengthInput">Camera Focal Length:</label>
<input type="number" id="focalLengthInput" value="7"><br>
<label for="sensorSizeInput">Camera Sensor Size:</label>
<input type="number" id="sensorSizeInput" value="16"><br>
<label for="rectWidthInput">Rectangle Width:</label>
<input type="number" id="rectWidthInput" value="100"><br>
<label for="rectHeightInput">Rectangle Height:</label>
<input type="number" id="rectHeightInput" value="100"><br>
<button id="updateButton">Update Visualization</button>
<script src="cameraCircle.js"></script>
</body>
</html>