├── .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/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/License-Plate-Detection.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/.idea/License-Plate-Detection.iml -------------------------------------------------------------------------------- /.idea/dictionaries/sam.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/.idea/dictionaries/sam.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /Code/BldModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/Code/BldModel.py -------------------------------------------------------------------------------- /Code/Bld_FeatureCrps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/Code/Bld_FeatureCrps.py -------------------------------------------------------------------------------- /Code/Classify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/Code/Classify.py -------------------------------------------------------------------------------- /Code/Configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/Code/Configuration.py -------------------------------------------------------------------------------- /Code/Evaluate_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/Code/Evaluate_models.py -------------------------------------------------------------------------------- /Code/LP_Detect_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/Code/LP_Detect_main.py -------------------------------------------------------------------------------- /Code/Tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/Code/Tools.py -------------------------------------------------------------------------------- /Code/__pycache__/BldModel.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/Code/__pycache__/BldModel.cpython-35.pyc -------------------------------------------------------------------------------- /Code/__pycache__/Bld_FeatureCrps.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/Code/__pycache__/Bld_FeatureCrps.cpython-35.pyc -------------------------------------------------------------------------------- /Code/__pycache__/Classify.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/Code/__pycache__/Classify.cpython-35.pyc -------------------------------------------------------------------------------- /Code/__pycache__/Configuration.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/Code/__pycache__/Configuration.cpython-35.pyc -------------------------------------------------------------------------------- /Code/__pycache__/Evaluate_models.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/Code/__pycache__/Evaluate_models.cpython-35.pyc -------------------------------------------------------------------------------- /Code/__pycache__/Test.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/Code/__pycache__/Test.cpython-35.pyc -------------------------------------------------------------------------------- /Code/__pycache__/Tools.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/Code/__pycache__/Tools.cpython-35.pyc -------------------------------------------------------------------------------- /Code/z_prac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/Code/z_prac.py -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/Foreign_cars/image_2_classify (1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/Foreign_cars/image_2_classify (1).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/Foreign_cars/image_2_classify (2).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/Foreign_cars/image_2_classify (2).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/Foreign_cars/image_2_classify (4).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/Foreign_cars/image_2_classify (4).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/Foreign_cars/image_2_classify (9).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/Foreign_cars/image_2_classify (9).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/Indian_cars/classify_photo (1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/Indian_cars/classify_photo (1).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/Indian_cars/classify_photo (2).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/Indian_cars/classify_photo (2).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/Indian_cars/classify_photo (3).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/Indian_cars/classify_photo (3).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/Indian_cars/classify_photo (4).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/Indian_cars/classify_photo (4).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/Indian_cars/classify_photo (5).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/Indian_cars/classify_photo (5).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/contoured_images_roi/roi_images0014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/contoured_images_roi/roi_images0014.jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/contoured_images_roi/roi_images0029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/contoured_images_roi/roi_images0029.jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/contoured_images_roi/roi_images0030.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/contoured_images_roi/roi_images0030.jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/contoured_images_roi/roi_images0031.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/contoured_images_roi/roi_images0031.jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/contoured_images_roi/roi_images0032.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/contoured_images_roi/roi_images0032.jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/contoured_images_roi/roi_images0033.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/contoured_images_roi/roi_images0033.jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/contoured_images_roi/roi_images0034.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/contoured_images_roi/roi_images0034.jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/contoured_images_roi/roi_images0036.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/contoured_images_roi/roi_images0036.jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/contoured_images_roi/roi_images0038.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/contoured_images_roi/roi_images0038.jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/contoured_images_roi/roi_images0039.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/contoured_images_roi/roi_images0039.jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/contoured_images_roi/roi_images0040.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/contoured_images_roi/roi_images0040.jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/contoured_images_roi/roi_images0041.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/contoured_images_roi/roi_images0041.jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/contoured_images_roi/roi_images0042.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/contoured_images_roi/roi_images0042.jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/contoured_images_roi/roi_images0043.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/contoured_images_roi/roi_images0043.jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/extracted_licenceplate_image/roi_images0019_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/extracted_licenceplate_image/roi_images0019_8.jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/extracted_licenceplate_image/roi_images0021_21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/extracted_licenceplate_image/roi_images0021_21.jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/extracted_licenceplate_image/roi_images0023_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/extracted_licenceplate_image/roi_images0023_9.jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/extracted_licenceplate_image/roi_images0026_17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/extracted_licenceplate_image/roi_images0026_17.jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/extracted_licenceplate_image/roi_images0036_28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/extracted_licenceplate_image/roi_images0036_28.jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/extracted_licenceplate_image/roi_images0040_19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/extracted_licenceplate_image/roi_images0040_19.jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/extracted_licenceplate_image/roi_images0040_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/extracted_licenceplate_image/roi_images0040_7.jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/extracted_licenceplate_image/roi_images0041_31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/extracted_licenceplate_image/roi_images0041_31.jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/extracted_licenceplate_image/roi_images0042_29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/extracted_licenceplate_image/roi_images0042_29.jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_classify/extracted_licenceplate_image/roi_images0042_33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_classify/extracted_licenceplate_image/roi_images0042_33.jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_crossvalidate/Licence-plate/yes (37).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_crossvalidate/Licence-plate/yes (37).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_crossvalidate/Licence-plate/yes (38).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_crossvalidate/Licence-plate/yes (38).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_crossvalidate/Licence-plate/yes (40).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_crossvalidate/Licence-plate/yes (40).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_crossvalidate/Not-Licence-Plate/no (1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_crossvalidate/Not-Licence-Plate/no (1).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_crossvalidate/Not-Licence-Plate/no (13).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_crossvalidate/Not-Licence-Plate/no (13).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_crossvalidate/Not-Licence-Plate/no (14).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_crossvalidate/Not-Licence-Plate/no (14).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_crossvalidate/Not-Licence-Plate/no (15).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_crossvalidate/Not-Licence-Plate/no (15).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_crossvalidate/Not-Licence-Plate/no (16).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_crossvalidate/Not-Licence-Plate/no (16).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_crossvalidate/Not-Licence-Plate/no (2).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_crossvalidate/Not-Licence-Plate/no (2).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_crossvalidate/Not-Licence-Plate/no (25).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_crossvalidate/Not-Licence-Plate/no (25).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_crossvalidate/Not-Licence-Plate/no (26).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_crossvalidate/Not-Licence-Plate/no (26).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_crossvalidate/Not-Licence-Plate/no (27).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_crossvalidate/Not-Licence-Plate/no (27).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_crossvalidate/Not-Licence-Plate/no (28).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_crossvalidate/Not-Licence-Plate/no (28).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_crossvalidate/Not-Licence-Plate/no (3).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_crossvalidate/Not-Licence-Plate/no (3).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_crossvalidate/Not-Licence-Plate/no (37).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_crossvalidate/Not-Licence-Plate/no (37).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_crossvalidate/Not-Licence-Plate/no (38).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_crossvalidate/Not-Licence-Plate/no (38).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_crossvalidate/Not-Licence-Plate/no (4).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_crossvalidate/Not-Licence-Plate/no (4).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_train/Licence-Plate/yes (31).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_train/Licence-Plate/yes (31).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_train/Licence-Plate/yes (32).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_train/Licence-Plate/yes (32).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_train/Licence-Plate/yes (33).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_train/Licence-Plate/yes (33).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_train/Not-Licence-Plate/no (5).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_train/Not-Licence-Plate/no (5).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_train/Not-Licence-Plate/no (6).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_train/Not-Licence-Plate/no (6).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_train/Not-Licence-Plate/no (7).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_train/Not-Licence-Plate/no (7).jpg -------------------------------------------------------------------------------- /DataSet/Data-Files/images_train/Not-Licence-Plate/no (8).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Data-Files/images_train/Not-Licence-Plate/no (8).jpg -------------------------------------------------------------------------------- /DataSet/Feature-Model/class_train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Feature-Model/class_train.csv -------------------------------------------------------------------------------- /DataSet/Feature-Model/feature_train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/Feature-Model/feature_train.csv -------------------------------------------------------------------------------- /DataSet/models/model_svm_rbf_0_0.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/models/model_svm_rbf_0_0.pickle -------------------------------------------------------------------------------- /DataSet/models/model_svm_rbf_0_1.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/models/model_svm_rbf_0_1.pickle -------------------------------------------------------------------------------- /DataSet/models/model_svm_rbf_0_10.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/models/model_svm_rbf_0_10.pickle -------------------------------------------------------------------------------- /DataSet/models/model_svm_rbf_100_0.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/models/model_svm_rbf_100_0.pickle -------------------------------------------------------------------------------- /DataSet/models/model_svm_rbf_100_1.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/models/model_svm_rbf_100_1.pickle -------------------------------------------------------------------------------- /DataSet/models/model_svm_rbf_100_10.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/models/model_svm_rbf_100_10.pickle -------------------------------------------------------------------------------- /DataSet/models/model_svm_rbf_10_0.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/models/model_svm_rbf_10_0.pickle -------------------------------------------------------------------------------- /DataSet/models/model_svm_rbf_10_1.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/models/model_svm_rbf_10_1.pickle -------------------------------------------------------------------------------- /DataSet/models/model_svm_rbf_10_10.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/models/model_svm_rbf_10_10.pickle -------------------------------------------------------------------------------- /DataSet/models/model_svm_rbf_1_0.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/models/model_svm_rbf_1_0.pickle -------------------------------------------------------------------------------- /DataSet/models/model_svm_rbf_1_1.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/models/model_svm_rbf_1_1.pickle -------------------------------------------------------------------------------- /DataSet/models/model_svm_rbf_1_10.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/DataSet/models/model_svm_rbf_1_10.pickle -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/README.md -------------------------------------------------------------------------------- /blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/blog.py -------------------------------------------------------------------------------- /config-local.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/config-local.conf -------------------------------------------------------------------------------- /gradient_calculation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/gradient_calculation.py -------------------------------------------------------------------------------- /hist_features_HOG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sardhendu/License-Plate-Detection/HEAD/hist_features_HOG.py --------------------------------------------------------------------------------