Reading Raw image in matlab
이전 댓글 표시
is it possible to read image with .NEF extension to array in matlab?
답변 (1개)
Ameer Hamza
2020년 3월 10일
편집: Ameer Hamza
2020년 3월 11일
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 Exchange에서 Image Data에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!