일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- rotation
- Winform
- 우분투 opencv 설치
- esp32
- 고정ip할당
- google drive 업로드
- Python
- sshkey
- apt update
- opengl
- opencv
- ubuntu
- 아두이노 설치
- c#
- Google Drive API
- google drive upload
- 정보처리기사후기
- api사용해서 google drive에 폴더만들기
- vim명령어
- vim
- translation
- NodeMCU
- annotating
- 정보처리기사
- opencv resize
- vi
- libopencv-dev
- vtk
- 아두이노
- opencv apt설치
- Today
- Total
목록OpenCV/c++ (7)
내가 보려고 만든 블로그
https://learnopencv.com/image-filtering-using-convolution-in-opencv/main.cpp#include #include int main() { // read image cv::Mat image = cv::imread("Lenna.png"); if (image.empty()){ std::cout (3,3) (3,3)
CMakeLists.txtcmake_minimum_required(VERSION 3.10)project(OpenCVExample)find_package(OpenCV REQUIRED)include_directories(${OpenCV_INCLUDE_DIRS}) add_executable(main main.cpp)target_link_libraries(main ${OpenCV_LIBS}) main.cpp#include #include int main() { // read image cv::Mat image = cv::imread("Lenna.png"); if (image.empty()){ std::cout 실행하니까 다 잘나옴.
CMakeLists.txtcmake_minimum_required(VERSION 3.10)project(OpenCVExample)find_package(OpenCV REQUIRED)include_directories(${OpenCV_INCLUDE_DIRS}) add_executable(main main.cpp)target_link_libraries(main ${OpenCV_LIBS}) main.cpp#include #include int main() { // read image cv::Mat image = cv::imread("Lenna.png"); // rotated ///////////////////////////////////////////////////////////////// double a..
CMakeLists.txtcmake_minimum_required(VERSION 3.10)project(OpenCVExample)find_package(OpenCV REQUIRED)include_directories(${OpenCV_INCLUDE_DIRS}) add_executable(main main.cpp)target_link_libraries(main ${OpenCV_LIBS}) main.cpp#include #include int main() { // read image cv::Mat image = cv::imread("Lenna.png"); // image w,h,channel std::cout make 하고 실행하면이렇게 이미지가 잘림.
CMakeLists.txtcmake_minimum_required(VERSION 3.10)project(OpenCVExample)find_package(OpenCV REQUIRED)include_directories(${OpenCV_INCLUDE_DIRS}) add_executable(main main.cpp)target_link_libraries(main ${OpenCV_LIBS})~ main.cpp#include #include int main() { // read image cv::Mat image = cv::imread("Lenna.png"); cv::imshow("Original Image", image); // let's downscale the image using ..
1.CMakeLists만들기본인이 테스트 하고 싶은 경로로 가서vim CMakeLists.txt 하기 CMakeLists.txtcmake_minimum_required(VERSION 3.10)project(OpenCVExample)find_package(OpenCV REQUIRED)include_directories(${OpenCV_INCLUDE_DIRS})add_executable(main main.cpp)target_link_libraries(main ${OpenCV_LIBS}) 2.main.cpp만들기main.cpp#include #include int main() { // 이미지 읽기 cv::Mat img_color = cv::imread("Lenna.png", cv::IMREAD_COLOR); ..