main.m
上传用户:mei215
上传日期:2013-07-26
资源大小:13k
文件大小:0k
源码类别:

ICQ弱点检测代码

开发平台:

Matlab

  1. clc,clear all
  2. I = imread('2.bmp');
  3. [m,n,l] = size(I);
  4. if l>1
  5.     I = rgb2gray(I);
  6. end
  7. BW = edge(I,'sobel');
  8. step_r = 1;
  9. step_angle = 0.1;
  10. minr = 20;
  11. maxr = 30;
  12. thresh = 0.7;
  13. [hough_space,hough_circle,para] = hough_circle(BW,step_r,step_angle,minr,maxr,thresh);
  14. subplot(221),imshow(I),title('原图')
  15. subplot(222),imshow(BW),title('边缘')
  16. subplot(223),imshow(hough_circle),title('检测结果')