Reading Raw image in matlab
24 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
is it possible to read image with .NEF extension to array in matlab?
0 commentaires
Réponses (1)
Ameer Hamza
le 10 Mar 2020
Modifié(e) : Ameer Hamza
le 11 Mar 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 commentaires
Voir également
Catégories
En savoir plus sur Image Data dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!