Moving the image sequence samples to a place that makes more sense, adding more tests for coping with grayscale and 16-bit images.
1
.gitignore
vendored
|
@ -57,3 +57,4 @@ exe/FeatureExtraction/processed/
|
||||||
exe/FaceLandmarkImg/processed/
|
exe/FaceLandmarkImg/processed/
|
||||||
exe/FeatureExtraction/processed_features/
|
exe/FeatureExtraction/processed_features/
|
||||||
matlab_runners/Demos/processed_features/
|
matlab_runners/Demos/processed_features/
|
||||||
|
*.db
|
||||||
|
|
|
@ -11,7 +11,7 @@ else
|
||||||
end
|
end
|
||||||
|
|
||||||
% Input file
|
% Input file
|
||||||
in_dir = '../../image_sequence';
|
in_dir = '../../samples/image_sequence';
|
||||||
|
|
||||||
% Where to store the output
|
% Where to store the output
|
||||||
output_dir = './processed_features/';
|
output_dir = './processed_features/';
|
||||||
|
|
29
matlab_runners/Demos/run_test_img_seq.m
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
% A test script on image sequences, making sure grayscale and 16 bit
|
||||||
|
% sequences work
|
||||||
|
|
||||||
|
clear
|
||||||
|
|
||||||
|
% The location executable will depend on the OS
|
||||||
|
if(isunix)
|
||||||
|
executable = '"../../build/bin/FeatureExtraction"';
|
||||||
|
else
|
||||||
|
executable = '"../../x64/Release/FeatureExtraction.exe"';
|
||||||
|
end
|
||||||
|
|
||||||
|
% Input file
|
||||||
|
in_dirs = {'../../samples/image_sequence',...
|
||||||
|
'../../samples/image_sequence_gray', ...
|
||||||
|
'../../samples/image_sequence_16bit'};
|
||||||
|
|
||||||
|
% Where to store the output
|
||||||
|
output_dir = './processed_features/';
|
||||||
|
|
||||||
|
for i=1:numel(in_dirs)
|
||||||
|
command = sprintf('%s -fdir "%s" -out_dir "%s" -verbose', executable, in_dirs{i}, output_dir);
|
||||||
|
|
||||||
|
if(isunix)
|
||||||
|
unix(command);
|
||||||
|
else
|
||||||
|
dos(command);
|
||||||
|
end
|
||||||
|
end
|
|
@ -55,6 +55,7 @@ run_demo_images;
|
||||||
run_demo_videos;
|
run_demo_videos;
|
||||||
run_demo_video_multi;
|
run_demo_video_multi;
|
||||||
run_demo_align_size;
|
run_demo_align_size;
|
||||||
|
run_test_img_seq;
|
||||||
feature_extraction_demo_vid;
|
feature_extraction_demo_vid;
|
||||||
feature_extraction_demo_img_seq;
|
feature_extraction_demo_img_seq;
|
||||||
gaze_extraction_demo_vid;
|
gaze_extraction_demo_vid;
|
||||||
|
|
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
BIN
samples/image_sequence_16bit/001.png
Normal file
After Width: | Height: | Size: 328 KiB |
BIN
samples/image_sequence_16bit/002.png
Normal file
After Width: | Height: | Size: 330 KiB |
BIN
samples/image_sequence_16bit/003.png
Normal file
After Width: | Height: | Size: 332 KiB |
BIN
samples/image_sequence_16bit/004.png
Normal file
After Width: | Height: | Size: 331 KiB |
BIN
samples/image_sequence_16bit/005.png
Normal file
After Width: | Height: | Size: 333 KiB |
BIN
samples/image_sequence_16bit/006.png
Normal file
After Width: | Height: | Size: 334 KiB |
BIN
samples/image_sequence_16bit/007.png
Normal file
After Width: | Height: | Size: 334 KiB |
BIN
samples/image_sequence_16bit/008.png
Normal file
After Width: | Height: | Size: 334 KiB |
BIN
samples/image_sequence_16bit/009.png
Normal file
After Width: | Height: | Size: 336 KiB |
BIN
samples/image_sequence_16bit/010.png
Normal file
After Width: | Height: | Size: 337 KiB |
BIN
samples/image_sequence_16bit/011.png
Normal file
After Width: | Height: | Size: 337 KiB |
BIN
samples/image_sequence_16bit/012.png
Normal file
After Width: | Height: | Size: 337 KiB |
BIN
samples/image_sequence_16bit/013.png
Normal file
After Width: | Height: | Size: 336 KiB |
BIN
samples/image_sequence_16bit/014.png
Normal file
After Width: | Height: | Size: 337 KiB |
BIN
samples/image_sequence_16bit/015.png
Normal file
After Width: | Height: | Size: 338 KiB |
BIN
samples/image_sequence_16bit/016.png
Normal file
After Width: | Height: | Size: 323 KiB |
BIN
samples/image_sequence_16bit/017.png
Normal file
After Width: | Height: | Size: 324 KiB |
BIN
samples/image_sequence_16bit/018.png
Normal file
After Width: | Height: | Size: 329 KiB |
BIN
samples/image_sequence_16bit/019.png
Normal file
After Width: | Height: | Size: 330 KiB |
BIN
samples/image_sequence_16bit/020.png
Normal file
After Width: | Height: | Size: 332 KiB |
BIN
samples/image_sequence_16bit/021.png
Normal file
After Width: | Height: | Size: 333 KiB |
BIN
samples/image_sequence_16bit/022.png
Normal file
After Width: | Height: | Size: 334 KiB |
BIN
samples/image_sequence_16bit/023.png
Normal file
After Width: | Height: | Size: 336 KiB |
BIN
samples/image_sequence_16bit/024.png
Normal file
After Width: | Height: | Size: 336 KiB |
BIN
samples/image_sequence_16bit/025.png
Normal file
After Width: | Height: | Size: 337 KiB |
BIN
samples/image_sequence_16bit/026.png
Normal file
After Width: | Height: | Size: 337 KiB |
BIN
samples/image_sequence_16bit/027.png
Normal file
After Width: | Height: | Size: 338 KiB |
BIN
samples/image_sequence_16bit/028.png
Normal file
After Width: | Height: | Size: 339 KiB |
BIN
samples/image_sequence_16bit/029.png
Normal file
After Width: | Height: | Size: 339 KiB |
BIN
samples/image_sequence_16bit/030.png
Normal file
After Width: | Height: | Size: 338 KiB |
BIN
samples/image_sequence_gray/001.jpg
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
samples/image_sequence_gray/002.jpg
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
samples/image_sequence_gray/003.jpg
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
samples/image_sequence_gray/004.jpg
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
samples/image_sequence_gray/005.jpg
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
samples/image_sequence_gray/006.jpg
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
samples/image_sequence_gray/007.jpg
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
samples/image_sequence_gray/008.jpg
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
samples/image_sequence_gray/009.jpg
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
samples/image_sequence_gray/010.jpg
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
samples/image_sequence_gray/011.jpg
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
samples/image_sequence_gray/012.jpg
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
samples/image_sequence_gray/013.jpg
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
samples/image_sequence_gray/014.jpg
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
samples/image_sequence_gray/015.jpg
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
samples/image_sequence_gray/016.jpg
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
samples/image_sequence_gray/017.jpg
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
samples/image_sequence_gray/018.jpg
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
samples/image_sequence_gray/019.jpg
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
samples/image_sequence_gray/020.jpg
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
samples/image_sequence_gray/021.jpg
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
samples/image_sequence_gray/022.jpg
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
samples/image_sequence_gray/023.jpg
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
samples/image_sequence_gray/024.jpg
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
samples/image_sequence_gray/025.jpg
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
samples/image_sequence_gray/026.jpg
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
samples/image_sequence_gray/027.jpg
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
samples/image_sequence_gray/028.jpg
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
samples/image_sequence_gray/029.jpg
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
samples/image_sequence_gray/030.jpg
Normal file
After Width: | Height: | Size: 24 KiB |