Skip to content

Commit 2037187

Browse files
author
Lesia Lin
committed
first commit
0 parents  commit 2037187

File tree

93 files changed

+30026
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+30026
-0
lines changed

.vscode/settings.json

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"files.associations": {
3+
"*.tcc": "cpp",
4+
"list": "cpp",
5+
"cctype": "cpp",
6+
"clocale": "cpp",
7+
"cmath": "cpp",
8+
"cstdarg": "cpp",
9+
"cstddef": "cpp",
10+
"cstdio": "cpp",
11+
"cstdlib": "cpp",
12+
"cstring": "cpp",
13+
"ctime": "cpp",
14+
"cwchar": "cpp",
15+
"cwctype": "cpp",
16+
"array": "cpp",
17+
"atomic": "cpp",
18+
"bit": "cpp",
19+
"bitset": "cpp",
20+
"chrono": "cpp",
21+
"complex": "cpp",
22+
"condition_variable": "cpp",
23+
"cstdint": "cpp",
24+
"deque": "cpp",
25+
"map": "cpp",
26+
"set": "cpp",
27+
"unordered_map": "cpp",
28+
"vector": "cpp",
29+
"exception": "cpp",
30+
"algorithm": "cpp",
31+
"functional": "cpp",
32+
"iterator": "cpp",
33+
"memory": "cpp",
34+
"memory_resource": "cpp",
35+
"numeric": "cpp",
36+
"optional": "cpp",
37+
"random": "cpp",
38+
"ratio": "cpp",
39+
"string": "cpp",
40+
"string_view": "cpp",
41+
"system_error": "cpp",
42+
"tuple": "cpp",
43+
"type_traits": "cpp",
44+
"utility": "cpp",
45+
"fstream": "cpp",
46+
"initializer_list": "cpp",
47+
"iomanip": "cpp",
48+
"iosfwd": "cpp",
49+
"iostream": "cpp",
50+
"istream": "cpp",
51+
"limits": "cpp",
52+
"mutex": "cpp",
53+
"new": "cpp",
54+
"ostream": "cpp",
55+
"sstream": "cpp",
56+
"stdexcept": "cpp",
57+
"streambuf": "cpp",
58+
"thread": "cpp",
59+
"cinttypes": "cpp",
60+
"typeindex": "cpp",
61+
"typeinfo": "cpp",
62+
"variant": "cpp"
63+
}
64+
}

CMakeLists.txt

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
cmake_minimum_required(VERSION 3.10)
2+
project(corner_detect)
3+
find_package( OpenCV REQUIRED )
4+
if(MSVC)
5+
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
6+
endif()
7+
8+
include_directories( ${OpenCV_INCLUDE_DIRS} )
9+
include_directories(${PROJECT_SOURCE_DIR}/src)
10+
include_directories(${PROJECT_SOURCE_DIR}/inc)
11+
12+
13+
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY $<1:${CMAKE_SOURCE_DIR}/prebuilt>)
14+
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY $<1:${CMAKE_SOURCE_DIR}/prebuilt>)
15+
set(CMAKE_CXX_FLAGS "-Wextra -O3 -ffast-math")
16+
add_executable(corner_detect
17+
src/corner_detect.cpp
18+
main.cpp)
19+
target_link_libraries(corner_detect ${OpenCV_LIBS})

0 commit comments

Comments
 (0)