MATLAB: Undefined function ‘offsetstrel’ for input arguments of type ‘char’.

errorimdilateMATLABoffsetstrel

I'm getting the following error when I try to run the following code. How can i fix it??
Undefined function 'offsetstrel' for input arguments of type 'char'.
se = offsetstrel('ball',11,90);
BW1 = imdilate(binaryImage,se);
imshow(BW1);

Best Answer

the toolbox is installed but i don't know why it still giving that error. ¹
You may have a corrupted path.
Run these from your Command Window or a script:
restoredefaultpath
rehash toolboxcache
Then try again. (You may have to close and restart MATLAB after this as well.)
If that fails to correct the problem, use the Contact Us link in the top right corner of this page, and request Tech Support. (Run the ver command first, since you will need that output.)
Related Question