I'm trying to parse the results page from a dicom study. I've tried with pydicom but it only parses the "header" info (patient info, device info, etc.). I'd like to extract the numeric results from the study in text format. In the following example:
I'd like to get a text with these lines:
R EIA 1.13m/s 53 0.14m/s 53
R CFA 0.69m/s 53 0.11m/s 53
etc...
Is there any way to parse this data in Python or any other language to text, with some degree of accuracy? I've tried grabbing PixelData with pydicom, dump it to TIFF format and then performing OCR. The results are quite good, but all the 6's and the 3's are confused by 8's.
Thanks!
M