资源简介
基于Fisher Vector的人脸检测 ,内用vlfeat库,附详细的代码
代码片段和文件信息
% Copyright (c) 2014 Karen Simonyan
% All rights reserved.
% This code is made available under the terms of the BSD license (see COPYING file).
clear;
% set to ‘false‘ to run locally
isCluster = false;
% experiment name
prms.expName = ‘SIFT_1pix_PCA64_GMM512‘;
% image set name
prms.setName = ‘lfw_aligned‘;
% ‘unrest‘: unrestricted ‘rest‘: restricted
prms.trainSettingName = ‘unrest‘;
% prms.expName = ‘SIFT_1pix_PCA64_GMM512_restricted‘;
% prms.setName = ‘lfw_funneled‘;
% prms.trainSettingName = ‘rest‘;
%%
if isCluster
% run on the cluster
fprintf(‘Computing DSIFT...\n‘);
JD1 = batch(‘face_desc.manager.face_descriptor.compute_dense‘ ‘matlabpool‘ 50 ‘workspace‘ prms);
wait(JD1);
fprintf(‘Learning PCA and codebooks...\n‘);
JD2 = batch(‘face_desc.manager.face_descriptor.learn_pca_gmm‘ ‘matlabpool‘ 10 ‘workspace‘ prms);
wait(JD2);
fprintf(‘Computing FV...\n‘);
JD3 = batch(‘face_desc.manager.face_descriptor.compute_fv‘ ‘matlabpool‘ 50 ‘workspace‘ prms);
else
% copy params struct to the current workspace & run the code
prmsName = fieldnames(prms);
for idxName = 1:numel(prmsName)
assignin(‘base‘ prmsName{idxName} prms.(prmsName{idxName}));
end
% subset of dense SIFT features
face_desc.manager.face_descriptor.compute_dense;
% SIFT-PCA & GMM learning
face_desc.manager.face_descriptor.learn_pca_gmm;
% FV computation
face_desc.manager.face_descriptor.compute_fv;
end
- 上一篇:OPCClient.exe
- 下一篇:CAD窗口并排显示
相关资源
- The quasi-sure existence of solutions for inte
- A Practical Guide to Support Vector Classifica
- AnimatedVectorDrawable.
- “黑色”非多余D3麸皮的全息纠
- AUTOSAR详细介绍vector公司资料
- Vectors Tensors and the Basic Equations of Flu
- labview Vector CAN
- 欧洲 测量与标定协议 XCP 文档,vect
- 位图转矢量图单文件VectorMagic1.15完美
- AUTOSAR详细介绍vector的文档
- SVG2Vector离线编辑和预览工具
- UDS_Vector.pdf
- KUKA VectorMove 1.0.2.92
- cesium加载mvt 矢量瓦片
- CANalyzer分析介绍PPT
- VECTOR的CCP源码(CAN标定协议代码)
- An Introduction to Support Vector Machines and
- 几篇比较好的核fisher文章
- AUTOSAR_Overview2019年VECTOR培训资料
- 基于Fisher判别分析法的矿柱稳定性研
- OPTIMIZATION BY VECTOR SPACE METHODS 最优化的
- Learning with Kernels - Support Vector Machine
- VECTOR_AUTOSAR入门与实践培训材料(PP
- Vector control of three-phase ac machines
- 深度学习中word2vector测试语料text8
- VectorCAST Getting Started Guide-Chinese v1.0
- 深度学习word2vector测试语料text8
- 基于Alize的ivector算法
- VectorMagic_1.15pojie.rar
- Vector Magic含注册机
评论
共有 条评论