I try to find objects on image by MSER-detection from OpenCV. But function cvExtractMSER return not contours, but set of points (CvSeq), that create figure:
(1, 4), (2, 3), (2, 4), (3, 2), (3, 3), (3, 4), (4, 1), (4, 2), (4, 3), (4, 4), ...

But I needs only points of contour:
(1, 4), (8, 4), (8, 1), (4, 1)

How I can find this contour?
I think, that simplest (but not fastest) way is:
- draw b/w image with all points (how? point-by-point?)
- use
findContoursfor find contours on new image