how to fix the error "Undefined function or variable 'superpixels'." ?
4 views (last 30 days)
Show older comments
Hey, while doing some code for image segmentation i got stuck at an error saying "Undefined function or variable 'superpixels'".
A = imread('MobL.png'); [L,N] = superpixels(A,500); figure BW = boundarymask(L); imshow(imoverlay(A,BW,'cyan'),'InitialMagnification',67)
This is the code i had used. Please help me to rectify the error.
0 Comments
Answers (2)
Alexandra Harkai
on 6 Mar 2017
This error is very self-explanatory: superpixels is not a variable that is defined for the scope, nor it is a function name that is on the MATALB search path.
To fix, find out where it should have been defined before using it. If it should be a variable, assign values to it. If it should be a function, make sure there exists a function on the MATLAB search path.
See Also
Categories
Find more on Deep Learning Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!