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개)

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

제품


릴리스

R2014a

Community Treasure Hunt

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

Start Hunting!

Translated by