E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
fspecial
fspecial
fspecialCreatepredefined2-DfiltercollapseallinpageSyntaxh=
fspecial
(type)h=
fspecial
(type,parameters)Descriptionh
dukai392
·
2017-10-29 20:07
科研技术
卷积神经网络CNN-目标分类
图像效果算子:高斯:更模糊unsharp:更清楚motion:动作模糊效果卷积核:F1=
fspecial
('disk',1);F2=fspecia
大树先生的博客
·
2017-08-29 09:21
Deep
Learning
python+opencv模拟生成运动模糊核
参考:OPENCV2学习(1)_生成运动模糊核(OPENCV2实现Matlab中
fspecial
的motion功能)运动模糊时,模糊后图片某点的值应该与原图沿运动角度方向前面的点有关,并且越近邻影响越大
武方绿
·
2017-07-04 21:00
图像滤波—高斯滤波——MATLAB实现
函数
fspecial
(‘gaussian’,5,4.5);产生一个σ=4.5的5*5滤波模板。
阿卡蒂奥
·
2017-06-20 11:03
Matlab
图像处理
3.高斯滤波、中值滤波MATLAB代码和结果图像
ClassicalImages\标准测试图片\goldhill.bmp');I=rgb2gray(H);subplot(2,3,1);imshow(H);title('原图像');sigma1=1.6;gausFilter=
fspecial
长大的女孩
·
2016-12-12 14:09
图像处理
matlab实现图像滤波——高斯滤波
不允许使用
fspecial
来产生高斯模板,不允许使用imfilter、conv2等函数。
yytang1
·
2016-10-07 14:44
数字图像
matlab自带滤波器函数小结(图像处理)
')I=rgb2gray(I);I1=imnoise(I,'salt&pepper',0.02);subplot(232)imshow(I1)title('添加椒盐噪声的图像')k1=filter2(
fspecial
eagelangel
·
2016-09-16 10:38
计算机
Matlab中生成圆形和环形模板
Matlab中利用
fspecial
可以生成多种模板,如何生成圆形和环形的模板呢?
yangstone2006
·
2016-08-27 01:54
Matlab
matlab滤波器的总结
1.创建预定义滤波器命令
fspecial
()调用格式:h=
fspecial
(type); h=
fspecial
(type,parameters);
fspecial
()函数用于生成预定义滤波器
·
2016-05-08 14:00
matlab
图像处理
非线性滤波
降噪
线性滤波
Matlab 的
fspecial
函数用法
fspecial
函数用于建立预定义的滤波算子,其语法格式为:h=
fspecial
(type)h=
fspecial
(type,para)其中type指定算子的类型,para指定相应的参数;type的类型有
qq_20602929
·
2016-04-19 21:00
MATLAB实现将图像转换为素描(简笔画)风格
colorgrad.mfunction[VG,A,PPG]=colorgrad(f,T) if(ndims(f)~=3)||(size(f,3)~=3) error('InputimagemustbeRGB'); end sh=
fspecial
AndyJee
·
2016-01-12 16:00
matlab自带函数实现高斯滤波(gauss filter)快速算法
functionoutput=gaussFilter(I,sigma)output=I;ksize=double(uint8(3*sigma)*2+1);%窗口大小一半为3*sigmawindow=
fspecial
残月飞雪
·
2016-01-06 15:07
滤波算法
matlab imfilter 对于 opencv filter2D 参数
将matlabimg_l=imread("1.bmp");//单通道图像filter_edge=
fspecial
('sobel')';img_sobel_l=(imfilter(img_l,
fspecial
Eaglest
·
2015-12-01 14:27
图像处理
C++
编程
matlab imfilter 对于 opencv filter2D 参数
将matlabimg_l=imread("1.bmp");//单通道图像filter_edge=
fspecial
('sobel')';img_sobel_l=(imfilter(img_l,
fspecial
Eaglest
·
2015-12-01 14:27
图像处理
C++
编程
matlab 函数说明--
fspecial
好吧,这个函数在图像处理中运用得非常广泛,虽然我还是觉得不知道为啥要取这个名字,
fspecial
的作用如下: &
·
2015-11-12 21:36
matlab
Matlab 的
fspecial
函数用法
fspecial
函数用于建立预定义的滤波算子,其语法格式为: h =
fspecial
(type) h =
fspecial
(type , para) 其中 type 指定算子的类型, para
·
2015-10-31 09:26
matlab
matlab练习程序(动感模糊)
其实在matlab中调用系统函数
fspecial
和imfilter这两个函数就能很简单的实现动感模糊,不过我可不想就这样简单的实现,所以就自己从头写了。
·
2015-10-30 16:17
matlab
图像的锐化和边缘提取
clc;I=imread('test.jpg');I=rgb2gray(I); %灰度化p=
fspecial
('sobel'); %构造sobel算子BW1=imfilter(I,p); %使用sobel
jialeheyeshu
·
2015-10-29 19:00
图像处理(二)laplacian锐化
图像处理第二次作业实验材料原图:laplacian的filter的类型
fspecial
('laplacian',0.2)%默认值系数:默认值0.2拉普拉斯-高斯金字塔的层数:4实验一:用3⋅3的laplacianfilter
qq_24451605
·
2015-10-28 21:00
图像处理
matlab练习程序(高斯金字塔)
cl;img1=imread('gaosi.jpg');[m,n]=size(img1);w=
fspecial
('gaussian',[3 3]);img2=imresize(imfilter(img1
·
2015-10-21 10:31
matlab
matlab练习程序(图像加噪,各种滤波)
cl;img=imread('3.17.tif');imgn=imnoise(img,'salt & pepper',0.02);[m n]=size(img);%h=
fspecial
('average
·
2015-10-21 10:08
matlab
Matlab
fspecial
和imfilter对图像进行空间滤波
(I,type…):为图像I添加type类型的噪声;type有以下一些类型:‘gaussian’‘localvar’‘poisson’‘salt&pepper’‘speckle’,各类型都有相关参数;
fspecial
ahafg
·
2015-09-23 20:00
MATLAB 图像函数(第七章) 图像的代数运算
x,y) 两幅图像的差的绝对值Z=imabsdiff(x,y) 对应x中每一个元素减去y矩阵中对应蒜素,然后去绝对值,z的维数与xy相同I=imread('lena.jpg'); J=filter2(
fspecial
qq_18343569
·
2015-07-22 21:00
Matlab 的
fspecial
函数用法
fspecial
函数用于建立预定义的滤波算子,其语法格式为:h=
fspecial
(type)h=
fspecial
(type,para)其中type指定算子的类型,para指定相应的参数;type的类型有
qq_18343569
·
2015-07-20 16:00
图像加噪,各种滤波
clc; img=imread('3.17.tif'); imgn=imnoise(img,'salt&pepper',0.02); [mn]=size(img); %h=
fspecial
('average
qq_18343569
·
2015-07-15 21:00
[图像]高斯滤波(Matlab实现)
转载自祥的博客原文链接:http://blog.csdn.net/humanking7/article/details/46826105简述原理说明核心提示在Matlab中高斯滤波非常方便,主要涉及到下面两个函数:函数:
fspecial
祥知道
·
2015-07-10 09:55
高斯滤波
matlab
图像处理
图像
matlab为图像加运动模糊和散焦模糊
aerial_view_no_turb).tif');figure,subplot(1,2,1);imshow(I);title('原图像');%T=rgb2gray(M);figure;imshow(I);PSF=
fspecial
huang1024rui
·
2015-05-14 09:00
matlab
数字图像
[matlab] 基础的不能再基础的大杂烩
读取图像I=imread('文件名.文件后缀');2、显示图像imshow(I);3、将彩色图像转变为灰度图像grayImg=rgb2gray(I);4、高斯滤波sigma=1.5;gausFilter=
fspecial
yishaxiaoyao
·
2015-04-20 20:00
matlab的special函数用法
fspecial
函数用于建立预定义的滤波算子,其语法格式为:h=
fspecial
(type)h=
fspecial
(type,para)其中type指定算子的类型,para指定相应的参数;type的类型有
donglindonglin
·
2015-04-13 09:05
matlab
default
special
average
returns
matlab的special函数用法
fspecial
函数用于建立预定义的滤波算子,其语法格式为:h=
fspecial
(type)h=
fspecial
(type,para)其中type指定算子的类型,para指定相应的参数;type的类型有
donglindonglin
·
2015-04-13 09:05
matlab
default
special
average
returns
fspecial
,imfilter
一、
fspecial
函数用于建立预定义的滤波算子,其语法格式为:h=
fspecial
(type)h=
fspecial
(type,para)其中type指定算子的类型,para指定相应的参数;type的类型有
xc1499715227
·
2014-12-15 10:00
matlab
imfilter
fspecial
PS 滤镜——素描算法(二)
jpg');Image=double(Image);[row,col,layer]=size(Image);Filter_size=30;sigma=Filter_size/6;F_gaussian=
fspecial
Matrix_11
·
2014-10-03 10:51
图像处理
Photoshop
算法原理
Photoshop
图像处理算法
PS 滤镜——素描算法(二)
jpg');Image=double(Image);[row,col,layer]=size(Image);Filter_size=30;sigma=Filter_size/6;F_gaussian=
fspecial
shinian1987
·
2014-10-03 10:00
算法
应用
photoshop
PS 滤镜算法原理——染色玻璃
imread('4.jpg');Image=double(Image);Gray_Image=rgb2gray(Image/255);[row,col]=size(Gray_Image);S_filter=
fspecial
Matrix_11
·
2014-06-13 14:36
图像处理
Photoshop
算法原理
Photoshop
图像处理算法
PS 滤镜算法原理——染色玻璃
imread('4.jpg');Image=double(Image);Gray_Image=rgb2gray(Image/255);[row,col]=size(Gray_Image);S_filter=
fspecial
shinian1987
·
2014-06-13 14:00
算法
应用
photoshop
PS 滤镜算法原理——高反差保留 (High Pass)
imread('4.jpg');Image=double(Image);Image1=Image;%%设置高斯滤波器Half_size=10;F_size=2*Half_size+1;G_Filter=
fspecial
Matrix_11
·
2014-06-09 17:44
图像处理
Photoshop
算法原理
Photoshop
图像处理算法
PS 滤镜算法原理——高反差保留 (High Pass)
imread('4.jpg');Image=double(Image);Image1=Image;%%设置高斯滤波器Half_size=10;F_size=2*Half_size+1;G_Filter=
fspecial
shinian1987
·
2014-06-09 17:00
算法
应用
photoshop
素描matlab实现
I=imread('GF.png');[height,width]=size(I);imggray=rgb2gray(I);N=255-imggray;h1=
fspecial
('gaussian',3,3
abcd1992719g
·
2014-04-20 22:20
CV
素描matlab实现
I=imread('GF.png'); [height,width]=size(I); imggray=rgb2gray(I); N=255-imggray; h1=
fspecial
('gaussian
abcd1992719g
·
2014-04-20 22:00
matlab
素描
【CBIR】【Color】颜色关联图Color Correlograms
ColorCorrelogramsfunctionCC_output=Color_Correlograms(img) %imgissimplechannel [rows,cols]=size(img); H=
fspecial
erlingmusan
·
2014-04-03 16:00
opencv生成高斯核
Matlab: K =
fspecial
('gaussian',m,sigma); Matgaussian_kernal(intdim,intsigma) { intc=dim/2; MatK
todayq
·
2014-04-02 13:00
matlab自带滤波器函数小结(图像处理)
')I=rgb2gray(I);I1=imnoise(I,'salt&pepper',0.02);subplot(232)imshow(I1)title('添加椒盐噪声的图像')k1=filter2(
fspecial
wds555
·
2014-03-29 20:00
matlab
图像处理
滤波器
高斯卷积
f=rgb2gray(imread('lena.bmp'));g1=
fspecial
('gaussian',[33],3);g2=
fspecial
('gaussian',[55],3);g3=
fspecial
lqhbupt
·
2014-01-03 20:00
光照归一化算法——DoG滤波,自商图
DoGcode: functionpic=DoG(I) ifsize(I,3)==3 I=rgb2gray(I); end I=double(I); h1=
fspecial
('gaussian',15,1
todayq
·
2013-11-26 15:00
matlab中
fspecial
中生成高斯模板的解释以及c语言实现
我一直对
fspecial
感觉到疑惑,故转发以下博客,让大家学习一下。1.下面这个函数是模拟
fspecial
中的生成高斯模板的函数。
飞信天下
·
2013-11-03 10:35
Matlab
大津法——边缘检测
:LiFeiteng %Version1.0灰度图像2013/5/06 %Version1.1彩色图像2013/5/13 ifsize(I,3)==3 I=rgb2gray(I); end mask=
fspecial
LiFeitengup
·
2013-10-01 21:00
今天终于弄清楚了
fspecial
('gaussian',3,1.8)怎么算的了
先看看定义假设模板大小为(2k+1)*(2k+1),则高斯模板(i,j)处的元素值应该为:首先我们看一下用
fspecial
生成的一个标准差为1.8,大小为3*3的高斯模板矩阵>>
fspecial
('gaussian
邪恶的亡灵
·
2013-09-29 21:00
MATLAB图像处理学习篇
matlab中
fspecial
中生成高斯模板的解释以及c语言实现
下面这个函数是模拟
fspecial
中的生成高斯模板的函数。
xizero00
·
2013-02-20 19:00
运动模糊图像,模糊图像,锐化图像
%用函数创建一个制定的滤波器模版,其语法格式为:%H=
fspecial
(type);%H=
fspecial
(type,parameters);%运动模糊图像,模糊图像,锐化图像I=imread('cameraman.tif
tianzhaixing
·
2012-11-26 12:00
Matlab 的
fspecial
函数用法
Matlab的
fspecial
函数用法
fspecial
函数用于建立预定义的滤波算子,其语法格式为:h=
fspecial
(type)h=
fspecial
(type,para)其中type指定算子的类型,para
kjackking
·
2012-11-15 10:00
上一页
1
2
3
4
5
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他