HimanshuA commited on
Commit
0c64926
·
verified ·
1 Parent(s): 128a6f0

Create home.py

Browse files
Files changed (1) hide show
  1. home.py +22 -0
home.py ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ from PIL import Image
3
+
4
+ def run():
5
+ # Add Picture
6
+ #image = Image.open('car1.jpg')
7
+ # st.image(image, caption='Facial Emotions/Expressions Recognition')
8
+ # Title
9
+ st.title('About This Project')
10
+ st.markdown('---')
11
+ st.write('###### The Vehicle License Number Recognition project involves using computer vision and machine learning techniques to automatically detect and recognize license plate numbers from images or video streams. It employs technologies such as image processing, character segmentation, and deep learning to extract and interpret license plate information for various applications, including traffic management and security systems.
12
+
13
+
14
+
15
+
16
+ ')
17
+ st.markdown('---')
18
+
19
+
20
+
21
+ if __name__ == '__main__':
22
+ run()