Discuz! Board

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 1337|回复: 0

地图着色程序

[复制链接]

391

主题

1222

帖子

3902

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
3902
发表于 2023-8-7 00:23:11 | 显示全部楼层 |阅读模式
  1. function main()
  2. I = imread('abc1.jpg');
  3. I =I(1:300,1:300,:);
  4. subplot(1,3,1);imshow(I);title('raw');
  5. I_gray = rgb2gray(I);
  6. %subplot(3,4,2);imshow(I_gray);title('gray');
  7. I_background=medfilt2(I_gray ,[20,20]);
  8. %subplot(3,4,4);imshow(I_background);
  9. I_signal = I_gray -I_background;
  10. %subplot(3,4,5);imshow(I_signal);title('remove noise');
  11. I_bw = I_signal >0;
  12. %subplot(3,4,6);imshow(I_bw );title('binary value');
  13. I_bw1 = bwareaopen(I_bw,30,4) ;
  14. %subplot(3,4,7);imshow(I_bw1);title('remove island');
  15. I_bw2=  imdilate(I_bw1, strel('disk',1) );
  16. %subplot(3,4,8);imshow(I_bw2,[]);title('dilate edge');
  17. [I_label,num] = bwlabel( bwareaopen(1-I_bw2,30,4));
  18. %subplot(3,4,9);imshow(I_label,[]);title('labeled');
  19. I_label1 =  imdilate2noEdge(I_label);
  20. %subplot(3,4,10);imshow(I_label1,[]);title('labeled1');
  21. M = markMap(I_label1);
  22. fprintf('M构建完成');
  23. ColorMap = getColorMap(M);
  24. fprintf('ColorMap构建完成');
  25. M_Colored = getMColor(M,ColorMap);
  26. colors = [255,0,0;0,255,0;0,0,255;255,255,0;255,0,255;0,255,255];
  27. I_colored = zeros(size(I));
  28. for i = 1:num
  29.     I_colored(:,:,1) = I_colored(:,:,1) + (I_label1==i)*colors(ColorMap(i),1);
  30.     I_colored(:,:,2) = I_colored(:,:,2) + (I_label1==i)*colors(ColorMap(i),2);
  31.     I_colored(:,:,3) = I_colored(:,:,3) + (I_label1==i)*colors(ColorMap(i),3);
  32.     fprintf('原图伪彩色构建%d/%d\n',[i,num]);
  33. end
  34. subplot(1,3,2);imshow(I_colored);title('colored');
  35. [area,ratio] = getSizeDistribute(I_label1)
  36. subplot(1,3,3);bar(area,ratio*100);
  37. xlabel('area(um^2)');xlabel('ratio(%)');

  38. end



  39. function I_label1 =  imdilate2noEdge(I_label)
  40. [m,n] = size(I_label);
  41. flag  =1;
  42. I_label1 = I_label;
  43. while flag
  44.     flag = 0;
  45.     for i = 2:m-1
  46.         for j=2:n-1
  47.             if I_label(i,j) ==0
  48.                 if I_label(i-1,j)~=0
  49.                     I_label1(i,j) = I_label(i-1,j);flag  =1;
  50.                 elseif I_label(i+1,j)~=0
  51.                     I_label1(i,j) = I_label(i+1,j);flag  =1;
  52.                 elseif I_label(i,j-1)~=0
  53.                     I_label1(i,j) = I_label(i,j-1);flag  =1;
  54.                 elseif I_label(i,j+1)~=0
  55.                     I_label1(i,j) = I_label(i,j+1);flag  =1;
  56.                 end
  57.             end
  58.         end
  59.     end
  60.     I_label = I_label1;
  61. end
  62. I_label1 = I_label;
  63. end
  64. function M = markMap(I_label)
  65. num = max(max(I_label));
  66. M = [(1:num)',zeros(num,30)];

  67. [m,n] = size(I_label);
  68. for i = 2:m-1
  69.     for j=2:n-1
  70.         indexs = [i-1,j;i,j-1];
  71.         for i_index = 1:length(indexs(:,1))
  72.              if I_label(indexs(i_index,1),indexs(i_index,2))~=I_label(i,j)
  73.                  num1 = I_label(indexs(i_index,1),indexs(i_index,2));
  74.                  num2 = I_label(i,j);
  75.                  if num1~=0 && num2~=0
  76.                      M = addNewToM(M ,num1,num2);
  77.                      M = addNewToM(M ,num2,num1);  
  78.                  end
  79.              end
  80.         end
  81.     end
  82. end
  83. end


  84. function M = addNewToM(M ,num1,num2)
  85.      jj = 1;
  86.      while M(num1,jj)~=0 && M(num1,jj)~=num2
  87.          jj=jj+1;
  88.      end
  89.      M(num1,jj) = num2;
  90. end

  91. function ColorMap = getColorMap(M)
  92. num = length(M(:,1));
  93. ColorMap = zeros(num,1);
  94. %1先选择1作为#1初始颜色
  95. ColorMap(1) = 1;
  96. ii = 1;
  97. while find(ColorMap == 0)
  98.     ColorMap = addOneColor(M,ColorMap);   
  99.     fprintf('ColorMap构建%d/%d\n',[ii,num]); ii=ii+1;
  100. end
  101. end

  102. function ColorMap = addOneColor(M,ColorMap)
  103. %找出第一个未标记颜色,并且周围标记颜色最多的区域#2
  104. num = length(M(:,1));
  105. M_colored = zeros(size(M));
  106. for i = 1:num
  107.     if ColorMap(i) ~=0
  108.              M_colored = M_colored+(M==i);
  109.     end
  110. end
  111. num_colored = sum(M_colored(:,2:end),2).*(~M_colored(:,1));
  112. [C,i_max] = max(num_colored);
  113. %给区域#2标记颜色
  114. i_color = 1;
  115. ii = 2;
  116. cc=[];
  117. while M(i_max,ii)~=0
  118.     cc = [cc,ColorMap(M(i_max,ii))];
  119.     ii=ii+1;
  120. end
  121. color_target = 1;
  122. while ~isempty(find(cc==color_target))
  123.     color_target = color_target+1;
  124. end
  125. ColorMap(i_max) = color_target;
  126. end


  127. function M_colored = getMColor(M,ColorMap)
  128. %找出第一个未标记颜色,并且周围标记颜色最多的区域#2
  129. num = length(M(:,1));
  130. M_colored = zeros(size(M));
  131. for i = 1:num
  132.     if ColorMap(i) ~=0
  133.              M_colored = M_colored+ ColorMap(i)*(M==i);
  134.     end
  135. end
  136. end

  137. function [area,ratio] = getSizeDistribute(I_label)
  138.     num = max(max(I_label));
  139.     sizes = [];
  140.     for i = 1:num
  141.          sizes = [sizes,sum(sum(I_label==i))];
  142.     end
  143.     sizes = sizes/54.76;%change pixel2 to um2
  144.     minv = min(sizes);
  145.     maxv = max(sizes);
  146.     d= 10;
  147.     area = (maxv-minv)/d*(0:d) + minv;
  148.     number = [];
  149.     for i = 1:d
  150.         number=[number,sum(sum(sizes>area(i) & sizes<area(i+1)))];
  151.     end
  152.     ratio = number/sum(number);
  153.     area = area(2:end);
  154. end





复制代码
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|DiscuzX

GMT+8, 2025-4-5 03:42 , Processed in 0.036438 second(s), 18 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表