您的位置:首页 > 财经 > 产业 > 深圳建站网站_如何免费建立一个自己的网站_2021年网络热点舆论_平台营销策略

深圳建站网站_如何免费建立一个自己的网站_2021年网络热点舆论_平台营销策略

2024/12/22 17:56:15 来源:https://blog.csdn.net/a6s686/article/details/144041127  浏览:    关键词:深圳建站网站_如何免费建立一个自己的网站_2021年网络热点舆论_平台营销策略
深圳建站网站_如何免费建立一个自己的网站_2021年网络热点舆论_平台营销策略

 实验任务:

实验原理详情见指导书

主要是matlab提供的函数,自己要学会多查

使用到的函数

function y=uDT(n);
y=n>=0;

作用:提供阶跃

主程序

注意不要用GPT去写一堆乱七八糟的if else,会被骂的

主任务

n=0:30;
x=(n==0);
%题一
%第一小问a1=[3 4 1];
b1=[1 1];h1=filter(b1,a1,x);
subplot(2,1,1)
stem(n,h1,"filled"),grid on;
%impz(b1,a1,10);%第二小问
a2=[2.5 6 10];
b2=[1];h2=filter(b2,a2,x);
subplot(2,1,2)
stem(n,h2,"filled"),grid on%题二
nx=-1:11;
nh=-1:6;
figure;
h3=0.875.^nx.*(uDT(nx)-uDT(nx-10));
X=uDT(nh)-uDT(nh-5);
C=conv(h3,X);
ny1=nx(1)+nh(1);
ny2=(nx(end)+nh(end));
ny=ny1:ny2;subplot(2,1,1)
stem(ny,C,"filled"),grid on%题三
B=imread("lena.bmp");
Gx=[-1 0 1;-2 0 2;-1 0 1];
Gy=[1 2 1;0 0 0;-1 -2 -1];
GxB=conv2(Gx,B);
GyB=conv2(Gy,B);
GxyB=conv2(GxB,Gy);
figure;
subplot(2,2,1)
imshow(B);
subplot(2,2,2);
imshow(GxB);
subplot(2,2,3);
imshow(GyB);
subplot(2,2,4);
imshow(GxyB);

思考题

%思考题一
n1=-3:3;
x=[3,11,7,0,-1,4,2];
n2=-1:4;
h=[2,3,0,-5,2,1];input=conv(x,h);nstart=n1(1)+n2(1);
nend=n1(end)+n2(end);n3=nstart:nend;
figure;
subplot(2,1,1)
stem(n3,input,"filled"),grid on;%思考题二:Canny检测
grayImage = imread("lena.bmp");  
edgeImage = edge(grayImage, 'Canny');% 显示原图和边缘检测后的图像figure;  
figure;
subplot(1,2,1);  
imshow(grayImage);  
title('原图');  subplot(1,2,2);  
imshow(edgeImage);  
title('Canny 边缘检测');smoothedImage = imgaussfilt(grayImage,2);
% 使用 sigma=2 的高斯滤波
edgeImage = mat2gray(edgeImage);
%归一化到 [0,1] 范围
% 显示原图和边缘检测后的图像figure;  
figure;
subplot(1,2,1);  
imshow(grayImage);  
title('原图');  subplot(1,2,2);  
imshow(smoothedImage);  
title('Laplacian 边缘检测');  

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com