Generating Gaussian Filter 2D Matrix
版本 1.1.0.0 (827 字节) 作者:
Duc Chung Tran
The function is used to generate Gaussian Filter 2D Matrix.
Function Inputs:
- Filter_size: size of filter
- sigma: standard deviation
Function Output:
- 2D Gaussian filter matrix
Example to plot filter matrix in 3D:
g1=Gaussian_filter(50,2);
g2=Gaussian_filter(50,7);
g3=Gaussian_filter(50,11);
figure(1);
subplot(1,3,1);surf(g1);title('filter size = 50, sigma = 2');
subplot(1,3,2);surf(g2);title('filter size = 50, sigma = 7');
subplot(1,3,3);surf(g3);title('filter size = 50, sigma = 11');
引用格式
Duc Chung Tran (2024). Generating Gaussian Filter 2D Matrix (https://www.mathworks.com/matlabcentral/fileexchange/46189-generating-gaussian-filter-2d-matrix), MATLAB Central File Exchange. 检索时间: .
MATLAB 版本兼容性
创建方式
R2013a
兼容任何版本
平台兼容性
Windows macOS Linux类别
在 Help Center 和 MATLAB Answers 中查找有关 Filter Analysis 的更多信息
标签
致谢
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!