Skip to content

Commit e0dd7eb

Browse files
committed
Reorganize directories
1 parent dba9cb0 commit e0dd7eb

83 files changed

Lines changed: 48 additions & 7204 deletions

File tree

Some content is hidden

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

CMakeLists.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,17 @@ project(3dv_tutorial)
44
set(CMAKE_CXX_STANDARD 11)
55
set(CMAKE_BUILD_TYPE Release)
66
find_package(OpenCV REQUIRED)
7+
find_package(Ceres REQUIRED)
78

8-
set(SRC_DIR "${CMAKE_SOURCE_DIR}/src")
9+
set(SRC_DIR "${CMAKE_SOURCE_DIR}/examples")
910
set(BIN_DIR "${CMAKE_SOURCE_DIR}/bin")
1011

1112
file(GLOB APP_SOURCES "${SRC_DIR}/*.cpp")
1213
foreach(app_source ${APP_SOURCES})
1314
string(REPLACE ".cpp" "" app_name ${app_source})
1415
string(REPLACE "${SRC_DIR}/" "" app_name ${app_name})
1516
add_executable(${app_name} ${app_source})
16-
target_link_libraries(${app_name} ${OpenCV_LIBS})
17+
target_include_directories(${app_name} ${CERES_INCLUDE_DIRS})
18+
target_link_libraries(${app_name} ${OpenCV_LIBS} ${CERES_LIBRARIES})
1719
install(TARGETS ${app_name} DESTINATION ${BIN_DIR})
1820
endforeach(app_source ${APP_SOURCES})

README.md

Lines changed: 19 additions & 19 deletions

calibration/board.jpg

-3.4 MB
Binary file not shown.

calibration/camera_calibration_v2.py

Lines changed: 0 additions & 84 deletions
This file was deleted.

calibration/corner.py

Lines changed: 0 additions & 29 deletions
This file was deleted.

calibration/fisheye_calibration_v1.py

Lines changed: 0 additions & 72 deletions
This file was deleted.

calibration/pybackend2.cpython-38-x86_64-linux-gnu.so

Lines changed: 0 additions & 1 deletion
This file was deleted.

calibration/pybackend2.cpython-38-x86_64-linux-gnu.so.2

Lines changed: 0 additions & 1 deletion
This file was deleted.
-961 KB
Binary file not shown.

calibration/pyrealsense2.cpython-38-x86_64-linux-gnu.so

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)