일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- MongoDB
- R
- 딥러닝
- 김양재 목사님
- 김양재 목사
- Statistics
- 빅 데이터
- Artificial Intelligence
- 김양재
- node.js
- 몽고디비
- 통계
- openCV
- 우리들교회
- c++
- 빅데이타
- 인공지능
- No SQL
- probability
- 빅데이터
- 데이터 과학
- 빅 데이타
- Big Data
- WebGL
- 주일설교
- nodeJS
- Deep learning
- Machine Learning
- data science
- 확률
Archives
- Today
- Total
목록Lucas-Kanade (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