how to determine the rows and columns of an image ?
Afficher commentaires plus anciens
after imread('car.jpg'); how to determine the matrix of this image? and how to determine the number of rows and columns of this input image?
how to use the following command to determine rows and columns: [rows columns]=size(array2D);
Réponse acceptée
Plus de réponses (1)
Talha Zubair
le 28 Jan 2021
0 votes
ImageData=imread('car.jpg');
[rows columns depth]=size(ImageData );
Catégories
En savoir plus sur Images dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!