how to determine the rows and columns of an image ?

36 次查看(过去 30 天)
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);

采纳的回答

ES
ES 2013-10-17
save your imread data in some variable.
ImageData=imread('car.jpg');
ImageData will be a 3 D array for Colour Image with R, G, B Amplitude Values.
You can do a
[rows columns depth]=size(ImageData );
on it.

更多回答(1 个)

Talha Zubair
Talha Zubair 2021-1-28
ImageData=imread('car.jpg');
[rows columns depth]=size(ImageData );

类别

Help CenterFile Exchange 中查找有关 Images 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by