일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- LAYER_TYPE_SOFTWARE
- coroutines
- 스트리밍
- null safety
- log
- quick-start
- porterduff
- 안드로이드
- Android
- web3js
- hardwareacceleration
- dataginding
- Realm
- vuepress
- ethereum
- error
- Exception
- test
- fabric-sdk-java
- 다윈
- firebase
- Glide
- Hyperledger
- 컴파일
- Gradle
- convert
- bigquery
- kotlin
- C
- fabic
- Today
- Total
목록프로그래밍/영상처리 (5)
날마다 새롭게 또 날마다 새롭게
본 문서는 Video4Linux Kit의 레퍼런스 이다. 본 문서에서는 Video4LinuxKit의 각종 함수와 정의된 상수에 대한 설명을 담고 있으며, 이를 이용하여화면을 캡쳐하는 방법을 담고 있다._______________________________________________________________________ Contents--------- 1. Video4Linux Kit2. Structure3. Open/Close Video4Linux Device4. Set Channel Properties5. Set Picture Properties6. Simple Capture7. Double Buffering 7.1 Initialize 7.2 Wait 7.3 Capture Next Frame8..
"LINUX 에서 캠을 이용한 영상처리 관련 자료 1. "How To" for Video For Linux (VFL) http://pages.cpsc.ucalgary.ca/~sayles/VFL_HowTo/ 2. 리눅스 디지틀 비디오 레코더 공개 S/W 프로젝트(상명대학교)http://blog.naver.com/squirr00?Redirect=Log&logNo=40007946423 3. Video4Linux Programming - RedHat.comhttp://kernelbook.sourceforge.net/videobook.pdf 4. LINUX에서 멀티미디어 프로그래밍http://user.chol.com/~valentis/Suhdang/QT_Programming/Lecture_MM.html 5 .vi..
1. OpenCV 설치 전, 아래 패키지들을 설치한다.• GCC 4.4.x or later. This can be installed with:sudo apt-get install build-essential• CMake 2.6 or higher;• Git;• GTK+2.x or higher, including headers (libgtk2.0-dev);• pkgconfig;• Python 2.6 or later and Numpy 1.5 or later with developer packages (python-dev, python-numpy);• ffmpeg or libav development packages: libavcodec-dev, libavformat-dev, libswscale-dev;ffmp..
■ SetPixel pixel 단위로 영상데이터를 화면의 특정한 영역에 출력하기 위한 함수 ex) pDC->SetPixel(j,i,RGB(InVal,InVal,InVal)); ■ SetDIBitsToDevice 장치독립 비트맵 영상데이터를 화면의 특정한 영역에 출력하기 위한 함수 int SetDIBitsToDevice( HDC hdc, // DC에 대한 핸들 int XDest, // 출력할 영상 영역의 왼쪽 위 x 좌표 int YDest, // 출력할 영상 영역의 왼쪽 위 y 좌표 DWORD dwWidth, // 영상의 가로폭(픽셀단위) DWORD dwHeight, // 영상의 높이(픽셀단위) int XSrc, // 출력할 소스영상의 왼쪽-아래 x좌표 int YSrc, // 출력할 소스영상의 왼쪽-아래 ..