91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Matlab空心散點檢測的示例分析

發布時間:2022-03-03 13:51:17 來源:億速云 閱讀:156 作者:小新 欄目:開發技術

這篇文章主要介紹Matlab空心散點檢測的示例分析,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

問題描述

有一張這樣的圖片,如何提取里面的紅色圈圈坐標,并且連接這些坐標形成兩個封閉的環路?

Matlab空心散點檢測的示例分析

過程展示

圖像導入

oriPic=imread('test1.png');

subplot(2,2,1)
imshow(oriPic)

依據RGB值圖像二值化

原理就是圖中顏色種類比較少,只有紅黑白,而紅色和白色都是R通道數值較大,因此我們可以利用這一點進行圖像分割

% 刪除紅色外的部分并構造二值圖
grayPic=rgb2gray(oriPic);
grayPic(oriPic(:,:,1)<250)=255;
grayPic(grayPic<250)=0;

%subplot(2,2,2)
figure
imshow(grayPic)

Matlab空心散點檢測的示例分析

圖像腐蝕

對于白色來說是腐蝕,對于黑色來說是膨脹,這一步是為了讓那些有缺口的小圓圈將缺口補起來

% 圖像膨脹,使未連接邊緣連接
SE=[0 1 0;1 1 1;0 1 0];
bwPic=imerode(grayPic,SE);

figure
imshow(bwPic)

Matlab空心散點檢測的示例分析

圖像邊緣清理

就是把和邊緣連接的不被黑色包圍的區域變成黑色:

% 邊緣清理:保留圓圈聯通區域
bwPic=imclearborder(bwPic);
%subplot(2,2,3)
figure
imshow(bwPic)

Matlab空心散點檢測的示例分析

聯通區域查找與坐標均值計算

現在每一個白點都是一個坐標區域,我們檢測所有聯通區域并計算各個區域的重心即可:

% 獲取每一個聯通區域
[LPic,labelNum]=bwlabel(bwPic);

% 計算每一個聯通區域 坐標均值
pointSet=zeros(labelNum,2);
for i=1:labelNum
    [X,Y]=find(LPic==i);
    Xmean=mean(X);
    Ymean=mean(Y);
    pointSet(i,:)=[Xmean,Ymean];
end

% 畫個圖展示一下
%subplot(2,2,4)
figure
imshow(bwPic)
hold on
scatter(pointSet(:,2),pointSet(:,1),'r','LineWidth',1)

可以看出定位結果還是非常準確的:

Matlab空心散點檢測的示例分析

圈查找

就以一個點開始不斷找最近的點唄,沒啥好說的:

n=1;
while ~isempty(pointSet)
    circleSetInd=1;
    for j=1:length(pointSet)
        disSet=sqrt(sum((pointSet-pointSet(circleSetInd(end),:)).^2,2));
        [~,ind]=sort(disSet);
        ind=ind(1:5);
        [~,~,t_ind]=intersect(circleSetInd,ind);
        ind(t_ind)=[];
        if ~isempty(ind)
            circleSetInd=[circleSetInd;ind(1)];
        else
            circleSet{n}=pointSet(circleSetInd,:);
            pointSet(circleSetInd,:)=[];
            n=n+1;
            break
        end
    end
end

figure
imshow(oriPic)
hold on
for i=1:n-1
plot(circleSet{i}(:,2),circleSet{i}(:,1),'LineWidth',2)
end

這效果就很美滋滋:

Matlab空心散點檢測的示例分析

完整代碼

function redPnt
oriPic=imread('test1.png');
%subplot(2,2,1)
figure
imshow(oriPic)

% 刪除紅色外的部分并構造二值圖
grayPic=rgb2gray(oriPic);
grayPic(oriPic(:,:,1)<250)=255;
grayPic(grayPic<250)=0;
%subplot(2,2,2)
figure
imshow(grayPic)

% 圖像膨脹,使未連接邊緣連接
SE=[0 1 0;1 1 1;0 1 0];
bwPic=imerode(grayPic,SE);
figure
imshow(bwPic)

% 邊緣清理:保留圓圈聯通區域
bwPic=imclearborder(bwPic);
%subplot(2,2,3)
figure
imshow(bwPic)

% 獲取每一個聯通區域
[LPic,labelNum]=bwlabel(bwPic);

% 計算每一個聯通區域 坐標均值
pointSet=zeros(labelNum,2);
for i=1:labelNum
    [X,Y]=find(LPic==i);
    Xmean=mean(X);
    Ymean=mean(Y);
    pointSet(i,:)=[Xmean,Ymean];
end


%subplot(2,2,4)
figure
imshow(bwPic)
hold on
scatter(pointSet(:,2),pointSet(:,1),'r','LineWidth',1)

