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
- vim명령어
- api사용해서 google drive에 폴더만들기
- 고정ip할당
- vim
- 정보처리기사후기
- Google Drive API
- libopencv-dev
- 정보처리기사
- Winform
- esp32
- rotation
- google drive upload
- google drive 업로드
- opencv resize
- sshkey
- 우분투 opencv 설치
- ubuntu
- 아두이노
- Python
- vi
- 아두이노 설치
- opengl
- annotating
- c#
- apt update
- vtk
- NodeMCU
- translation
- opencv apt설치
- opencv
Archives
- Today
- Total
내가 보려고 만든 블로그
OpenCV를 사용한 이미지 크기 조정(c++) 본문
반응형
CMakeLists.txt
cmake_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 <opencv2/opencv.hpp>
#include <iostream>
int main() {
// read image
cv::Mat image = cv::imread("Lenna.png");
cv::imshow("Original Image", image);
// let's downscale the image using new width and height
int down_width = 300;
int down_height = 200;
cv::Mat resized_down;
//resize down
cv::resize(image, resized_down, cv::Size(down_width, down_height), cv::INTER_LINEAR);
// let's upscale the image using new width and height
int up_width = 600;
int up_height = 400;
cv::Mat resized_up;
//resize up
cv::resize(image, resized_up, cv::Size(up_width, up_height), cv::INTER_LINEAR);
// Display Images and press any key to continue
cv::imshow("Resized Down", resized_down);
cv::imshow("Resized Up", resized_up);
cv::waitKey();
cv::destroyAllWindows();
return 0;
}
make 한 뒤에 ./main실행하면
이렇게 resize된 이미지를 볼수 있다.
반응형
'OpenCV > c++' 카테고리의 다른 글
OpenCV를 사용하여 이미지에 주석 달기(c++) (0) | 2024.06.05 |
---|---|
OpenCV를 사용한 이미지 Rotation, Translation(c++) (0) | 2024.06.03 |
OpenCV를 사용하여 이미지 자르기(c++) (0) | 2024.05.24 |
OpenCV를 사용하여 이미지 읽기, 표시 및 쓰기(c++) (0) | 2024.05.22 |
cv::Mat type알아보기 (0) | 2023.11.03 |