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

采纳的回答

Matt J
Matt J 2013-4-1
[maxcol, maxrow] = size(YourImage);
  2 个评论
Walter Roberson
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.

请先登录,再进行评论。

更多回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by