일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 주일설교
- probability
- WebGL
- Statistics
- c++
- Big Data
- Machine Learning
- MongoDB
- Deep learning
- R
- 빅 데이타
- 확률
- 김양재 목사
- 김양재
- node.js
- 우리들교회
- 인공지능
- data science
- 빅데이타
- 빅 데이터
- No SQL
- 데이터 과학
- Artificial Intelligence
- 몽고디비
- 김양재 목사님
- 통계
- 빅데이터
- 딥러닝
- openCV
- nodeJS
Archives
- Today
- Total
목록Optical Flow (1)
Scientific Computing & Data Science
[OpenCV] Optical Flow / Lucas-Kanade Method
#include #include #include #include const int MAX_CORNERS = 500; int main(int argc, char** argv) { // Load images IplImage* imgA = cvLoadImage( "test_img_1.png", CV_LOAD_IMAGE_GRAYSCALE ); IplImage* imgB = cvLoadImage( "test_img_2.png", CV_LOAD_IMAGE_GRAYSCALE ); IplImage* imgC = cvLoadImage( "test_img_3.png", CV_LOAD_IMAGE_UNCHANGED ); CvSize img_sz = cvGetSize( imgA ); int win_size = 10; // Ge..
Programming/OpenCV
2013. 6. 24. 21:25