Skip to content

Commit

Permalink
updates in directory naming convention
Browse files Browse the repository at this point in the history
  • Loading branch information
changh95 committed Oct 9, 2023
1 parent b8a7b65 commit ccdb265
Show file tree
Hide file tree
Showing 27 changed files with 20 additions and 65 deletions.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion 1_7.cpp_기초/Dockerfile → 1_7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM slam:latest
MAINTAINER changh95
ARG DEBIAN_FRONTEND=noninteractive

RUN cd fastcampus_slam_codes/'1_7.cpp_'$'\352\270\260\354\264\210' &&\
RUN cd fastcampus_slam_codes/1_7 &&\
mkdir build && cd build &&\
cmake .. &&\
make -j
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
64 changes: 0 additions & 64 deletions 3_1.feature_detection_and_matching/CMakeLists.txt

This file was deleted.

Empty file.
12 changes: 12 additions & 0 deletions 3_1/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
cmake_minimum_required(VERSION 3.10)
project("orb feature matching" LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 17)

find_package(OpenCV REQUIRED)
if (OpenCV_FOUND)
message(STATUS "Found OpenCV library: " ${OpenCV_INCLUDE_DIRS})
include_directories(${OpenCV_INCLUDE_DIRS})
endif (OpenCV_FOUND)

add_executable(orb_feature_matching examples/orb_feature_matching.cpp)
target_link_libraries(orb_feature_matching ${OPENCV_LIBS})
7 changes: 7 additions & 0 deletions 3_1/examples/orb_feature_matching.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#include <iostream>
#include <opencv2/opencv.hpp>

int main()
{
std::cout << "hi!" << std::endl;
}

0 comments on commit ccdb265

Please sign in to comment.