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