create project
create project
This commit is contained in:
2
.gitattributes
vendored
Normal file
2
.gitattributes
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
# Auto detect text files and perform LF normalization
|
||||||
|
* text=auto
|
||||||
6
.gitignore
vendored
6
.gitignore
vendored
@@ -30,3 +30,9 @@
|
|||||||
*.exe
|
*.exe
|
||||||
*.out
|
*.out
|
||||||
*.app
|
*.app
|
||||||
|
|
||||||
|
# Folder
|
||||||
|
.idea/
|
||||||
|
cmake-build-debug/
|
||||||
|
cmake-build-release/
|
||||||
|
model_128/
|
||||||
11
CMakeLists.txt
Normal file
11
CMakeLists.txt
Normal 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} )
|
||||||
@@ -1,2 +1,2 @@
|
|||||||
# FaceNet-light
|
# FaceNet-light
|
||||||
FaceNet-light c++
|
FaceNet-light with c++
|
||||||
|
|||||||
BIN
result.jpg
Normal file
BIN
result.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 18 KiB |
Reference in New Issue
Block a user