Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- apt update
- vi
- vtk
- esp32
- opencv apt설치
- annotating
- vim명령어
- libopencv-dev
- ubuntu
- rotation
- api사용해서 google drive에 폴더만들기
- translation
- Python
- Google Drive API
- sshkey
- 정보처리기사
- google drive 업로드
- opencv
- vim
- c#
- 아두이노 설치
- opencv resize
- 고정ip할당
- 우분투 opencv 설치
- google drive upload
- NodeMCU
- opengl
- 정보처리기사후기
- Winform
- 아두이노
Archives
- Today
- Total
목록opencv resize (1)
내가 보려고 만든 블로그

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 ..
OpenCV/c++
2024. 5. 23. 19:14