Going through this paper on Robust text detection which talks about using MSER (Maximally stable external regions) to locate regions in an image as it is typically more robust than the usual contour-finding connected component analysis we'd been doing so far.
The MSER is mentioned in section 2.1 of the text-detection paper (in case you actually checked it out :D) from where I can't figure out how to apply/implement this in OpenCV. The documentation doesn't have any examples so its a bit hard to actually get any code running.
Has anyone tried this before?
The code from an implementation is there however there's some color conversions and stuff that's slightly confusing. Could someone help me figure out what exactly is done in MSER and how to put that in terms of OpenCV? Thanks in advance.
EDIT: Found a MATLAB implementation here.