ankandrew commited on
Commit
e86fb97
·
verified ·
1 Parent(s): e02f820

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
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
- 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)
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)