User`s guide
R2011b
8-4
Functionality What Happens
When You Use This
Functionality?
Use This Instead Compatibility
Considerations
edge function —
marr-hildreth syntax
Errors edge(I,
'marr-hildreth',
...)
The syntax
edge(I,'marr-
hildreth',...)
has been
removed. Use the
edge(I,'log',...)
syntax instead.
imfeature Errors regionprops imfeature has
been removed. Use
regionprops instead.
immovie —
immovie(D,size)
Errors immovie(X,map) immovie(D,size)
is an obsolete syntax
and is no longer
supported. Use
immovie(X,map)
instead.
imrotate function
— [R,G,B] output
syntax
Errors RGB2 =
imrotate(RGB1)
The syntax
[R,G,B] =
imrotate(RGB) has
been removed. Use
the
RGB2 =
imrotate(RGB1)
syntax instead.
imrotate — no
output argument
syntax
Starting in R2011b,
no output argument
syntax returns result
in ans.
Call imshow to
display the output of
imrotate
Replacement is
to call imshow to
display the output of
imrotate, like this:
B =
imrotate(A,30);
imshow(B)