IMAGE MANIPULATON USING NESTED FUNCTION

1 Ansicht (letzte 30 Tage)
TRAVIS
TRAVIS am 1 Apr. 2013
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

Akzeptierte Antwort

Matt J
Matt J am 1 Apr. 2013
[maxcol, maxrow] = size(YourImage);
  2 Kommentare
Walter Roberson
Walter Roberson am 1 Apr. 2013
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.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by