发布时间:2023-01-09 08:00
实验一 MATLAB图像增强与变换处理实验
一、实验目的
1、熟悉掌握数字图像处理的基本概念。
2、了解MATLAB的的编程环境,图像处理工具箱的使用方法。
3、掌握数字图像处理图像增强的基本方法。
4、掌握图像变换的基本方法。
5、学会使用MATLAB完成图像处理的主要功能。
二、实验任务
(1)各种格式的数字图像的读取、显示、存储。
1.1 程序
a=imread('liusuo.tif');%tif
figure
imshow(a)
imwrite(a,'liusuostore.tif','compression','none','resolution',[200 200])
a=imread('liuyifei.jpg');%jpg
figure
imshow(a)
imwrite(a,'liuyifeistore.jpg')
a=imread('iloveyou.gif');%gif
figure
imshow(a)
imwrite(a,'iloveyoustore.gif')
a=imread('blue.png');%png
figure
imshow(a)
imwrite(a,'bluestore.png')
1.2效果
fastapi 使用本地静态文件替换 swagger cdn
.NET Core 实现后台任务(定时任务)BackgroundService(二)
基于OneDNS实现减少网站广告骚扰和恶意攻击,守护上网安全
MindSpore报错“RuntimeError: Unexpected error. Inconsistent batch..
ECharts 饼图颜色设置教程 - 4 种方式设置饼图颜色
PyTorch学习笔记:RuntimeError: one of the variables needed for gradient computation has been modified by