Same problem here. I have a GTX 1060 6GB but i get "no faces found" error. When i try to install dependencies i get the thessage "impossible to find specified path".
EDIT: all problems seems related to unicode characters in my install path (i used "!MVE" as my install folder). Thanks SPT for the help
I've made a batch script as requested by SPT to manage bad aligned images and use them into MVE. Just copy/paste the following text and save it as *.bat file, then run it from DFL root folder. First make backup of your facesets first just for precaution...i've got to do more tests
EDIT: assuming that you have first checked and deleted all bad DFL landmarks images from SRC or DST "aligned_debug" folder to recycle bin, follow on screen instructions.
The script will create a folder called "MVE Project" inside DFL main install folder, with the sub-folders "aligned" and "FRAMES" (like in this made by angeloshredder) and their relative extracted frames and faces.
Note: the "MVE Project" folder will contain only the necessary files that DFL can't handle correctly, ready to be fixed with MVE:
Code:
ECHO OFF
CLS
START shell:RecycleBinFolder
ECHO ==================================================================================
ECHO PREPARING .JPG IMAGE DATASET WITH BAD LANDMARKS FOR MACHINE VIDEO EDITOR
ECHO Move deleted landmark debug images from recycle bin directly into the folder
ECHO "recovered_landmarks" of your DST/SRC dataset. DON'T RECOVER TO ORIGINAL location!
ECHO.
ECHO WHEN DONE, SELECT SOURCE or DESTINATION DATASET TO PROCESS
ECHO ==================================================================================
SET /P C=DO YOU WANT TO PROCESS SOURCE OR DESTINATION DATASET [S/D, Q to ABORT]?
IF /I "%C%" EQU "S" GOTO :SOURCE
IF /I "%C%" EQU "D" GOTO :DESTINATION
IF /I "%C%" EQU "Q" GOTO :ABORT
GOTO :CHOICE
:SOURCE
MD "workspace\data_src\recovered_debug"
MD "MVE Project\FRAMES"
MD "MVE Project\aligned"
XCOPY /I /K /Q /Y "workspace\data_src\*.jpg" "MVE Project\FRAMES"
XCOPY /I /K /Q /Y "workspace\data_src\aligned\*.jpg" "MVE Project\aligned"
ATTRIB +R "workspace\data_src\recovered_debug\*.jpg"
XCOPY /I /K /Q /Y "workspace\data_src\recovered_debug" "MVE Project\FRAMES"
DEL /AR /Q "MVE Project\FRAMES"
ATTRIB -R "workspace\data_src\recovered_debug\*.jpg"
REN "workspace\data_src\recovered_debug\*.jpg" *.
REN "workspace\data_src\recovered_debug\*" *_0.jpg
ATTRIB +R "workspace\data_src\recovered_debug\*.jpg"
XCOPY /I /K /Q /Y "workspace\data_src\recovered_debug" "MVE Project\aligned"
DEL /AR /Q "MVE Project\aligned"
ATTRIB -R "workspace\data_src\recovered_debug\*.jpg"
:DESTINATION
MD "workspace\data_dst\recovered_debug"
MD "MVE Project\FRAMES"
MD "MVE Project\aligned"
XCOPY /I /K /Q /Y "workspace\data_dst\*.jpg" "MVE Project\FRAMES"
XCOPY /I /K /Q /Y "workspace\data_dst\aligned\*.jpg" "MVE Project\aligned"
ATTRIB +R "workspace\data_dst\recovered_debug\*.jpg"
XCOPY /I /K /Q /Y "workspace\data_dst\recovered_debug" "MVE Project\FRAMES"
DEL /AR /Q "MVE Project\FRAMES"
ATTRIB -R "workspace\data_dst\recovered_debug\*.jpg"
REN "workspace\data_dst\recovered_debug\*.jpg" *.
REN "workspace\data_dst\recovered_debug\*" *_0.jpg
ATTRIB +R "workspace\data_dst\recovered_debug\*.jpg"
XCOPY /I /K /Q /Y "workspace\data_dst\recovered_debug" "MVE Project\aligned"
DEL /AR /Q "MVE Project\aligned"
ATTRIB -R "workspace\data_dst\recovered_debug\*.jpg"
:ABORT
GOTO :EOF
ECHO ON