Reading Raw image in matlab
25 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
is it possible to read image with .NEF extension to array in matlab?
0 comentarios
Respuestas (1)
Ameer Hamza
el 10 de Mzo. de 2020
Editada: Ameer Hamza
el 11 de Mzo. de 2020
Yes, you can read .nef files in MATLAB.
If you simply run
img = imread('image.nef');
It will read a low-resolution image. To read the full resolution, first, download this file exchange package: https://www.mathworks.com/matlabcentral/fileexchange/66927-read-raw-camera-images and place it on the MATLAB path. Then you can run
dc = readraw;
img = imread('image.nef');
imshow(img);
0 comentarios
Ver también
Categorías
Más información sobre Image Data 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!