From cb961ed0d6896309336159bda34ed2f75fb60a84 Mon Sep 17 00:00:00 2001 From: carp <25677564+carp@users.noreply.github.com> Date: Mon, 13 Jul 2020 13:27:55 -0400 Subject: add face detection --- anime-face-detector/make.bat | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 anime-face-detector/make.bat (limited to 'anime-face-detector/make.bat') diff --git a/anime-face-detector/make.bat b/anime-face-detector/make.bat new file mode 100644 index 0000000..b0d9bff --- /dev/null +++ b/anime-face-detector/make.bat @@ -0,0 +1,20 @@ +@echo off +if /i "%1" == "clean" goto clean +goto all + +:all +python setup.py build_ext --inplace +rd /s /q build + +goto exit + + + +:clean +del /f /s /q *.cpp +del /f /s /q *.c +del /f /s /q *.pyd + +goto exit + +:exit -- cgit v1.2.3