资源简介
Gabor滤波后的GIST特征提取matlab代码
代码片段和文件信息
% % EXAMPLE 1
% % Load image
% img1 = imread(‘demo1.jpg‘);
%
% % Parameters:
% clear param
% param.imageSize = [256 256]; % it works also with non-square images
% param.orientationsPerScale = [8 8 8 8];
% param.numberBlocks = 4;
% param.fc_prefilt = 4;
%
% % Computing gist requires 1) prefilter image 2) filter image and collect
% % output energies
% [gist1 param] = LMgist(img1 ‘‘ param);
%
% % Visualization
% figure
% subplot(121)
% imshow(img1)
% title(‘Input image‘)
% subplot(122)
% showGist(gist1 param)
% title(‘Descriptor‘)
% EXAMPLE 2
% Load image (this image is not square)
img2 = imread(‘demo2.jpg‘);
% Parameters:
clear param
%param.imageSize. If we do not specify the image size the function LMgist
% will use the current image size. If we specify a size the function will
% resize and crop the input to match the specified size. This is better when
% trying to compute image similarities.
param.orientationsPerScale = [8 8 8 8];
param.numberBlocks = 4;
param.fc_prefilt = 4;
% Computing gist requires 1) prefilter image 2) filter image and collect
% output energies
[gist2 param] = LMgist(img2 ‘‘ param);
% Visualization
figure
subplot(121)
imshow(img2)
title(‘Input image‘)
subplot(122)
showGist(gist2 param)
title(‘Descriptor‘)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 8385 2013-07-21 16:23 Gist特征\LMgist.m
文件 53518 2009-11-21 02:21 Gist特征\demo1.jpg
文件 5957076 2013-07-21 16:24 Gist特征\demo2-Gabor.fig
文件 207479 2011-11-27 02:24 Gist特征\demo2.jpg
文件 1276 2013-07-21 15:39 Gist特征\demoGist.m
文件 522 2009-11-21 02:21 Gist特征\imresizecrop.m
文件 1952 2013-07-21 15:39 Gist特征\showGist.m
目录 0 2013-08-01 11:24 Gist特征\
- 上一篇:lte链路层 matlab仿真4
- 下一篇:唐山市矢量化地图
相关资源
- CBIR(MATLABHSV直方图,Haar纹理特征,
- gabor提取图像特征原理及其matlab实现
- 人口预测模型
- Gabor二维滤波器——最全
- matlab常用纹理特征提取方法GLCM,GLD
- 基于gabor的原子时频分析程序
- 时频分析 Gabor 变换 Matlab程序
- Gaborfilter matlab
- Matlab registration
- 2DPCA人脸识别提取Gabor特征,用2DPCA进
- 指纹识别程序Gabor滤波+详细注释+代码
- 在MATLAB下的gist特征提取及傅里叶变换
- Logistic函数的MATLAB实现
- 图像校正配准
- MATLAB之GUI界面设计 混沌模型 Logisti
- 人口指数Malthus增长模型和Logistic模型
-
logistic混沌simuli
nk模型 - Matlab实现Gabor提取图片纹理
- 机器学习——逻辑回归logistic实现二分
- gabor滤波器的matlab源代码
- gabor滤波二值化.rar
- Gabor特征提取MATLAB代码
- logistic映射代码MATLAB
- Gabor原子的构造
- Gabor的matlab程序,Gabor滤波是一种不错
- 基于Gabor小波变换和人工神经网络的人
- Gabor小波变换
- 基于Logistic系统的图像加密MATLAB版
- 时频Gabor变换
- GaborGMRFLBP纹理特征提取方法_MATLAB
评论
共有 条评论