How to extract data from pdf file in matlab?

409 ビュー (過去 30 日間)
azizullah khan
azizullah khan 2014 年 9 月 19 日
コメント済み: Yue Zhao 2019 年 6 月 30 日
I am in search of such algorithm that will extract data from pdf file.For example in the pdf file a sentence is present i.e: Account# 29 . I want to extract 29 from pdf file.If it is possible by fopen() function ,please share it with me.I have tried pdftotext but doesn't succeed. Now if it is possible to extract data from pdf with the help of fopen(), it will be better.I also tried fopen() but leads to failure.Please share you experience with me..Thanks.
  6 件のコメント
José-Luis
José-Luis 2014 年 9 月 19 日
Yes, I have seen it and it doesn't work. In principle, it might work for trivial purposes like changing the font type, but I have no idea what kind of data you are trying to extract.
Writing a robust algorithm is a tall order.
azizullah khan
azizullah khan 2014 年 9 月 20 日
編集済み: azizullah khan 2014 年 9 月 20 日
Sir,Just give a clue that how it is possible: let suppose Pdf file contain:
Account# 345
i want to capture 345 from it..for example i can use regexp() to extract numbers only...Please help me...I have spend lots of my time on it..but doesn't succeed..Almost i have wasted a month for it....Thanks

サインインしてコメントする。

採用された回答

Jan
Jan 2014 年 9 月 21 日
Assume you have a PDF file, which is displayed containing the string "Account# 345". Now different details impede the extraction of this string:
  • The contents can be compressed and/or encrypted, such that the string cannot be found in clear text inside the file.
  • Even without encryption or compression, the text need not be stored continously, but in a valid PDF each character can be stored with its paper position, such that the order does not matter.
In consequence searching a string in a PDF is not reliable. Therefore some OCR software is applied frequently to add an additional layer containing the contents as searchable strings. But as long as you do not specify any details of your PDF we cannot guess if they contain such strings.
Please notice, that your problem is not well defined and suggesting solutions is still based on guessing, although you've posted several corresponding questions in this forum. Finally the main problem is, that somebody decided to store data in PDF files, which is not sufficient for the later extraction of strings. Creating a large and complicatd workaround afterwards is an inefficient way. It would be more stable and faster to obtain the data in a more suitable format as a text file.
  5 件のコメント
Noam Greenboim
Noam Greenboim 2015 年 5 月 25 日
A possible workaround is to convert the PDF to an Excel file, and then import that XLS file to Matlab. This is a relatively good solution for PDF's that contain tables of data.
If you take a look first at the Excel file, you might find ideas how to access the data you're interested in.
Yue Zhao
Yue Zhao 2019 年 6 月 30 日
We will get a matrix if we use imread for a picture. How do we get the matrix of the PDF?

サインインしてコメントする。

その他の回答 (2 件)

mizuki
mizuki 2018 年 4 月 25 日
From R2017b, we have extractFileText for reading text data from PDF files.

Walter Roberson
Walter Roberson 2015 年 5 月 25 日

カテゴリ

Help Center および File ExchangeData Import and Export についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by