最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

【聚類分割】基于 K-means 聚類算法實(shí)現(xiàn)圖像區(qū)域分割附matlab代碼

2022-06-04 00:08 作者:Matlab工程師  | 我要投稿

1 簡介

對圖像進(jìn)行顏色區(qū)域分割.將圖像轉(zhuǎn)換到CIE Lab顏色空間,用K均值聚類分析算法對描述顏色的a和b通道進(jìn)行聚類分析;通過提取各個(gè)顏色區(qū)域獨(dú)立成為單色的新圖像,對圖像進(jìn)行分割處理.實(shí)驗(yàn)結(jié)果表明,在CIE Lab空間使用K—means聚類算法可以有效地分割彩色紡織品圖像的顏色區(qū)域.

2 完整代碼

clear all; close all; clc;A = double(imread('bird_small.tiff'));% 載入圖片dim = size(A,1); % 圖片行數(shù)k = 16; % 顏色分類的層數(shù)means = zeros(k, 3); % Initialize means to randomly-selected colors in the original photo.rand_x = ceil(dim*rand(k, 1));%初始means是k行k列隨機(jī)數(shù)作為聚類中心rand_y = ceil(dim*rand(k, 1));for i = 1:k ? ?means(i,:) = A(rand_x(i), rand_y(i), :);%在圖像中找到初始聚類中心endfor itr=1:100 ? ?s_x=zeros(k,3); ? ?s_ind=zeros(k,1); ? ?for i=1:dim ? ? ? ?for j=1:dim ? ? ? ? ? ?r=A(i,j,1);g=A(i,j,2);b=A(i,j,3); ? ? ? ? ? ?[val ind]=min(sum((repmat([r,g,b],k,1)-means).^2,2)); ? ? ? ? ? ?%repmat(A,k,1)對A矩陣進(jìn)行k行的復(fù)制 ? ? ? ? ? ?s_x(ind,:)=s_x(ind,:)+[r,g,b]; ? ? ? ? ? ?s_ind(ind)=s_ind(ind)+1; ? ? ? ?end ? ?end ? ?for ii=1:k ? ? ? ?if s_ind(ii)>0 ? ? ? ? ? ?s_x(ii,:)=s_x(ii,:)./s_ind(ii); ? ? ? ?end ? ?end ? ?d=sum(sqrt(sum((s_x-means).^2,2)));%計(jì)算距離 ? ?if d<1e-5 ? ? ? ?break ? ?end ? ?means=s_x; ? endmeans = round(means);itrfigure; hold onfor i=1:k ? col = (1/255).*means(i,:); ? rectangle('Position', [i, 0, 1, 1], 'FaceColor', col, 'EdgeColor', col);endaxis offlarge_image = double(imread('bird_large.tiff'));figure;subplot(121);imshow(A,[]);title('原圖')large_dim = size(large_image, 1);for i = 1:large_dim ? ?for j = 1:large_dim ? ? ? ?r = large_image(i,j,1); g = large_image(i,j,2); b = large_image(i,j,3); ? ? ? ?[val ind]=min(sum((repmat([r,g,b],k,1)-means).^2,2)); ? ? ? ?large_image(i,j,:) = means(ind,:); ? ?end endsubplot(122);imshow(uint8(round(large_image)));title('Kmean分割圖')imwrite(uint8(round(large_image)), 'bird_kmeans.jpg');% Save image

3 仿真結(jié)果

4 參考文獻(xiàn)


博主簡介:擅長智能優(yōu)化算法、神經(jīng)網(wǎng)絡(luò)預(yù)測、信號處理、元胞自動機(jī)、圖像處理、路徑規(guī)劃、無人機(jī)等多種領(lǐng)域的Matlab仿真,相關(guān)matlab代碼問題可私信交流。

部分理論引用網(wǎng)絡(luò)文獻(xiàn),若有侵權(quán)聯(lián)系博主刪除。



【聚類分割】基于 K-means 聚類算法實(shí)現(xiàn)圖像區(qū)域分割附matlab代碼的評論 (共 條)

分享到微博請遵守國家法律
关岭| 抚松县| 富阳市| 阳山县| 彭泽县| 甘肃省| 瓦房店市| 津南区| 绵阳市| 锡林浩特市| 大方县| 达日县| 根河市| 津市市| 潍坊市| 龙岩市| 泰安市| 海丰县| 邛崃市| 公安县| 永昌县| 蓬莱市| 信阳市| 永定县| 潞西市| 正安县| 惠来县| 沙湾县| 浦江县| 皋兰县| 剑川县| 平阳县| 老河口市| 合阳县| 新河县| 乐山市| 沙田区| 新绛县| 广州市| 博白县| 溧阳市|