我试图找到图像中最大的对象,并删除图像中小于它的任何其他对象.
这就是我所拥有的,但我无法让它发挥作用.
l=bwlabel(BW);
%the area of all objects in the image is calculated
stat = regionprops(l,'Area','PixelIdxList');
[maxValue,index] = max([stat.Area]);
%remove any connected areas smaller than the biggest object
BW2=bwareaopen(BW,[maxValue,index],8);
subplot(5, 5, 4);
imshow(BW2, []);
Run Code Online (Sandbox Code Playgroud)
我正在使用这些数字乳房X线照片.我试图从乳房区域除去图像中的所有对象.
我有以下代码,每隔5秒调用一次web服务.此webs服务检查列表中是否有任何内容.
setTimeout(function () {
_getListItems();
}, 5000);
Run Code Online (Sandbox Code Playgroud)
但是,我不是每隔5秒检查一次,而是想在页面加载时检查它,之后每分钟检查一次.如果列表中找到了某些内容,请每隔5秒开始调用一次.谁能帮我这个?