File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Vietnamese's Automatic License Plate Recognition
2
2
3
- Clone the repo and run main.py
3
+ Clone the repo and run main.py (recommend using VScode or Pycharm).\
4
+ For testing open test.py, choose any image then replace line 6's imgPath to the image's location path.
4
5
5
6
Also run by docker. Compile the dockerfile. Then run with command:
6
7
## docker run -d -p 8765:8765 [ docker image's name]
Original file line number Diff line number Diff line change 3
3
import requests
4
4
5
5
6
- imgPath = "/home/datbt/ALPR/data_2022_03_29/camera_bienso/2233785415252557522_1_0_03_20220329021230 .jpg"
6
+ imgPath = "./test_images/2233785415252553170_1_0_04_20220329011843 .jpg"
7
7
with open (imgPath , "rb" ) as image_file :
8
8
encodedByte = base64 .b64encode (image_file .read ())
9
9
encodedString = encodedByte .decode ('utf-8' )
You can’t perform that action at this time.
0 commit comments