n=1;
while ~isempty(pointSet)
    circleSetInd=1;
    for j=1:length(pointSet)
        disSet=sqrt(sum((pointSet-pointSet(circleSetInd(end),:)).^2,2));
        [~,ind]=sort(disSet);
        ind=ind(1:5);
        [~,~,t_ind]=intersect(circleSetInd,ind);
        ind(t_ind)=[];
        if ~isempty(ind)
            circleSetInd=[circleSetInd;ind(1)];
        else
            circleSet{n}=pointSet(circleSetInd,:);
            pointSet(circleSetInd,:)=[];
            n=n+1;
            break
        end
    end
end

figure
imshow(oriPic)
hold on
for i=1:n-1
plot(circleSet{i}(:,2),circleSet{i}(:,1),'LineWidth',2)
end

end

其它形狀空心散點檢測

來波正方形試試:

Matlab空心散點檢測的示例分析

Matlab空心散點檢測的示例分析

Matlab空心散點檢測的示例分析

Matlab空心散點檢測的示例分析

Matlab空心散點檢測的示例分析

Matlab空心散點檢測的示例分析

可以看出效果還是很棒的,當然大家可以根據實際情況自行更改圖像腐蝕模板形狀,如果散點是其它顏色請自行更改第一步的圖像分割條件。

后注:

若是因為點較為密集而導致圈形路徑內部白色區域沒被清除,可能會將內部區域也算作散點造成錯誤,解決方法是計算每個聯通區域面積并剔除遠遠大于區域面積中位數的聯通區域:

問題出現原因的圖片描述:

Matlab空心散點檢測的示例分析

Matlab空心散點檢測的示例分析

如圖所示種間那一大片區域也被算作散點

Matlab空心散點檢測的示例分析

更改后代碼如下:

function redPnt
oriPic=imread('test2.png');
figure
imshow(oriPic)

% 刪除紅色外的部分并構造二值圖
grayPic=rgb2gray(oriPic);
grayPic(oriPic(:,:,1)<250)=255;
grayPic(grayPic<250)=0;
figure
imshow(grayPic)

% 圖像膨脹,使未連接邊緣連接
SE=[0 1 0;1 1 1;0 1 0];
bwPic=imerode(grayPic,SE);
figure
imshow(bwPic)

% 邊緣清理:保留圓圈聯通區域
bwPic=imclearborder(bwPic);
figure
imshow(bwPic)

% 獲取每一個聯通區域
[LPic,labelNum]=bwlabel(bwPic);

% 篩掉超大區域
pointSizeSet=zeros(1,labelNum);
for i=1:labelNum
    pointSizeSet(i)=sum(sum(LPic==i));
end
[~,ind]=find(pointSizeSet>10*median(pointSizeSet));

% 計算每一個聯通區域 坐標均值
pointSet=zeros(labelNum,2);
for i=1:labelNum
    [X,Y]=find(LPic==i);
    Xmean=mean(X);
    Ymean=mean(Y);
    pointSet(i,:)=[Xmean,Ymean];
end
pointSet(ind,:)=[];


figure
imshow(bwPic)
hold on
scatter(pointSet(:,2),pointSet(:,1),'r','LineWidth',1)

n=1;
while ~isempty(pointSet)
    circleSetInd=1;
    for j=1:length(pointSet)
        disSet=sqrt(sum((pointSet-pointSet(circleSetInd(end),:)).^2,2));
        [~,ind]=sort(disSet);
        ind=ind(1:min(5,length(ind)));
        [~,~,t_ind]=intersect(circleSetInd,ind);
        ind(t_ind)=[];
        if ~isempty(ind)
            circleSetInd=[circleSetInd;ind(1)];
        else
            circleSet{n}=pointSet(circleSetInd,:);
            pointSet(circleSetInd,:)=[];
            n=n+1;
            break
        end
    end
end

figure
imshow(oriPic)
hold on
for i=1:n-1
plot(circleSet{i}(:,2),circleSet{i}(:,1),'LineWidth',2)
end

end

注:

2016版本及以前可能這句:

disSet=sqrt(sum((pointSet-pointSet(circleSetInd(end),:)).^2,2));

會出現數組大小不匹配問題,可以將其改為:

tempMat=repmat(pointSet(circleSetInd(end),:),[size(pointSet,1),1]);
disSet=sqrt(sum((pointSet-tempMat).^2,2));

以上是“Matlab空心散點檢測的示例分析”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

抚松县| 义马市| 大港区| 宜城市| 北票市| 中牟县| 聊城市| 安西县| 紫云| 鄄城县| 海阳市| 枝江市| 江都市| 海城市| 定日县| 乐昌市| 冀州市| 兰州市| 永寿县| 临清市| 玉山县| 新蔡县| 邻水| 越西县| 永宁县| 门头沟区| 卢湾区| 延津县| 邵武市| 盱眙县| 北票市| 英吉沙县| 萨嘎县| 贵州省| 南通市| 佳木斯市| 黑山县| 扶绥县| 诏安县| 贵阳市| 政和县|