Home > Software design >  Python - How to read .raw file?
Python - How to read .raw file?

Time:04-30

I have several .raw file but I am not able to open them on my computer (Mac OS) or in a Jupyter Notebook with Python. I tried to download the module rawpy with no success.

Do you have an idea of how I could open these files ? Thanks in advance for your time.

This is an example of my files :

enter image description here

CodePudding user response:

There's a module called rawpy freely available on PyPi. It seems to work with Nikon raw images (NEF) and may work with Panasonic RAW

CodePudding user response:

I suggest you to convert them to .csv file so you can open and process them easily. from this website you can convert them to csv. also take a look at this answer if you dont want to change file type. I hope you got your answer. ask it in comments if there is any followup question.

  • Related