Skip to content

Commit 7058957

Browse files
committed
Add comments in Intensity Gradient and Filtering exercise
1 parent f72e5d2 commit 7058957

File tree

17 files changed

+155
-0
lines changed

17 files changed

+155
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
cd /home/workspace/cornerness_harris
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
2+
3+
add_definitions(-std=c++11)
4+
5+
set(CXX_FLAGS "-Wall" "-pedantic")
6+
set(CMAKE_CXX_FLAGS, "${CXX_FLAGS}")
7+
8+
project(camera_fusion)
9+
10+
find_package(OpenCV 4.1 REQUIRED)
11+
12+
include_directories(${OpenCV_INCLUDE_DIRS})
13+
link_directories(${OpenCV_LIBRARY_DIRS})
14+
add_definitions(${OpenCV_DEFINITIONS})
15+
16+
# Executables for exercise
17+
add_executable (cornerness_harris src/cornerness_harris.cpp)
18+
target_link_libraries (cornerness_harris ${OpenCV_LIBRARIES})
155 KB
Loading
658 KB
Loading
155 KB
Loading
659 KB
Loading
155 KB
Loading
659 KB
Loading
155 KB
Loading
658 KB
Loading

0 commit comments

Comments
 (0)