基本信息
文件名称:机器视觉系统编程与开发 课件 第13-15课时-项目4 图像滤波 .pptx
文件大小:2.38 MB
总页数:29 页
更新时间:2025-07-02
总字数:约小于1千字
文档摘要
版本号:V1.0;项目4图像滤波;;项目导读
;;;【任务要求】;【知识链接】;滤波原理;【任务实施】;11. *添加椒盐噪声
12. add_noise_white(Image,ImageNoise1,60)
13. *均值滤波,边长9的正方形
14. mean_image(Image,ImageMean1,9,9)
15. *均值滤波,边长3的正方形
16. mean_image(Image,ImageMean,3,3)
17. *显示图像
18. dev_display(ImageMean);算子释义;下一任务介绍:;;【任务要求】;【任务实施】;滤波原理;【案例4-2】利用中值滤波对绷带图像进行处理;13. *对图像加强
14. emphasize(GrayImage,ImageEmphasize,Width,Height,20)
15. *中值滤波
16. median_image(ImageEmphasize,ImageMedian,circle,6,mirrored)
17. *均值滤波
18. mean_image(ImageEmphasize,ImageMean,5,58);算子释义;下一任务介绍:;;【任务要求】;【任务实施】;【案例4-3】利用高斯滤波检测轮毂上的字符;;;总结:;