clc;
clear;
i=imread(‘test.bmp’);
imshow(i)
figure
i=rgb2gray(i);
i_hight=size(i,1);
i_width=size(i,2);
i_hough=zeros(600,360);
……
……
……
(省略部分代码,完整代码可以下载)
……
……
……
figure
imshow(i_hough)
6 图像处理实现螺纹识别matlab案例

相关文章:

  • 2021-11-26
  • 2021-06-04
  • 2021-04-06
  • 2021-12-05
  • 2021-04-18
  • 2021-10-27
  • 2021-07-29
  • 2021-11-28
猜你喜欢
  • 2021-10-25
  • 2021-06-24
  • 2021-06-26
  • 2021-11-28
  • 2021-07-31
  • 2021-09-28
  • 2021-10-30
相关资源
相似解决方案