Matlab中fspecial的用法
来源:https://blog.csdn.net/hustrains/article/details/9153553
参数type制定算子类型,parameters指定相应的参数,具体格式为:
type='average',为均值滤波,参数为n,代表模版尺寸,用向量表示,默认值为[3,3]。
type= 'gaussian',为高斯低通滤波器,参数有两个,n表示模版尺寸,默认值为[3,3],sigma表示滤波器的标准差,单位为像素,默认值为
'average' filter type, the default filter size is [3 3]. When used with the Laplacian of Gaussian ('log') filter type, the default filter size is [5 5].type= 'laplacian',为拉普拉斯算子,参数为alpha,用于控制拉普拉斯算子的形状,取值范围为[0,1],默认值为0.2。
type= 'log',为拉普拉斯高斯算子,参数有两个,n表示模版尺寸,默认值为[3,3],sigma为滤波器的标准差,单位为像素,默认值为0.5
type= 'prewitt',为prewitt算子,用于边缘增强,无参数。
type= 'sobel',为著名的sobel算子,用于边缘提取,无参数。
type= 'unsharp',为对比度增强滤波器,参数alpha用于控制滤波器的形状,范围为[0,1],默认值为0.2。
————————————————
fspecial
Create predefined 2-D filter
Syntax
Description
returns a rotationally symmetric Gaussian lowpass filter of size h = fspecial('gaussian',hsize,sigma)hsize with standard deviation sigma. Not recommended. Use imgaussfilt or imgaussfilt3 instead.
returns a filter to approximate, once convolved with an image, the linear motion of a camera. h = fspecial('motion',len,theta)len specifies the length of the motion and theta specifies the angle of motion in degrees in a counter-clockwise direction. The filter becomes a vector for horizontal and vertical motions. The default len is 9 and the default theta is 0, which corresponds to a horizontal motion of nine pixels.
returns a 3-by-3 filter that emphasizes horizontal edges by approximating a vertical gradient. To emphasize vertical edges, transpose the filter h = fspecial('prewitt')h'.
[ 1 1 1
0 0 0
-1 -1 -1 ]
returns a 3-by-3 filter that emphasizes horizontal edges using the smoothing effect by approximating a vertical gradient. To emphasize vertical edges, transpose the filter h = fspecial('sobel')h'.
[ 1 2 1
0 0 0
-1 -2 -1 ]
Examples
Create Various Filters and Filter an Image
Read image and display it.
I = imread('cameraman.tif');
imshow(I);

Create a motion filter and use it to blur the image. Display the blurred image.
H = fspecial('motion',20,45);
MotionBlur = imfilter(I,H,'replicate');
imshow(MotionBlur);

Create a disk filter and use it to blur the image. Display the blurred image.
H = fspecial('disk',10);
blurred = imfilter(I,H,'replicate');
imshow(blurred);

