- .bmp - limit 32767 x 32767
- .gif - limit 65535 x 65535
- .jpg - limit 65535 x 65535
- .png - limit 1073741823 x 1073741823
- .tiff - limit 65535 x 65535 (maximum 4 Gigabytes per image)
How can I read an image of size 2048*2048 pixels using Matlab 2013 by the "imread()" command ?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ali Al-Janabi
el 12 de Sept. de 2024
Comentada: Ali Al-Janabi
el 13 de Sept. de 2024
Please, how can I read an image of size 2048*2048 pixels using Matlab 2013 by the "imread()" command ? thank you.
0 comentarios
Respuesta aceptada
Walter Roberson
el 12 de Sept. de 2024
You just imread() the file.
Más respuestas (1)
Shashi Kiran
el 12 de Sept. de 2024
To read an image of size 2048x2048 pixels using MATLAB R2013a, imread() function can be used. Here is how you can accomplish this.
img = imread('test.jpg'); % Change test.jpg with your file name
imshow(img);
% Check the size of the image
imageSize = size(img);
disp(['Image size: ', num2str(imageSize)]);
- Ensure that the image file is located in your current working directory or specify its full path.
Refer to the following documentation for more details about the function:
- imread (MATLAB R2024b): https://www.mathworks.com/help/matlab/ref/imread.html
- Use command "doc imread" in the command window of R2013a for the documentation of that release.
Ver también
Categorías
Más información sobre Image Preview and Device Configuration en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!