diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..dfe0770 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Auto detect text files and perform LF normalization +* text=auto diff --git a/.gitignore b/.gitignore index 259148f..2214cc9 100644 --- a/.gitignore +++ b/.gitignore @@ -30,3 +30,9 @@ *.exe *.out *.app + +# Folder +.idea/ +cmake-build-debug/ +cmake-build-release/ +model_128/ \ No newline at end of file diff --git a/1.jpg b/1.jpg new file mode 100644 index 0000000..ede18e9 Binary files /dev/null and b/1.jpg differ diff --git a/2.png b/2.png new file mode 100644 index 0000000..49a1b25 Binary files /dev/null and b/2.png differ diff --git a/4.jpg b/4.jpg new file mode 100644 index 0000000..7271a57 Binary files /dev/null and b/4.jpg differ diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..e3683f3 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,11 @@ +cmake_minimum_required(VERSION 2.8) +project(main) + +set(QMAKE_CXXFLAGS "-std=c++11") + +find_package( OpenCV REQUIRED) + +#set(CMAKE_BUILD_TYPE Debug) +AUX_SOURCE_DIRECTORY(./src DIR_SRCS) +add_executable( main ${DIR_SRCS}) +target_link_libraries( main ${OpenCV_LIBS} ) diff --git a/README.md b/README.md index 6bf9ce6..c64db96 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ # FaceNet-light -FaceNet-light c++ +FaceNet-light with c++ diff --git a/result.jpg b/result.jpg new file mode 100644 index 0000000..5f3a47d Binary files /dev/null and b/result.jpg differ