imbinarize...Undefined function
18 次查看(过去 30 天)
显示 更早的评论
By using MATLAB R2013a.
I am the beginners and forgive me if question is not narrated in well. The Matlab shows " Undefined function 'imbinarize' for input arguments of type 'uint8'" for the following [ imbinarize(I)]
I= imread('cameraman.tif');
>> imshow (I)
>> imbinarize(I)
Undefined function 'imbinarize' for input arguments of type 'uint8'.
Thanks for support
2 个评论
Prasanth
2017-10-10
编辑:Walter Roberson
2017-10-10
% Convert to BW
threshold = graythresh(I);
BW=im2bw(I,threshold);
采纳的回答
Jan
2016-11-6
You can search for "Matlab imbinarize" in the net to find out, that this function belongs to the Image Processing Toolbox. Use the ver command to find out, if you have it installed and a licence for it.
更多回答(1 个)
Image Analyst
2016-11-6
You must have an old release. imbinarize was introduced in R2016a. You can try graythresh() or imquantize().
Or, for an interactive GUI to let you visually set the threshold, see the thresholding app in my File Exchange: http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!