Identify and remove text from graph
조회 수: 20 (최근 30일)
이전 댓글 표시
I'm in the process of designing a semi-automatic graph digitizer that can convert screenshots of a graph into a CSV file with the data.
I'm running into an issue when certain graphs contain characters and text boxes in the graph space, as in the example images below:


After removing the gridlines and producing a binary image "curve" (that's supposed to contain just the curve), my current code uses
[y, x] = find(curve)
to determine the x and y position of points on the curve. However, if there is any text on the graph, the code thinks it's part of the data curve and finds points in its location. As in the above examples, the code "finds" datapoints where the 'Conditions' and '3C96' text is located.
My question is: Is there any way to automatically detect and mask over this text, perhaps using OCR? Or is automating it a lost cause, and I should instead manually crop out any text initially?
댓글 수: 0
채택된 답변
Image Analyst
2021년 7월 23일
편집: Image Analyst
2021년 7월 23일
If the graphs are digital images, you can simply use bwareafilt() in the Image Processing Toolbox to take either the largest blob, or blobs within a certain size range. You might need to add some code options to handle cases where grid lines can be solid or dashed, whether text is in boxes or not, or whether you want the gridlines to remain in the output image or not.
By the way, there are File Exchange entries already:
댓글 수: 2
Image Analyst
2021년 7월 28일
If you have a consistent type of graph you're dealing with then it's possible to do it automatically. If however the graphs are wildly different, then developing an automatic solution may be more trouble than it's worth and it's best just to have user-assisted processing.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Convert Image Type에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!