vote up 1 vote down star
1

This isn't really OCR, since it's not recognizing characters, but it's the same idea. Anyone know of an image-processing library or established algorithm for retrieving the values from a (raster) plot image? For instance, in this graph, it's hard for me to read exact values with my eyes because there's such gaps between gridlines:

alt text

I can use a straight edge or whatever, but it's still going to be error-prone. It would be great if there were software that could just take a screenshot of any old graph and automatically convert it into a table of values or a function that could be queried.

Seems to be called "curve recognition"?

And it's ok to have some human guidance. There's no reason an OCR couldn't read the "100" and match it up with the line, for instance, but it's ok to have a human give the lines numerical values after the machine has extracted the curve's path relative to the gridlines. I'm mostly interested in the part that traces the curve relative to the grid.

flag

3 Answers

vote up 2 vote down

google for "curve recognition software" suggests http://www.curveunscan.com/

link|flag
Hmmm... It says "curve recognition algorithm", but also talks about picking the points by hand: curveunscan.com/features.htm – endolith Nov 3 at 1:27
It kind of works, but requires a lot of hand-picking of points, tracks curves poorly, and crashes often. :/ – endolith Nov 5 at 0:35
vote up 1 vote down

I don't know of any software that does what you're asking, but if you can get just a few points you can use some kind of regression to find the best function that fits those points. This particular graph looks like an exponential function. So you'd want to find an exponential regression calculator.

link|flag
vote up 2 vote down

This is extremely hard and error-prone. (We do this sort of thing a lot in chemistry where we try to analyze chemistry.) It depends critically on various parameters and conditions.

  1. Is the image a bit-map (pixels-only) or vectors (EMF, WMF, SVG, PS, PDF...)? Vectors are vastly better than pixels. We tackle vectors (including PDF) but don't touch pixels. Some of our collbaorators will try to use pixels but only on fairly recent documents.
  2. If you are stuck with pixels then are your images all from the same source? If so you have a small chance of extracting font information. I am afraid your image is so poor that it would require a great deal of work. However if you can work out the font you have a chance of extracting text and numbers if all docs are from the same source. You could use heuristics (rules such as where the numbers might be) or machine-learning (a list of features on whioch the methods can be trained).
  3. Your image appears to have been scanned (as the axes are pixelated). That makes it even worse. What appears a straight line to the eye is horrible for a machine. Is your image skewed on the page? You may have to deskew it.
  4. If you have a model for the lines and curves then you may have a change of modelling expected parameters into the image. But it's not trivial.

I'm sorry to be pessimistic. If you really want the info then it can be done with a lot of investment or collaboration with groups which do this sort of thing.

link|flag
I don't think it's as hard as you imagine it to be. What specific experience do you have with this? I don't understand what scraping graphs has to do with "analyzing chemistry". – endolith Nov 1 at 22:11
And yes, I mean rasterized graphs, not vector images. – endolith Nov 1 at 22:12
@endolith the graph above could well appear in a chemistry paper. We have analysed (and published in peer-reviwed journals) on how to extract information from scientific papers. These happen to be mainly in chemistry but they contain graphs that show all the aspects of this problem. You "don't think it's as hard as I imagine". If you have actually managed to write software than can extract information (without human help) from the picture shown then you will amaze a lot of people. – peter.murray.rust Nov 1 at 22:16
@endolith even OCR on the characters in your graph (let alone the lines) will give rise to considerable errors. If you don't believe this, get an OCR program and try. – peter.murray.rust Nov 1 at 22:20
*There's no reason an OCR couldn't read the "100" * The quality of these glyphs is so poor that you will almost certainly get thinks like "lOO" (el-oh-oh, not one-zero-zero). Indeed the pixels bleed from one glyph to another so I doubt you would even get this. Remember the OCR has not been trained on this graph. It is, of course, possible to create software that allows manual annotation on an overlay of the graph but I assumed you wanted something more automatic. – peter.murray.rust Nov 1 at 22:46
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.