Spaces:
Runtime error
Runtime error
update description and title
Browse files
README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
emoji: 🦀
|
4 |
colorFrom: blue
|
5 |
colorTo: yellow
|
|
|
1 |
---
|
2 |
+
title: alpr-edgenet
|
3 |
emoji: 🦀
|
4 |
colorFrom: blue
|
5 |
colorTo: yellow
|
app.py
CHANGED
@@ -69,5 +69,18 @@ def greet(image):
|
|
69 |
return text
|
70 |
image = gr.inputs.Image(shape=(1920,1080))
|
71 |
|
72 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
iface.launch()
|
|
|
69 |
return text
|
70 |
image = gr.inputs.Image(shape=(1920,1080))
|
71 |
|
72 |
+
|
73 |
+
title = "Automatic licence plate detection and recognition"
|
74 |
+
description = "Gradio demo for an automatic licence plate recognition system. To use it, simply upload your image of a car with a licence plate, or click one of the examples to load them. Read more at the links below."
|
75 |
+
article = "<p style='text-align: center'><a href='https://ieeexplore.ieee.org/document/9071863'>Robust Real time Lightweight Automatic License plate Recognition System for Iranian License Plates</a> | <a href='https://github.com/clsandoval/LPRnet-keras'>Github Repo</a></p>"
|
76 |
+
|
77 |
+
|
78 |
+
iface = gr.Interface(
|
79 |
+
fn=greet,
|
80 |
+
inputs=image,
|
81 |
+
outputs="text"
|
82 |
+
title = title,
|
83 |
+
description = description
|
84 |
+
article=article
|
85 |
+
)
|
86 |
iface.launch()
|