资源简介
sift特征提取,提取dense-sift特征,快速,易懂,很不错的
代码片段和文件信息
function [sift_arr grid_x grid_y] = dense_sift(I grid_spacing patch_size)
% Adapted by Antonio Torralba: modified using convolutions to speed up the computations.
% And brought back into Svetlana‘s library
if(~exist(‘grid_spacing‘‘var‘))
grid_spacing = 1;
end
if(~exist(‘patch_size‘‘var‘))
patch_size = 16;
end
I = double(I);
I = mean(I3);
I = I /max(I(:));
% parameters
num_angles = 8;
num_bins = 4;
num_samples = num_bins * num_bins;
alpha = 9; %% parameter for attenuation of angles (must be odd)
if nargin < 5
sigma_edge = 1;
end
angle_step = 2 * pi / num_angles;
angles = 0:angle_step:2*pi;
angles(num_angles+1) = []; % bin centers
[hgt wid] = size(I);
[G_XG_Y]=gen_dgauss(sigma_edge);
% add boundary:
I = [I(2:-1:1::); I; I(end:-1
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 4715 2013-03-29 20:06 dense_sift.m
相关资源
- SIFT2844912
- wenli 分析了纹理特征提取方法
- docs
- DoGfilters DOG高斯差分实现物体识别中的
- PCA_SVM 此方法采用经典的PCA对人脸图像
- pca_knn 本方法采用pca进行特征提取
- pca 主成分分析程序
- SIFT2830309
- Harris.rar 特征提取是图像配准的重要步
- hao 调制识别全过程
- tezheng 本人找到的非常好的几何特征提
- sift sift图像匹配的纯matlab代码
- palm-recognition 掌纹识别代码
- DCT 先用小波变换进行降维后
- tezhengtiqu 基于小波变换的特征提取
- Khan2 数字图像copy-move篡改检测。特征
- PG_BOW_DEMO 图像的特征用到了Dense Sift
-
ob
ject-Recognition-via-Sparse-PCA 利用稀疏 - SIFT 图像检索中经典的SIFT方法matlab实
- sift----matlab sift算法的完整matlab程序
- colorhist 颜色特征提取
- demo_ASIFT_Win ASIFT图像特征提取源代码
- hog-feature HOG(方向梯度直方图)图像
- DTW 语音识别的matlab仿真
- wxj_CSP 脑电特征提取的典型特征提取算
- bow-sift 实现图片的sift特征的提取
-
SURF-ba
sed-image-stitching SURF算法作为新 - plot 使用sift+RANSAC完成两幅图像的特征
- CNNSVM-master 先利用卷及神经网络提取数
- advanced-harmonic-wavelet-packet 自己编的改
评论
共有 条评论