suivi moteur et presentation html

This commit is contained in:
Jacques Zhong 2017-05-01 20:45:20 +02:00
parent 81ea78a32d
commit 166879222f
62 changed files with 3196 additions and 0 deletions

View file

@ -0,0 +1,5 @@
cmake_minimum_required(VERSION 2.8)
project( DisplayImage )
find_package( OpenCV REQUIRED )
add_executable( DisplayImage DisplayImage.cpp )
target_link_libraries( DisplayImage ${OpenCV_LIBS} )