https://github.com/JiawangBian/GMS-Feature-Matcher
Revision 2c285e32059d35fe19eeeb7ba739b4e8160b82fe authored by JiaWang Bian on 06 April 2020, 02:07:39 UTC, committed by GitHub on 06 April 2020, 02:07:39 UTC
1 parent 0f2f654
Raw File
Tip revision: 2c285e32059d35fe19eeeb7ba739b4e8160b82fe authored by JiaWang Bian on 06 April 2020, 02:07:39 UTC
Update README.md
Tip revision: 2c285e3
CMakeLists.txt
cmake_minimum_required(VERSION 2.8)
project( gms_match_demo)

# OpenCV 
find_package( OpenCV REQUIRED )

# 
include_directories( 
 include
${OpenCV_INCLUDE_DIRS} 
)


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