How Can I resolve this problem in my following code?

1 回表示 (過去 30 日間)
Syed Zenith Rhyhan
Syed Zenith Rhyhan 2019 年 4 月 14 日
回答済み: Walter Roberson 2019 年 4 月 14 日
%Matlab Code
% % Step 7: Visualize the Segmentation
imshow(labeloverlay(I,BWfinal))
title('Mask Over Original Image')
BWoutline = bwperim(BWfinal);
Segout = I;
Segout(BWoutline) = 255;
figure
imshow(Segout)
title('Outlined Original Image')
title('Segmented Image');
%%Error Occured
Undefined function 'labeloverlay' for input arguments of type 'uint8'.
Error in practice (line 50)
imshow(labeloverlay(I,BWfinal))

採用された回答

Walter Roberson
Walter Roberson 2019 年 4 月 14 日
Upgrade to R2017b or newer.

その他の回答 (0 件)

製品


リリース

R2014a

Community Treasure Hunt

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

Start Hunting!

Translated by