フィルターのクリア

How do I run the version of GrowCut in FileExchange in Matlab 2012a?

1 回表示 (過去 30 日間)
Antonio
Antonio 2013 年 1 月 5 日
I want to run this image segmentation program.
When attempting to run growcut_test I get the following error:
>> growcut_test
Subscript indices must either be real positive integers or logicals.
Error in growcut_test (line 7)
subplot(2,2,1), imshow(img);
This is line 7 and what is around it:
%-- Load image and seeds
img = imread('lotus.png');
labels = double(imread('labels.png'))-1;
subplot(2,2,1), imshow(img);
subplot(2,2,2), imshow(labels,[]);
subplot(2,2,3), imshow(img);
Any ideas?

採用された回答

Walter Roberson
Walter Roberson 2013 年 1 月 5 日
You appear to have a variable named "imshow" that is interfering with use of the Image Processing Toolbox routine imshow()

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by