jinlinyi commited on
Commit
0a8337f
·
1 Parent(s): 1a51322

clean title

Browse files
Files changed (1) hide show
  1. app.py +6 -23
app.py CHANGED
@@ -21,29 +21,12 @@ from perspective2d.utils import draw_from_r_p_f_cx_cy
21
 
22
 
23
 
24
- title = "Perspective Fields Demo"
25
-
26
- description = """
27
- <p style="text-align: center">
28
- <a href="https://jinlinyi.github.io/PerspectiveFields/" target="_blank">Project Page</a> |
29
- <a href="https://arxiv.org/abs/2212.03239" target="_blank">Paper</a> |
30
- <a href="https://github.com/jinlinyi/PerspectiveFields" target="_blank">Code</a> |
31
- <a href="https://www.youtube.com/watch?v=sN5B_ZvMva8&themeRefresh=1" target="_blank">Video</a>
32
- </p>
33
- <h2>Gradio Demo</h2>
34
- <p>Try our Gradio demo for Perspective Fields for single image camera calibration. You can click on one of the provided examples or upload your own image.</p>
35
- <h3>Available Models:</h3>
36
- <ol>
37
- <li><strong>PersNet-360Cities:</strong> PerspectiveNet trained on the 360Cities dataset. This model predicts perspective fields and is designed to be robust and generalize well to both indoor and outdoor images.</li>
38
- <li><strong>PersNet_Paramnet-GSV-uncentered:</strong> A combination of PerspectiveNet and ParamNet trained on the Google Street View (GSV) dataset. This model predicts camera Roll, Pitch, and Field of View (FoV), as well as the Principal Point location.</li>
39
- <li><strong>PersNet_Paramnet-GSV-centered:</strong> PerspectiveNet+ParamNet trained on the GSV dataset. This model assumes the principal point is at the center of the image and predicts camera Roll, Pitch, and FoV.</li>
40
- </ol>
41
- """
42
-
43
-
44
- article = """
45
- <p style='text-align: center'><a href='https://arxiv.org/abs/2212.03239' target='_blank'>Perspective Fields for Single Image Camera Calibrations</a> | <a href='https://github.com/jinlinyi/PerspectiveFields' target='_blank'>Github Repo</a></p>
46
- """
47
 
48
 
49
 
 
21
 
22
 
23
 
24
+ title = ""
25
+
26
+ description = ""
27
+
28
+
29
+ article = ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
 
31
 
32