├── .DS_Store ├── .idea ├── encodings.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── workspace.xml └── 车牌识别.iml ├── README.md ├── __pycache__ ├── config.cpython-37.pyc ├── debug.cpython-37.pyc ├── img_api.cpython-37.pyc ├── img_api2.cpython-37.pyc ├── img_excel.cpython-37.pyc ├── img_function.cpython-34.pyc ├── img_function.cpython-37.pyc ├── img_math.cpython-34.pyc ├── img_math.cpython-37.pyc ├── img_recognition.cpython-34.pyc ├── img_recognition.cpython-37.pyc ├── img_sql.cpython-37.pyc ├── main.cpython-34.pyc ├── main.cpython-37.pyc ├── math.cpython-37.pyc ├── screencut.cpython-37.pyc └── sql.cpython-37.pyc ├── data.xls ├── face.py ├── img ├── .DS_Store ├── lock.jpg └── start.png ├── img_api.py ├── img_api2.py ├── img_excel.py ├── img_function.py ├── img_math.py ├── img_recognition.py ├── img_sql.py ├── login.py ├── main.py ├── pic ├── .DS_Store ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── api.png ├── hy.png ├── locate.png ├── log.png ├── login.png └── sql.png ├── screencut.py ├── svm.dat ├── svmchinese.dat └── tmp ├── .DS_Store ├── cut.png ├── img_contours.jpg ├── test.jpg └── url.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamhunter2333/python_car/5628393235980716a20446077d10dcf732930c4e/.DS_Store -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 77 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | train_svm 30 | deskew 31 | print 32 | else 33 | img_color_contours 34 | predict_result 35 | img_only_color 36 | row 37 | not 38 | AipOcr 39 | top 40 | LicensePlate 41 | postLicensePlate 42 | thread_run 43 | center_window 44 | get_imgtk 45 | self.thread_run2 46 | self.cameraflag 47 | self.apistr 48 | 49 | 50 | 51 | 53 | 54 | 72 | 73 | 74 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 |