Filter löschen
Filter löschen

How can I read a 3 D 256*256*256 image file(.mat extension) ?

2 Ansichten (letzte 30 Tage)
Shamsed Mahmud
Shamsed Mahmud am 26 Mär. 2016
Verschoben: Image Analyst am 14 Jun. 2023
imread('brain.mat')
output
Error using imread (line 362)
Unable to determine the file format.

Antworten (4)

Image Analyst
Image Analyst am 26 Mär. 2016
Use load(), not imread().

Azzi Abdelmalek
Azzi Abdelmalek am 26 Mär. 2016
To read a mat file, use load function
im=load('brain')

Muhammad Usman Saleem
Muhammad Usman Saleem am 26 Mär. 2016
do not read .mat file with imread function.
Please give imread(brain.tif) or any other
format of image( like gpeg, jpg,geotif,tiff etc). Imread function do not read .mat file

mohd akmal masud
mohd akmal masud am 14 Jun. 2023
Verschoben: Image Analyst am 14 Jun. 2023
load ('brain.mat');
instead of
imread('brain.mat');

Kategorien

Mehr zu Convert Image Type finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by