Skip to content

Commit

Permalink
s1
Browse files Browse the repository at this point in the history
  • Loading branch information
matkowski-voy committed Nov 5, 2019
1 parent 7829f07 commit d55bf5f
Show file tree
Hide file tree
Showing 618 changed files with 2,818 additions and 0 deletions.
6 changes: 6 additions & 0 deletions EE-PRnet/augment_build_imdb_script.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
imgType = 'img';
dbName = 'NTU-PI-demo';
dataListName = 'DataNclass.mat';
expNum = 'exp1';

augment_build_imdb(expNum,dbName,imgType,dataListName);
14 changes: 14 additions & 0 deletions EE-PRnet/buildFeat_script.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
% buildFeat script

expNum = 'exp1';
imgType = 'img';
netName = 'net-epoch-10.mat';

netPath = fullfile(pwd,'results',expNum,netName);
paths.imagesTrain = fullfile('../databases',dbName,'/flip/',imgType,'/train/');
paths.imagesTest = fullfile('../databases',dbName,'/flip/',imgType,'/test/');

fprintf('building gallery set features\n')
buildFeat(expNum,imgType,'train',paths.imagesTrain,netPath)
fprintf('building probe set features\n')
buildFeat(expNum,imgType,'test',paths.imagesTest,netPath)
6 changes: 6 additions & 0 deletions EE-PRnet/buildPLSmodels_script.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
% buildPLSmodels script

expNum = 'exp1';
netName = 'net-epoch-10.mat';
kParam = 50;
buildPLSmodels(expNum,netName,kParam)
Loading

0 comments on commit d55bf5f

Please sign in to comment.