├── .DS_Store ├── .gitattributes ├── .gitignore ├── .idea ├── License-Plate-Detection.iml ├── dictionaries │ └── sam.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── Code ├── BldModel.py ├── Bld_FeatureCrps.py ├── Classify.py ├── Configuration.py ├── Evaluate_models.py ├── LP_Detect_main.py ├── Tools.py ├── __pycache__ │ ├── BldModel.cpython-35.pyc │ ├── Bld_FeatureCrps.cpython-35.pyc │ ├── Classify.cpython-35.pyc │ ├── Configuration.cpython-35.pyc │ ├── Evaluate_models.cpython-35.pyc │ ├── Test.cpython-35.pyc │ └── Tools.cpython-35.pyc └── z_prac.py ├── DataSet ├── Data-Files │ ├── images_classify │ │ ├── Foreign_cars │ │ │ ├── image_2_classify (1).jpg │ │ │ ├── image_2_classify (2).jpg │ │ │ ├── image_2_classify (4).jpg │ │ │ └── image_2_classify (9).jpg │ │ ├── Indian_cars │ │ │ ├── classify_photo (1).jpg │ │ │ ├── classify_photo (2).jpg │ │ │ ├── classify_photo (3).jpg │ │ │ ├── classify_photo (4).jpg │ │ │ └── classify_photo (5).jpg │ │ ├── contoured_images_roi │ │ │ ├── roi_images0014.jpg │ │ │ ├── roi_images0029.jpg │ │ │ ├── roi_images0030.jpg │ │ │ ├── roi_images0031.jpg │ │ │ ├── roi_images0032.jpg │ │ │ ├── roi_images0033.jpg │ │ │ ├── roi_images0034.jpg │ │ │ ├── roi_images0036.jpg │ │ │ ├── roi_images0038.jpg │ │ │ ├── roi_images0039.jpg │ │ │ ├── roi_images0040.jpg │ │ │ ├── roi_images0041.jpg │ │ │ ├── roi_images0042.jpg │ │ │ └── roi_images0043.jpg │ │ └── extracted_licenceplate_image │ │ │ ├── roi_images0019_8.jpg │ │ │ ├── roi_images0021_21.jpg │ │ │ ├── roi_images0023_9.jpg │ │ │ ├── roi_images0026_17.jpg │ │ │ ├── roi_images0036_28.jpg │ │ │ ├── roi_images0040_19.jpg │ │ │ ├── roi_images0040_7.jpg │ │ │ ├── roi_images0041_31.jpg │ │ │ ├── roi_images0042_29.jpg │ │ │ └── roi_images0042_33.jpg │ ├── images_crossvalidate │ │ ├── Licence-plate │ │ │ ├── yes (37).jpg │ │ │ ├── yes (38).jpg │ │ │ └── yes (40).jpg │ │ └── Not-Licence-Plate │ │ │ ├── no (1).jpg │ │ │ ├── no (13).jpg │ │ │ ├── no (14).jpg │ │ │ ├── no (15).jpg │ │ │ ├── no (16).jpg │ │ │ ├── no (2).jpg │ │ │ ├── no (25).jpg │ │ │ ├── no (26).jpg │ │ │ ├── no (27).jpg │ │ │ ├── no (28).jpg │ │ │ ├── no (3).jpg │ │ │ ├── no (37).jpg │ │ │ ├── no (38).jpg │ │ │ └── no (4).jpg │ └── images_train │ │ ├── Licence-Plate │ │ ├── yes (31).jpg │ │ ├── yes (32).jpg │ │ └── yes (33).jpg │ │ └── Not-Licence-Plate │ │ ├── no (5).jpg │ │ ├── no (6).jpg │ │ ├── no (7).jpg │ │ └── no (8).jpg ├── Feature-Model │ ├── class_train.csv │ └── feature_train.csv └── models │ ├── model_svm_rbf_0_0.pickle │ ├── model_svm_rbf_0_1.pickle │ ├── model_svm_rbf_0_10.pickle │ ├── model_svm_rbf_100_0.pickle │ ├── model_svm_rbf_100_1.pickle │ ├── model_svm_rbf_100_10.pickle │ ├── model_svm_rbf_10_0.pickle │ ├── model_svm_rbf_10_1.pickle │ ├── model_svm_rbf_10_10.pickle │ ├── model_svm_rbf_1_0.pickle │ ├── model_svm_rbf_1_1.pickle │ └── model_svm_rbf_1_10.pickle ├── README.md ├── blog.py ├── config-local.conf ├── gradient_calculation.py └── hist_features_HOG.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/e097f0323dc20a07ddf68d347a13a1b3e9a2889c/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # Windows shortcuts 18 | *.lnk 19 | 20 | # ========================= 21 | # Operating System Files 22 | # ========================= 23 | 24 | # OSX 25 | # ========================= 26 | 27 | .DS_Store 28 | .AppleDouble 29 | .LSOverride 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear on external disk 35 | .Spotlight-V100 36 | .Trashes 37 | 38 | # Directories potentially created on remote AFP share 39 | .AppleDB 40 | .AppleDesktop 41 | Network Trash Folder 42 | Temporary Items 43 | .apdisk 44 | -------------------------------------------------------------------------------- /.idea/License-Plate-Detection.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 12 | -------------------------------------------------------------------------------- /.idea/dictionaries/sam.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 80 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | 9 | 10 | 11 | 12 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | conf['Train_data1_dir'] 115 | Train_data1_dir 116 | reppo 117 | %20 118 | contours 119 | 120 | 121 | 122 | 123 | 124 | 125 | 127 | 128 | 134 | 135 | 136 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | Python 148 | 149 | 150 | 151 | 152 | Python 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 |