Read RAW camera images

Read RAW camera images from within Matlab, using DCRAW or LibRAW
2.5K descargas
Actualizado 18 Aug 2021

matlab-readraw

Read RAW camera images from within Matlab, using DCRAW

⚠️ This project has been moved to Gitlab at https://gitlab.com/astrophotography/matlab-readraw This Github repository will then be stalled.

Image of READRAW

The use of this class boils down to simply creating the object. Then, you may simply use the imread and imfinfo calls as usual, and RAW files will magically be handled.

Example:

In the following example, we just call readraw once, and then all is done with imread and imfinfo as you would do with other image formats.

readraw;
im   = imread('file.RAW');
exif = imfinfo('file.RAW'); 
...
delete(readraw);

NOTES:

NOTE: Each RAW file will be converted to a 16-bits TIFF one at the same location as the initial RAW file. This file is then read again by imread to actually get the image RGB channels. If you have created these files (which are each 146 Mb for 6x4k images), you may either remove them, or further access them without requiring conversion.

Supported RAW camera image formats include:

RAW File Format Description
CRW, CR2 Canon digital camera RAW file formats
NEF Nikon digital camera RAW file format
ORF Olympus digital camera RAW file format
RAF Fuji digital camera RAW file format
RWL Leica camera RAW file format
PEF, PTX Pentax digital camera RAW file format
X3F Sigma digital camera RAW file format
DCR, KDC, DC2, K25 Kodak digital camera RAW file format
SRF, ARW, MRW, MDC Sony/Minolta digital camera RAW file format
RAW Panasonic, Casio, Leica digital camera RAW file format
DNG (CS1, HDR) Adobe RAW file format (Digital Negative)
BAY Casio RAW (Bayer)
ERF Epson digital camera RAW file format
FFF Imacon/Hasselblad RAW format
MOS CREO Photo RAW
PXN Fotoman RAW
RDC Ricoh RAW format

If you wish to import the RAW files with specific DCRAW options, use the readraw class method 'imread' with options as 3rd argument e.g:

dc = readraw;
im = imread(dc, 'file.RAW', '-a -T -6 -n 100');

and if you wish to get also the output file name and some more information:

[im, info, output] = imread(dc, 'file.RAW', '-T -4 -t 0 -v');

Some useful DCRAW options are:

  • -T write a TIFF file, and copy metadata in
  • -w -T -6 -q 3 use camera white balance, and best interpolation AHD
  • -a -T -6 use auto white balance
  • -T -4 use raw data, without color scaling, nor white balance
  • -i -v print metadata
  • -z set the generated image date to that of the camera
  • -n 100 remove noise using wavelets
  • -w use white balance from camera or auto
  • -t 0 do not flip the image

The default DCRAW setting for the importation is '-T -4 -t 0 -v' to get the raw data.

Methods:

  • readraw class instantiation. No argument.
  • compile check for DCRAW availability or compile it
  • delete remove readraw references in imformats
  • imread read a RAW image using DCRAW. Allow more options
  • imfinfo read a RAW image metadata using DCRAW

Installation:

Copy the directory and navigate to it. Then type from the Matlab prompt:

addpath('path-to-readraw')
readraw;

READRAW can use any of the following installed tools:

  • libraw (with header/include files)
  • libraw binary tools (dcraw_emu, raw-identify, simple_dcraw, Win, Linux and MacOSX)
  • dcraw (see also Win build, Linux and Win - executable are provided inn this project)
  • exiv2 (Win, Linux and MacOSX))
  • metacam (Linux only)
  • exifprobe (Linux only)

which should be in the executable search path. These can be installed for Debian-like systems (Ubuntu, Mint, Debian...) with:

sudo apt install dcraw libraw-bin exiv2 metacam exifprobe libraw-dev
sudo ln -s /usr/lib/libraw/dcraw_emu /usr/local/bin
sudo ln -s /usr/lib/libraw/raw-identify /usr/local/bin

Packages LibRAW and EXIV2 also exist for Mac OSX. Refer to:

and make sure they are in the PATH.

To make use of the libraw direct reader (which is slightly faster than the others), you may have to compile the MeX file for your system by running:

cd path-to-readraw/private
buildMexunpackRaw

which makes use of the excellent contribution from E. Segre. You will need a valid C compiler, supported by Matlab. If this wrapper does not work, use compile(readraw,'dcraw') to use an other RAW reader solution.

If no RAW reader is found, and DCRAW is not yet installed on the computer, you will need a C compiler. The DCRAW C source file (provided with READRAW, private directory) will be built and used, if not there yet.

To force the use of a given RAW reader, use the compile method, e.g.

compile(readraw);               % checks for available readers
compile(readraw, 'compile');    % force compilation of e.g. unpackRaw and DCRAW
compile(readraw, 'dcraw_emu');  % use 'dcraw_emu' as reader

In the last command, it is possible to specify e.g. any of dcraw_emu, dcraw, simple_dcraw, unpackRaw, libraw. for use.

Credits:

License: (c) E. Farhi, GPL2 (2018). https://gitlab.com/astrophotography/matlab-readraw/

View Read RAW camera images on File Exchange

Citar como

Emmanuel Farhi (2024). Read RAW camera images (https://github.com/farhi/matlab-readraw/releases/tag/21.08), GitHub. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2012b
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Agradecimientos

Inspiración para: matlab-unpackRaw

Comunidades de usuarios

Community Treasure Hunt

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

Start Hunting!

No se pueden descargar versiones que utilicen la rama predeterminada de GitHub

Versión Publicado Notas de la versión
21.08

See release notes for this release on GitHub: https://github.com/farhi/matlab-readraw/releases/tag/21.08

21.02

See release notes for this release on GitHub: https://github.com/farhi/matlab-readraw/releases/tag/21.02

20.7.0.0

See release notes for this release on GitHub: https://github.com/farhi/matlab-readraw/releases/tag/20.07

18.913

Now distributed with precompiled executables for systems that fail to compile.

18.810

Properly read EXIF data even when TIFF file exists.

1.0.2.0

Updated Title

1.0.1.0

Updated Matlab Central Description

1.0.0.0

Para consultar o notificar algún problema sobre este complemento de GitHub, visite el repositorio de GitHub.
Para consultar o notificar algún problema sobre este complemento de GitHub, visite el repositorio de GitHub.