Reading Raw image in matlab

is it possible to read image with .NEF extension to array in matlab?

回答 (1 件)

Ameer Hamza
Ameer Hamza 2020 年 3 月 10 日
編集済み: Ameer Hamza 2020 年 3 月 11 日

0 投票

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);

カテゴリ

ヘルプ センター および File ExchangeConvert Image Type についてさらに検索

製品

質問済み:

2020 年 3 月 10 日

編集済み:

2020 年 3 月 11 日

Community Treasure Hunt

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

Start Hunting!

Translated by