cmake_minimum_required(VERSION 2.8)
project( DisplayImage )
set( OpenCV_LIBS )
find_package( OpenCV REQUIRED COMPONENTS core imgproc )
add_executable( detectblur detectblur.cpp )
target_link_libraries( detectblur ${OpenCV_LIBS} )
