我正在尝试使用以下源代码,
https://www.mathworks.com/matlabcentral/fileexchange/19084-region-growing
驱动程序
reg_maxdist = 0.2;
I = gray_imread('my_image.png');
imshow(I);
[x, y] = getpts;
J = regiongrowing(I,x,y,reg_maxdist);
imshow(J);
我面临以下问题,
regiongrowing
没有提供任何输出。