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