gpt4 book ai didi

algorithm - 无法在 MATLAB 中分隔标记

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:40:07 26 4
gpt4 key购买 nike

我的图像上到处都是白点。现在,我想根据某些坐标和检查在每个点上放置一个标记。现在我的问题是,我不想在占用超过一个像素的一个特定“ Blob ”白点上聚集太多标记。我的解决方法是检查我以前的标记位置和我当前的标记位置是否在附近。然而,这会导致许多独立的白色 Blob 由于距离太近而被遗漏,即使它不一定只是一个 Blob 。

这是我当前的代码:

a = find(overlap == 1); %overlap is a 1040 by 1392 binary matrix
prev_coord = [1 1];

for i=1:size(a)
c = mod(a(i), 1040);
r = floor(a(i)/1040);
X = [prev_coord; r c];
if(pdist(X, 'euclidean') > prox)
if(img(r, c) > 1)
gray = insertMarker(gray, [r c], 'x', 'color', 'red', 'size', 15);
else
gray = insertMarker(gray, [r c], 'x', 'color', 'white', 'size', 15);
end
end
prev_coord = [r c];
end

prox 等于一个非常小的数字,比如 50,我的图像看起来像这样: enter image description here

但是,当 prox 是一个像 120 这样的大数时,它看起来像这样: enter image description here

关于如何解决这个问题有什么想法吗?

最佳答案

您可以使用 morphological operations 来做到这一点:

A = round(overlap./max(overlap(:))) % turn original image into binary image.
A = imfill(A,'holes'); % fill holes in blobs
A = bwmorph(A,'shrink',Inf) % reduce each blob to a single point

然后您可以在 A==1 的每个像素上放置一个标记。

关于algorithm - 无法在 MATLAB 中分隔标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44223291/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com