|
- function main()
- I = imread('abc1.jpg');
- I =I(1:300,1:300,:);
- subplot(1,3,1);imshow(I);title('raw');
- I_gray = rgb2gray(I);
- %subplot(3,4,2);imshow(I_gray);title('gray');
- I_background=medfilt2(I_gray ,[20,20]);
- %subplot(3,4,4);imshow(I_background);
- I_signal = I_gray -I_background;
- %subplot(3,4,5);imshow(I_signal);title('remove noise');
- I_bw = I_signal >0;
- %subplot(3,4,6);imshow(I_bw );title('binary value');
- I_bw1 = bwareaopen(I_bw,30,4) ;
- %subplot(3,4,7);imshow(I_bw1);title('remove island');
- I_bw2= imdilate(I_bw1, strel('disk',1) );
- %subplot(3,4,8);imshow(I_bw2,[]);title('dilate edge');
- [I_label,num] = bwlabel( bwareaopen(1-I_bw2,30,4));
- %subplot(3,4,9);imshow(I_label,[]);title('labeled');
- I_label1 = imdilate2noEdge(I_label);
- %subplot(3,4,10);imshow(I_label1,[]);title('labeled1');
- M = markMap(I_label1);
- fprintf('M构建完成');
- ColorMap = getColorMap(M);
- fprintf('ColorMap构建完成');
- M_Colored = getMColor(M,ColorMap);
- colors = [255,0,0;0,255,0;0,0,255;255,255,0;255,0,255;0,255,255];
- I_colored = zeros(size(I));
- for i = 1:num
- I_colored(:,:,1) = I_colored(:,:,1) + (I_label1==i)*colors(ColorMap(i),1);
- I_colored(:,:,2) = I_colored(:,:,2) + (I_label1==i)*colors(ColorMap(i),2);
- I_colored(:,:,3) = I_colored(:,:,3) + (I_label1==i)*colors(ColorMap(i),3);
- fprintf('原图伪彩色构建%d/%d\n',[i,num]);
- end
- subplot(1,3,2);imshow(I_colored);title('colored');
- [area,ratio] = getSizeDistribute(I_label1)
- subplot(1,3,3);bar(area,ratio*100);
- xlabel('area(um^2)');xlabel('ratio(%)');
- end
- function I_label1 = imdilate2noEdge(I_label)
- [m,n] = size(I_label);
- flag =1;
- I_label1 = I_label;
- while flag
- flag = 0;
- for i = 2:m-1
- for j=2:n-1
- if I_label(i,j) ==0
- if I_label(i-1,j)~=0
- I_label1(i,j) = I_label(i-1,j);flag =1;
- elseif I_label(i+1,j)~=0
- I_label1(i,j) = I_label(i+1,j);flag =1;
- elseif I_label(i,j-1)~=0
- I_label1(i,j) = I_label(i,j-1);flag =1;
- elseif I_label(i,j+1)~=0
- I_label1(i,j) = I_label(i,j+1);flag =1;
- end
- end
- end
- end
- I_label = I_label1;
- end
- I_label1 = I_label;
- end
- function M = markMap(I_label)
- num = max(max(I_label));
- M = [(1:num)',zeros(num,30)];
- [m,n] = size(I_label);
- for i = 2:m-1
- for j=2:n-1
- indexs = [i-1,j;i,j-1];
- for i_index = 1:length(indexs(:,1))
- if I_label(indexs(i_index,1),indexs(i_index,2))~=I_label(i,j)
- num1 = I_label(indexs(i_index,1),indexs(i_index,2));
- num2 = I_label(i,j);
- if num1~=0 && num2~=0
- M = addNewToM(M ,num1,num2);
- M = addNewToM(M ,num2,num1);
- end
- end
- end
- end
- end
- end
- function M = addNewToM(M ,num1,num2)
- jj = 1;
- while M(num1,jj)~=0 && M(num1,jj)~=num2
- jj=jj+1;
- end
- M(num1,jj) = num2;
- end
- function ColorMap = getColorMap(M)
- num = length(M(:,1));
- ColorMap = zeros(num,1);
- %1先选择1作为#1初始颜色
- ColorMap(1) = 1;
- ii = 1;
- while find(ColorMap == 0)
- ColorMap = addOneColor(M,ColorMap);
- fprintf('ColorMap构建%d/%d\n',[ii,num]); ii=ii+1;
- end
- end
- function ColorMap = addOneColor(M,ColorMap)
- %找出第一个未标记颜色,并且周围标记颜色最多的区域#2
- num = length(M(:,1));
- M_colored = zeros(size(M));
- for i = 1:num
- if ColorMap(i) ~=0
- M_colored = M_colored+(M==i);
- end
- end
- num_colored = sum(M_colored(:,2:end),2).*(~M_colored(:,1));
- [C,i_max] = max(num_colored);
- %给区域#2标记颜色
- i_color = 1;
- ii = 2;
- cc=[];
- while M(i_max,ii)~=0
- cc = [cc,ColorMap(M(i_max,ii))];
- ii=ii+1;
- end
- color_target = 1;
- while ~isempty(find(cc==color_target))
- color_target = color_target+1;
- end
- ColorMap(i_max) = color_target;
- end
- function M_colored = getMColor(M,ColorMap)
- %找出第一个未标记颜色,并且周围标记颜色最多的区域#2
- num = length(M(:,1));
- M_colored = zeros(size(M));
- for i = 1:num
- if ColorMap(i) ~=0
- M_colored = M_colored+ ColorMap(i)*(M==i);
- end
- end
- end
- function [area,ratio] = getSizeDistribute(I_label)
- num = max(max(I_label));
- sizes = [];
- for i = 1:num
- sizes = [sizes,sum(sum(I_label==i))];
- end
- sizes = sizes/54.76;%change pixel2 to um2
- minv = min(sizes);
- maxv = max(sizes);
- d= 10;
- area = (maxv-minv)/d*(0:d) + minv;
- number = [];
- for i = 1:d
- number=[number,sum(sum(sizes>area(i) & sizes<area(i+1)))];
- end
- ratio = number/sum(number);
- area = area(2:end);
- end
复制代码 |
|