Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -19,10 +19,11 @@ OCR_MODELS.insert(0, "european-plates-mobile-vit-v2-model")
|
|
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 |
-
|
23 |
-
|
24 |
""")
|
25 |
|
|
|
26 |
# Sidebar for selecting models
|
27 |
detector_model = st.sidebar.selectbox("Choose Detector Model", DETECTOR_MODELS)
|
28 |
ocr_model = st.sidebar.selectbox("Choose OCR Model", OCR_MODELS)
|
|
|
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 |
+
[FastALPR](https://github.com/ankandrew/fast-alpr) library uses [open-image-models](https://github.com/ankandrew/open-image-models)
|
23 |
+
for plate detection and [fast-plate-ocr](https://github.com/ankandrew/fast-plate-ocr) for optical character recognition (**OCR**).
|
24 |
""")
|
25 |
|
26 |
+
|
27 |
# Sidebar for selecting models
|
28 |
detector_model = st.sidebar.selectbox("Choose Detector Model", DETECTOR_MODELS)
|
29 |
ocr_model = st.sidebar.selectbox("Choose OCR Model", OCR_MODELS)
|