일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- OpenXLSX 한글
- LINK2001
- 설치 테스트
- __vsnprintf
- Plugins
- c++ set struct
- MFC
- OpenCPN
- OpenCPN설치
- sts4
- Flutter
- 확인할 수 없는 외부 기호
- __snprintf
- 정적 라이브러리에서 MFC 사용
- wxWidget
- git 대용량 파일
- c2678
- ExtendWith
- .gitattributes
- winsock.h Broadcast
- 사전설치
- Mqtt
- git 최초 설정
- SQLite3
- 멀티바이트 문자 집합 사용
- c++ Broadcast
- esp-wroom-32d
- Console
- _sprintf
- 의존주입
- Today
- Total
목록분류 전체보기 (46)
세상을 이롭게

#include #include #include #include #include #include using namespace cv; using namespace std; int main(int ac, char** av) { VideoCapture cap(0); cap.set(CAP_PROP_FRAME_WIDTH, 1920); cap.set(CAP_PROP_FRAME_HEIGHT, 1080); if (!cap.isOpened()) { printf("Can't open the camera"); return -1; } Mat img; while (true) { cap >> img; imshow("camera img", img); if (waitKey(1) == 27) break; } return 0; } ca..

https://opencv.org/releases/ Releases Become a Member Stay up to date on OpenCV and Computer Vision news Join our Newsletter opencv.org 각자 자신의 OS에 맞게 다운받고, 설치(압축풀기)한다. 혹은 아래의 링크에서 코드를 받고, CMake로 빌드하여 사용해도 동일하다. https://github.com/opencv/opencv GitHub - opencv/opencv: Open Source Computer Vision Library Open Source Computer Vision Library. Contribute to opencv/opencv development by creating an ac..

MySQL을 사용하기로 한다. https://dev.mysql.com/downloads/installer/ MySQL :: Download MySQL Installer Select Operating System: Select Operating System… Microsoft Windows Select OS Version: All Windows (x86, 32-bit) Windows (x86, 32-bit), MSI Installer 8.0.31 5.5M (mysql-installer-web-community-8.0.31.0.msi) MD5: 7a83203e24f873b49fa2df2f1a58eca6 | Signatu dev.mysql.com 다 설치하려 했지만 필요한 것만 설치하겠다. ----------..

import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration; @SpringBootApplication(exclude={DataSourceAutoConfiguration.class}) STS 를 이용하여 SpringBoot 를 시작해보려 한다. 사용하고 있는 컴퓨터 환경은 아래와 같다. Operating System: Windows 11 Pro for Workstations 64-bit (10.0, Build 22..

github에선 100MB 이상의 대용량 파일을 올리려 하면 에러가 난다. 이를 위해 친절한 github는 LS 라는 것을 배포하였다. LFS란 크기가 큰 파일을 다루기 위해서 github에서 제공하는 오픈소스이며, 용량이 큰 파일, 혹 binary 파일들을 별도로 관리하도록 한다. https://git-lfs.github.com/ Git Large File Storage Git Large File Storage (LFS) replaces large files such as audio samples, videos, datasets, and graphics with text pointers inside Git, while storing the file contents on a remote server li..