美好热狗

文章
7
资源
0
加入时间
2年10月18天

使用sobel检测器来提取边缘

%使用sobel检测器来提取边缘f=imread('building.tif');%读取图像subplot(3,2,1),imshow(f),title('原图像')[gt,t]=edge(f,'sobel','vertical');%用sobel来提取垂直边缘检测subplot(3,2,2),imshow(gt),title('垂直sobel掩模后图像')gv=edge(f,'so...

结构体成员的引用箭头与点号

关于结构体成员的引用有这样的规律:(1)箭头(->):左边必须为指针(2)点号(.):左边必须为实体#include "stdio.h"int main(){ struct student{ int age; int class_; }; struct class2{ struct student s1;...