Input Arguments
type — Type of filter
'average' | 'disk' | 'gaussian' | 'laplacian' | 'log' | 'motion' | 'prewitt' | 'sobel'
Type of filter, specified as one of the following values:
|
Value |
Description |
|---|---|
|
|
Averaging filter |
|
|
Circular averaging filter (pillbox) |
|
|
Gaussian lowpass filter. Not recommended. Use |
|
|
Approximates the two-dimensional Laplacian operator |
|
|
Laplacian of Gaussian filter |
|
|
Approximates the linear motion of a camera |
|
|
Prewitt horizontal edge-emphasizing filter |
|
|
Sobel horizontal edge-emphasizing filter |
Data Types: char | string
hsize — Size of the filter
positive integer | 2-element vector of positive integers
Size of the filter, specified as a positive integer or 2-element vector of positive integers. Use a vector to specify the number of rows and columns in h. If you specify a scalar, then h is a square matrix.
When used with the 'average' filter type, the default filter size is [3 3]. When used with the Laplacian of Gaussian ('log') filter type, the default filter size is [5 5].
Data Types: double
radius — Radius of a disk-shaped filter
5 (default) | positive number
Radius of a disk-shaped filter, specified as a positive number.
Data Types: double
sigma — Standard deviation
0.5 (default) | positive number
Standard deviation, specified as a positive number.
Data Types: double
alpha — Shape of the Laplacian
0.2 (default) | scalar in the range [0 1]
Shape of the Laplacian, specified as a scalar in the range [0 1].
Data Types: double
len — Linear motion of camera
9 (default) | numeric scalar
Linear motion of camera, specified as a numeric scalar, measured in pixels.
Data Types: double
theta — Angle of camera motion
0 (default) | numeric scalar
Angle of camera motion, specified as a numeric scalar, measured in degrees, in a counter-clockwise direction.
Data Types: double
Output Arguments
h — Correlation kernel
matrix
Correlation kernel, returned as a matrix.
Data Types: double
Algorithms
Averaging filters:
ones(n(1),n(2))/(n(1)*n(2))
Gaussian filters:
hg(n1,n2)=e−(n21+n22)2σ2
h(n1,n2)=hg(n1,n2)n1n2hg
Laplacian filters:
∇2=∂2∂x2+∂2∂y2
∇2=4(α+1)α41−α4α41−α4−11−α4α41−α4α4
Laplacian of Gaussian (LoG) filters:
hg(n1,n2)=e−(n21+n22)2σ2
h(n1,n2)=(n21+n22−2σ2)hg(n1,n2)σ4n1n2hg
Note that fspecial shifts the equation to ensure that the sum of all elements of the kernel is zero (similar to the Laplace kernel) so that the convolution result of homogeneous regions is always zero.
Motion filters:
Construct an ideal line segment with the length and angle specified by the arguments
lenandtheta, centered at the center coefficient ofh.For each coefficient location
(i,j), compute the nearest distance between that location and the ideal line segment.h = max(1 - nearest_distance, 0);Normalize
h:h = h/(sum(h(:)))
Extended Capabilities
C/C++ Code Generation
Generate C and C++ code using MATLAB Coder.
Usage notes and limitations:
fspecialsupports the generation of C code (requires MATLAB Coder). For more information, see Code Generation for Image Processing.When generating code, all inputs must be constants at compilation time.
GPU Code Generation
Generate CUDA code for NVIDIA GPUs using GPU Coder.
Usage notes and limitations:
When generating code, all inputs must be constants at compilation time.
Matlab中fspecial的用法的更多相关文章
- Matlab中fspecial的用法【转】
Fspecial函数用于创建预定义的滤波算子,其语法格式为:h = fspecial(type)h = fspecial(type,parameters,sigma) 参数type制定算子类型,par ...
- MATLAB中“fitgmdist”的用法及其GMM聚类算法
MATLAB中“fitgmdist”的用法及其GMM聚类算法 作者:凯鲁嘎吉 - 博客园http://www.cnblogs.com/kailugaji/ 高斯混合模型的基本原理:聚类——GMM,MA ...
- MATLAB中冒号的用法
MATLAB中冒号的用法 作者:凯鲁嘎吉 - 博客园 http://www.cnblogs.com/kailugaji/ matlab中冒号代表步长,用实例来说明 >> A=[1 2 3 ...
- MATLAB中冒号的用法解析
MATLAB中冒号的用法解析 1.: 表示所有的意思. (1)如:a(1,:) 表示a的第1行,示例: 结果: 同样的如果a(2,:)表示a的第2行 (2)反过来,a(:,2) 表示a的第3列,示例: ...
- MATLAB中mean的用法
https://blog.csdn.net/wangyang20170901/article/details/78745587 MATLAB中mean的用法 转载仙女阳 最后发布于2017-12-07 ...
- matlab中freqz的用法以及多项式的展开
对于一个变量a,matlab中定义需要这样 syms a: 定义之后就可以写由变量组成的式子,比如 c=(1+a^-1)^5; 可以用expand(c) 就能把c展开成多项式,每一项的系数就可以看到. ...
- Matlab中struct的用法
struct在matlab中是用来建立结构体数组的.通常有两种用法: s = struct('field1',{},'field2',{},...) 这是建立一个空的结构体,field1,field ...
- matlab中句柄@的用法
@是Matlab中的句柄函数的标志符,即间接的函数调用方法. 1 句柄函数 主要有两种语法: handle = @functionname handle = @(arglist)anonymous_f ...
- matlab中fspecial Create predefined 2-D filter以及中值滤波均值滤波以及高斯滤波
来源: 1.https://ww2.mathworks.cn/help/images/ref/fspecial.html?searchHighlight=fspecial&s_tid=doc_ ...
随机推荐
- Android开发之强大的网络判断工具,判断是否联网,判断是wifi还是3g网络等java工具代码类
作者:程序员小冰,CSDN博客:http://blog.csdn.net/qq_21376985, 转载请说明出处. 给大家分享一个Android开发者常用的工具类.主要针对网络判断的 功能强大.下面 ...
- Android开发之http网络请求返回码问题集合。
HTTP状态码(HTTP Status Code) 一些常见的状态码为: 200 - 服务器成功返回网页 404 - 请求的网页不存在 503 - 服务不可用 一.1xx(临时响应) 表示临时响 ...
- 【Gin-API系列】Gin中间件之异常处理(六)
本文我们介绍生产环境上如何通过捕捉异常recovery来完善程序设计和提高用户体验. Golang异常处理 golang 的异常处理比较简单,通常都是在程序遇到异常崩溃panic之后通过defer调用 ...
- Unity WebGL
路过弄了个unity Unity导出WebGL不支持c#socket和unity的network 可以用javascript的websocket实现... c#一般通过www从phpserver获取. ...
- 【HttpRunner v3.x】笔记 ——5. 测试用例-config
上一篇中,我们了解到了config,在配置中,我们可以配置测试用例级级别的一些设置,比如基础url.验证.变量.导出. 我们一起来看,官方给出的一个例子: from httprunner import ...
- 敏捷转型谁先动:老总,项目经理or团队
摘要: 敏捷转型成功的企业究竟是从老总开始?还是从项目经理开始?还是团队本身具有这种意识?相信还有很多想要转型敏捷的公司都存在这样的疑问. 从06年首届敏捷中国开发者大会召开到现在,敏捷方法在国内的应 ...
- B - The Staircases (dp)
One curious child has a set of N little bricks. From these bricks he builds different staircases. St ...
- ConcurrentHashMap的size方法是线程安全的吗?
前言 之前在面试的过程中有被问到,ConcurrentHashMap的size方法是线程安全的吗? 这个问题,确实没有答好.这次来根据源码来了解一下,具体是怎么一个实现过程. ConcurrentHa ...
- Mybatis实例及配置(一)
创建实体类: package com.test.mybatis.bean; public class Employee { private Integer id; private String las ...
- 高可用集群corosync+pacemaker之pcs安装使用
前文我们介绍了高可用集群corosync+pacemaker的集群管理工具crmsh的常用命令的使用,回顾请参考https://www.cnblogs.com/qiuhom-1874/tag/crms ...