How to extract data from pdf file in matlab?
    137 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    azizullah khan
 el 19 de Sept. de 2014
  
    
    
    
    
    Comentada: Yue Zhao
 el 30 de Jun. de 2019
            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 comentarios
  José-Luis
      
 el 19 de Sept. de 2014
				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.
Respuesta aceptada
  Jan
      
      
 el 21 de Sept. de 2014
        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 comentarios
  Noam Greenboim
      
 el 25 de Mayo de 2015
				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
 el 30 de Jun. de 2019
				We will get a matrix if we use imread for a picture. How do we get the matrix of the PDF?
Más respuestas (2)
  Walter Roberson
      
      
 el 25 de Mayo de 2015
        Have you looked at http://www.mathworks.com/matlabcentral/answers/151092-how-to-read-pdf-file-in-matlab ?
0 comentarios
Ver también
Categorías
				Más información sobre Characters and Strings en Help Center y File Exchange.
			
	Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!






