Clear Filters
Clear Filters

Problem loading proRAW (dng) file in matlab

7 views (last 30 days)
Dian Bonestroo
Dian Bonestroo on 29 May 2023
Answered: Vandit on 30 Jun 2023
I made some pictures in RAW mode on the Iphone 13 pro and now I want to load them in Matlab for further processing. The file is a 3d uint8 matrix, and I dont know how to convert it to a 2d matrix so that I can apply whitebalancing, blackleveling and other kalibrationsteps. Can someone help me with this problem?

Answers (1)

Vandit
Vandit on 30 Jun 2023
Hi,
You may refer to the below steps in order to load a RAW image in MATLAB and convert a 3D uint8 matrix into a 2D matrix :
  • Download and install 'dcraw' on your system which decodes the RAW file and convert into standard 'TIFF' and 'PPM' image formats.
  • Use 'imread' function to load the PPM file as a 3D matrix using the below command :
rawImage = imread('your_raw_image_file.ppm');
  • Convert the obtained 3D image into a 2D matrix by converting it to grayscale using 'rgb2gray' function.
grayImage = rgb2gray(rawImage);
After converting to a 2D matrix, you can proceed with white balancing, black leveling, and other calibration steps using the grayscale image.
To know more about 'imread' and 'rgb2gray' functions, you may refer to the link below :
Hope this helps.
Thankyou

Categories

Find more on Convert Image Type in Help Center and File Exchange

Products


Release

R2023a

Community Treasure Hunt

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

Start Hunting!