|
焊缝采样焊缝图像如图
- clc,clear,close all % 清屏、清工作区、关闭窗口
- warning off % 消除警告
- feature jit off % 加速代码执行
- ps=imread('1.jpg');
- subplot(121),imshow(ps)
- background=imopen(ps,strel('disk',4)); % 形态学开运算
- % imshow(background);
- subplot(122),surf(double(background(1:4:end,1:4:end))),zlim([0 256]);
- set(gca,'Ydir','reverse');
复制代码
|
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
|