Find lower border of objest using Brightness Histogram
I found some article about car plates recognition, where author used Brightness histogram to find lower border of a car plate:
Could you give me some links to examples, to perform this operation in OpenCV C++? Thank you.
IMHO you should do some kind of projection on Y axis (like sum all the pixels values on each row) and then you may have some similar thing. But your plate shall be as horizontal as possible, otherwise you'll get something similar to the top border of the object and then you'll not be able to extract it, I have tried it...
here you can find a sample code