-
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.
Updated README based on function calls
- Loading branch information
unknown
committed
Mar 20, 2015
1 parent
d649f60
commit 9dd090b
Showing
1 changed file
with
20 additions
and
7 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 |
---|---|---|
@@ -1,14 +1,27 @@ | ||
# COMP6206-Eulerian-Video-Magnification | ||
Vision Based Blood Pressure/Pulse Detection | ||
|
||
To reproduce the results shown in the paper: | ||
1) (Optional) Run "make.m" to build pyramid toolbox libraries (this is | ||
REQUIRED if using Mac OS and MATLAB newer than 2011b). | ||
2) Run "install.m". | ||
# To reproduce the results shown in the paper: | ||
1) Run "make.m" to build pyramid toolbox libraries: | ||
|
||
% Build matlabPyrTools | ||
fprintf('Building matlabPyrTools...\n'); | ||
run(fullfile('matlabPyrTools', 'Mex', 'compilePyrTools.m')); | ||
|
||
2) Run "install.m": | ||
|
||
addpath('./matlabPyrTools'); | ||
addpath('./matlabPyrTools/MEX'); | ||
|
||
3) Run "reproduceResults.m" to reproduce all the results in the paper. | ||
|
||
Example function for colour result from face2.mp4: | ||
% Color | ||
amplify_spatial_Gdown_temporal_ideal(inFile,resultsDir,50,6, ... | ||
50/60,60/60,30, 1); | ||
% Spatial Filtering: Gaussian blur and down sample | ||
% Temporal Filtering: Ideal bandpass | ||
|
||
Current issues: | ||
# Current issues: | ||
Uses pyramid toolbox (matlabPyrTools) - requires "make.m" to build library | ||
Uses MATLAB's Image Processing Toolbox | ||
What does 'install.m' do? | ||
Uses MATLAB's Image Processing Toolbox |