https://github.com/JiawangBian/GMS-Feature-Matcher
Revision 6786aed981ed2dde5f8a4bb5bb45b634f692a17b authored by JiaWang Bian on 15 May 2017, 11:00:41 UTC, committed by GitHub on 15 May 2017, 11:00:41 UTC
1 parent 42e7881
Raw File
Tip revision: 6786aed981ed2dde5f8a4bb5bb45b634f692a17b authored by JiaWang Bian on 15 May 2017, 11:00:41 UTC
Update README.md
Tip revision: 6786aed
CMakeLists.txt
cmake_minimum_required(VERSION 2.8)
project( gms_match_demo)

# OpenCV 
find_package( OpenCV REQUIRED )

# 
include_directories( 
 include
${OpenCV_INCLUDE_DIRS} 
)

# c++ 11
add_definitions(-std=c++11)


add_executable( gms_match_demo ./src/demo.cpp )
target_link_libraries( gms_match_demo ${OpenCV_LIBS} )
back to top