How do I perform Localization of Number Plate in matlab?

4 views (last 30 days)
Number Plate Localization is an image processing technology used to 'read‘ or ‘identify’ vehicle number plates.
The main function of the module is to find out the potential regions within the image that may contain the license plate from the input image of car or any vehicle.

Accepted Answer

Image Analyst
Image Analyst on 19 Mar 2014
It's been done before. See numerous papers on it here: http://iris.usc.edu/Vision-Notes/bibliography/motion-f726.html#License%20Plate%20Recognition,%20Extraction,%20Analysis Pick one and code it up.
  1 Comment
Image Analyst
Image Analyst on 20 Mar 2014
Regarding your "Answer" below. I don't do LPR but if that's what one of the papers suggested, then I guess it's okay. For dilation use imdilate(). For edge processing, use imgradent() or imgradientxy(). For segmention and extraction, use thresholding and bwconncomp() and regionprops(). All I have for you is the general purpose demo in my file exchange, BlobsDemo. I don't have any LPR code or OCR code for you. Good luck.

Sign in to comment.

More Answers (2)

Shraddha
Shraddha on 20 Mar 2014
The Block diagram of my project is attached here, please give me idea related that flow.i have done first step as color to gray conversion.

Shraddha
Shraddha on 25 Mar 2014
my code is up to this, but i can not get the proper result as only license plate by image processing. please give me idea to improve my code.what i should do to extract region of license plate.
  1 Comment
Image Analyst
Image Analyst on 25 Mar 2014
Don't use sum as the name of a variable because you destroyed the built in function. Other than that, I just glanced at it and don't have time now to do more.

Sign in to comment.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!