Face Transformation app using python/c++/cuda (building a wrapped c++/cuda library for python for Windows)
-
Installer VS Community 2019 et Python 3.9
-
Cloner le repo et initialiser les sous modules
git clone https://github.com/pfriteau/FaceTransform_S9.git git submodule init git submodule update
-
Ouvrir powershell et taper :
cmake -version
si erreur installer CMake et ajouter le repertoire bin aux variables d'environnement
-
Configurer DLib et OpenCV
Les scripts Python utilisent DLib et OpenCV.
Dlib est en sous-module du projet et peut être compiler pour python:
cd ext/dlib python setup.py install
OpenCV est dejà build pour windows dans le projet
Installer dlib et openCV directement localement avec pip:
pip install dlib
pip install opencv-python
-
Pour la librairie CUDA, installer le CUDA Toolkit
-
Créer un dossier
build/
, puis lancer les configs cmake :mkdir build cd build
cmake ..
- Dans
build/
, la solution pour la librairie cpp a été créée. Pour compiler ouvrir la solution.sln
dans Visual Studio 2019. - Générer avec la configuration Release.
-
Exécuter dans
build/
:cmake --build . --config Release --target ALL_BUILD -j 10 --
La librairie est générée dans lib/Release
.
Le code python se trouvant dans python/
devra donc commencer par :
import sys
sys.path.insert(0, "../lib/Release")
import FaceTransform as FT
Si DLib et OpenCV n'ont pas été installées avec pip:
import sys
#Local to project DLib
sys.path.insert(0, "../ext/dlib/build/lib")
import dlib
#Local to project OpenCV
sys.path.insert(0, "../ext/opencv")
import cv2