Tadas Baltrusaitis
a2a3bd08c2
Another optimization of moving the bias term addition to the matrix multiplication.
2017-08-23 20:43:19 +01:00
Tadas Baltrusaitis
b57bdd2127
Speeding up MTCNN a bit, through optimization of im2col and transposing the convolution multiplication so it is easier to split
2017-08-23 20:00:18 +01:00
Tadas Baltrusaitis
452d1b8008
Integrating MTCNN in all of the demos.
2017-08-18 20:57:19 +01:00
Tadas Baltrusaitis
a251415fea
Starting to incorporate MTCNN
2017-08-18 10:03:01 +01:00
Tadas Baltrusaitis
a3be476d4d
Parallelizing the MTCNN face detection
2017-08-17 14:17:20 +01:00
Tadas Baltrusaitis
441777c9ed
Code cleanup and rearrangement.
2017-08-17 12:35:11 +01:00
Tadas Baltrusaitis
8d01ea5911
Different implementation of convolution, through matrix multiplication which is quite a bit faster.
2017-08-17 11:40:57 +01:00
Tadas Baltrusaitis
2bd085cb47
Exploring CNN optimization
2017-08-16 17:14:00 +01:00
Tadas Baltrusaitis
d062ab690d
Final bit of simplification and fixing an issue with RNet and ONet.
2017-08-15 21:53:25 +01:00
Tadas Baltrusaitis
f4e73cc23f
Simplification of flow
2017-08-15 18:06:12 +01:00
Tadas Baltrusaitis
f8519bf385
Simplifying CNN code, plus max-pooling bug fix.
2017-08-15 17:57:25 +01:00
Tadas Baltrusaitis
0c2137d950
Adding bounding box correction and an addition to non maximum supression.
2017-08-15 11:44:05 +01:00
Tadas Baltrusaitis
dd17680e2c
RNet and ONet application.
2017-08-15 10:13:08 +01:00
Tadas Baltrusaitis
02a66563e1
Fixing max-pooling for different stride sizes.
2017-08-15 08:55:37 +01:00
Tadas Baltrusaitis
1d76c96cc8
Finishing the PNet step and preparing output for RNet.
2017-08-14 22:07:21 +01:00
Tadas Baltrusaitis
0f94d53d9d
Helper functions for MTCNN implementation.
2017-08-14 16:23:44 +01:00
Tadas Baltrusaitis
6dbed701bc
Fix with CNN inference sizes.
2017-08-11 14:56:45 -04:00
Tadas Baltrusaitis
abcc91364e
Towards MTCNN, implementing PNet
2017-08-10 15:30:35 -04:00
Tadas Baltrusaitis
13e42a70cf
Some more work on MTCNN.
2017-08-09 16:16:31 -04:00
Tadas Baltrusaitis
7fe7bb4904
Towards MTCNN c++ implementation.
2017-08-09 15:04:14 -04:00
Tadas Baltrusaitis
8dea625717
Adding more preparation for MTCNN in C++
2017-08-09 12:01:53 -04:00
Tadas Baltrusaitis
8b5f8b9a36
Starting to work on MTCNN C++ implementation.
2017-08-09 11:00:38 -04:00
Tadas Baltrusaitis
9a92d4d9c8
Removing legacy CLM-Z models.
2017-08-02 13:39:31 -04:00
Tadas Baltrusaitis
5959176921
Some big changes:
...
- face validator is a retrained CNN now
- starting retiring CLM-Z from OpenFace
2017-08-01 17:11:02 -04:00
Tadas Baltrusaitis
8eb086545c
Simplified validator model.
2017-07-31 15:55:29 -04:00
Tadas Baltrusaitis
7513cf7964
Speeding up fancy face validation.
2017-07-29 21:11:16 -04:00
Tadas Baltrusaitis
8cc98be724
First try at a new landmark validator.
2017-07-29 18:19:41 -04:00
yorkie
a539e73b93
parameters: when fdloc provided, set detector to use HAAR cascade
2017-06-15 11:13:42 +08:00
yorkie
138c8bd463
add -fdloc for customize face detection/classifier files
2017-06-14 11:46:44 +08:00
Tadas Baltrusaitis
305af01326
Auto stash before merge of "develop" and "origin/develop"
...
- Adding new license files
- Replacing images with more suitable CC ones
2017-05-08 21:36:23 -04:00
Tadas Baltrusaitis
1c546298b8
A small fix for linux compilation.
2017-03-08 14:25:13 -05:00
Tadas Baltrusaitis
52c50b4ff3
- Fixing the issue with gaze not tracking properly in video and landmark modes.
...
- Fixing the simscale/simalign bug
2017-03-08 11:46:50 -05:00
somacoder
15ee31bece
Update LandmarkDetectorModel.cpp
...
Moved eye_model false assignment from header.
2017-02-23 13:46:39 -05:00
somacoder
86341fae30
Update LandmarkDetectorModel.h
...
Moving default boolean eye model assignment of false to cpp.
2017-02-23 13:45:09 -05:00
Tadas Baltrusaitis
51f442a3e2
Merge pull request #107 from CJxD/develop
...
Fix CMake install process for Unix make install
2017-01-03 14:20:34 -05:00
Chris Watts
c334bf0ac3
Use preprocessor defines rather than configured header files for CONFIG_DIR so it works when not using CMake
2016-12-29 23:36:10 +00:00
Chris Watts
b33fe0730a
Fix the make install process on Unix
...
Conflicts:
.gitignore
2016-12-18 00:10:43 +00:00
Tadas Baltrusaitis
7b2bd15f2e
- A bug fix in FeatureExtraction when video is shorter than 3 frames.
...
- A small fix in head pose experiment output
2016-12-16 12:13:36 -05:00
takiyu
7fc945cf70
Fix lack of a bounding box argument
2016-10-21 00:07:11 +09:00
Guillaume Chanel
358cd6f9e2
Added the possibility to change the output videos codec by specifying the -oc option
...
A warning is now issued in the case the VideoWriter could not be instantiated, advising to change the codec
This change applies to FaceLandmarkVid* and FeatureExtraction executables
The option is used as "-oc CODEC_FOURCC" and defaults to DIVX. If the user inputs a FOURCC with a size different than 4, than the default codec is used
The option is handled by the function get_video_input_output_params in the LandMarkDetector namespace
2016-09-14 09:00:57 +02:00
Tadas Baltrusaitis
c1ff40399e
Bug fixes
2016-09-06 12:32:33 -04:00
Tadas Baltrusaitis
1b804c95b6
Merge branch 'master' into develop
2016-09-06 10:37:03 -04:00
Tadas Baltrusaitis
96f9f5d06f
Merge branch 'feature/logging' into develop
2016-09-06 10:26:10 -04:00
Tadas Baltrusaitis
c1431fe815
Fixes with drawing antialiased lines and landmarks using sub-pixel precision.
2016-09-06 10:20:31 -04:00
Clint Banzhaf
8a7c140e32
Fix '=' compare
2016-08-26 21:14:29 +02:00
Tadas Baltrusaitis
ef15d5c2cd
Getting rid of compiler warnings.
2016-08-14 10:20:07 -04:00
Tadas Baltrusaitis
4c2e0bd9a0
Getting rid of some warnings.
2016-08-13 17:56:17 -04:00
Tadas Baltrusaitis
a81f1d3223
Merge pull request #39 from Temigo/master
...
Fix install in CMakeLists.txt files
2016-08-04 14:13:33 -04:00
Tadas Baltrusaitis
5416048697
Corrections for output, faster compilation in VS2015, retuning experiments.
2016-08-01 13:39:52 -04:00
Temigo
eedf6ea37e
Fix install in CMakeLists.txt files
2016-08-01 11:34:23 +02:00