create project

create project
This commit is contained in:
2019-12-25 09:40:38 +08:00
parent 02d22f476b
commit dbcdd2f241
8 changed files with 20 additions and 1 deletions

2
.gitattributes vendored Normal file
View File

@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto

6
.gitignore vendored
View File

@@ -30,3 +30,9 @@
*.exe
*.out
*.app
# Folder
.idea/
cmake-build-debug/
cmake-build-release/
model_128/

BIN
1.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

BIN
2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

BIN
4.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

11
CMakeLists.txt Normal file
View File

@@ -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} )

View File

@@ -1,2 +1,2 @@
# FaceNet-light
FaceNet-light c++
FaceNet-light with c++

BIN
result.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB