1
0
mirror of https://github.com/2martens/uni.git synced 2026-05-06 11:26:25 +02:00

[CCV] Implemented first version of saliency system

Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
2017-05-30 16:13:25 +02:00
parent 63e58af14a
commit ae24a8e256
8 changed files with 516 additions and 0 deletions

View File

@ -0,0 +1,9 @@
cmake_minimum_required(VERSION 3.5)
project(saliency)
set(CMAKE_CXX_STANDARD 11)
find_package( OpenCV REQUIRED )
add_executable(saliency fusion.cpp gauss_pyramid.cpp lab_pyramid.cpp main.cpp)
target_link_libraries(saliency ${OpenCV_LIBS})