I am building a generic text parsing algorithm for images. I was running:
MSER.detectRegions()
vs
findContours(...cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
on a binary image. The results where the same. I know MSER can be done on gray-scale but I wanted to go safer.
I need to select one of them and the findContours()
takes less then half the run time MSER
does.
Am I missing something? What would you pick?