forked from matkowski-voy/Palmprint-Recognition-in-the-Wild
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7829f07
commit d55bf5f
Showing
618 changed files
with
2,818 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
Oops, something went wrong.