An Effective Method for the Recognition and Verification of Bangladeshi Vehicle Digital Number Plates.
This project is an image processing pipeline that performs various operations on input images. It includes steps for image rotation, feature extraction, and character segmentation. The pipeline aims to enhance and analyze images, making it suitable for tasks such as text recognition, image enhancement, and more. With a clear folder structure and usage instructions, it offers a convenient way to process images for various applications.
Project Folder should have this basic needs to execute
- Python
- OpenCV
- NumPy
- scikit-image
First Open a Python Project in Pycharm. Then install this package one by one. Wait for some time until all package are installed successfully.
pip install opencv-python
pip install numpy
pip install scikit-image
Explain how to use your code step by step. Include code examples and provide clear instructions for running the code. You can use markdown code blocks for code snippets:
# Step 1: Rotation
python Step_1_Rotation.py
# Step 2: Extraction
python Step_2_Extraction.py
# Step 3: Character Segmentation
python Step_3_Character Segmentation.py
- [Optional] If you added new image in "Input Image" Folder. Then Change it location in "Step_1_Rotation.py"
# Change File Location Here
filename = './Input Image/Image2.png'
Step - 3 : "Step_1_Rotation.py" will all rotation process and save those images in "Step_1_Rotation_Result" Folder
- Checkout the folder to see the results after doing rotation process
- All extraction process executes and save those images in "Step_2_Extraction_Result" Folder
- Checkout the folder to see the results after doing extraction process
- All segmentation process executes and save those images in "Step_3_CharacterSegmentation_Result" Folder
- Checkout the folder to see the results after doing segmentation process
Input Image/
: Folder containing input images.Step_1_Rotation_Result/
: Folder for saving intermediate images in Step 3.Step_2_Extraction_Result/
: Folder for saving intermediate images in Step 4.Step_3_CharacterSegmentation_Result/
: Folder for saving intermediate images in Step 5.