IMAGE MANIPULATON USING NESTED FUNCTION
2 ビュー (過去 30 日間)
古いコメントを表示
I am writing a code for image manipulation and need to know how to set MAXCOL AND MAXROW by using size() function. Thanks I am new to matlab if my question seems premature
0 件のコメント
採用された回答
Matt J
2013 年 4 月 1 日
[maxcol, maxrow] = size(YourImage);
2 件のコメント
Walter Roberson
2013 年 4 月 1 日
Better yet,
[maxcol, maxrow, maxpane] = size(YourImage);
If your image is RGB then the two-output version will give you the wrong result for maxrow.
Image Analyst
2013 年 4 月 1 日
As discussed in Steve Eddins's blog: http://blogs.mathworks.com/steve/2011/03/22/too-much-information-about-the-size-function/
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!