Matrix Size of my images
2 ビュー (過去 30 日間)
古いコメントを表示
回答 (2 件)
Image Analyst
2012 年 9 月 12 日
[rows columns numberOfColorChannels] = size(yourImageArray); % Best way
For images, make sure you use the third output argument. Otherwise if it's a color image and you do
[rows columns] = size(yourImageArray); % unsafe way to do it.
then your columns will actually be columns multiplied by the number of color channels (3) in your image.
1 件のコメント
Jan
2012 年 9 月 12 日
@Esther: It is not surprising that the command size determines the size of arrays. I recommend to read the "Getting Started" chapters of the documentation to learn at first the basics and at second how to find related information in the docs.
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!