自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 收藏
  • 关注

原创 MATLAB的pixeldup.m函数(通过像素复制来放大图像)

function B=pixeldup(A,m,n) if nargin<2 error(‘At least two inputs are required’); end if nargin==2 n=m; end u=1:size(A,1); m=round(m); u=u(ones(1,m)😅; u=u(😃; v=1:size(A,2); n=round(n); v=v(ones(1,n)😅; v=v(😃; B=A(u,v);

2022-03-08 15:46:53 1023

原创 MATLAB的toflat.m函数

function [out, revertclass]=tofloat(in) %tofloat convert image to floating point identity=@(x) x; tosingle=@im2single; table={‘uint8’, tosingle, @im2uint8 ‘uint16’, tosingle, @im2uint16 ‘int16’, tosingle, @im2int16 ‘logical’, tosingle, @logical ‘double’, i

2022-03-08 14:48:48 137

原创 Matlab的spfilt.m函数

Matlab的空间滤波器,处理噪声,spfilt

2022-03-08 14:47:29 1130

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除