A quick attempt with Mathematica 8 produced this solution. It would be easy to play around some details.
Create a binary mask of the black ink, and then remove the small components (the digits):
binary = Binarize[img, .5];
bclean = ColorNegate[DeleteSmallComponents[ColorNegate[binary]]];

Now compute the connected components and remove the background component:
comp = DeleteBorderComponents[MorphologicalComponents[bclean]];
I assessed the result visually, using the command Colorize[comp].

From there on, the command ComponentMeasurements would get you to further analysis of the blobs you are interested in (cf. http://reference.wolfram.com/mathematica/ref/ComponentMeasurements.html).