ignitedindian
i am working on a video processing project.
a video cam captures all the vehicles in road.
i have to identify speeding vehicles and get their number from number plate.
which platform is good? how do i start??
I have successfully connected my webcam in matlab. is that the way to go?? what next???
MATLAB is my development tool of choice for technical development (and it would be ideal for this project), but if you are more comfortable with something else, then I suggest using that instead.
Your basic next steps are:
1. Isolate the license plate within the image
2. Prepare the isolated image (improve contrast, clean noise, etc.)
3. Isolate individual glyphs ("characters")
4. Extract relevant features for each glyph
5. Recognize each glyph in turn
The first 3 items are image processing functions, while the last 2 are machine learning tasks, and will require some sort of classifier (linear discriminant, neural network, etc.).
-Will Dwinnell
<a href="https://matlabdatamining.blogspot.com/" target="_blank" rel="nofollow noopener noreferrer">Data Mining in MATLAB</a>