about the inbuild image in matlab
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
KISHORE KUMAR M
el 16 de Jun. de 2020
Respondida: Rik
el 16 de Jun. de 2020
1) can you say any inbuild 256*256 image in matlab?
2) how can i check whether that image is 256*256 via matlab code ?
0 comentarios
Respuesta aceptada
Rik
el 16 de Jun. de 2020
The default image that is built in to the image function is 64*64. Other example images (like cameraman.tif) are 256*256.
You can check the image size just like every other array:
if size(IM,1)==256 && size(IM,2)==256
disp('256*256 image')
end
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Image Segmentation and Analysis en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!