Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -18,6 +18,10 @@ OCR_MODELS.insert(0, "european-plates-mobile-vit-v2-model")
|
|
| 18 |
|
| 19 |
st.title("FastALPR Demo")
|
| 20 |
st.write("An automatic license plate recognition (ALPR) system with customizable detector and OCR models.")
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
|
| 22 |
# Sidebar for selecting models
|
| 23 |
detector_model = st.sidebar.selectbox("Choose Detector Model", DETECTOR_MODELS)
|
|
|
|
| 18 |
|
| 19 |
st.title("FastALPR Demo")
|
| 20 |
st.write("An automatic license plate recognition (ALPR) system with customizable detector and OCR models.")
|
| 21 |
+
st.markdown("""
|
| 22 |
+
For Optical Character Recognition (**OCR**), [fast-plate-ocr](https://github.com/ankandrew/fast-plate-ocr) models are used,
|
| 23 |
+
and for **license plate detection**, [open-image-models](https://github.com/ankandrew/open-image-models) are employed.
|
| 24 |
+
""")
|
| 25 |
|
| 26 |
# Sidebar for selecting models
|
| 27 |
detector_model = st.sidebar.selectbox("Choose Detector Model", DETECTOR_MODELS)
|