]> rtime.felk.cvut.cz Git - opencv.git/blob - opencv/src/cv/cvlkpyramid.cpp
big patch. changed error handling to use exceptions
[opencv.git] / opencv / src / cv / cvlkpyramid.cpp
1 /*M///////////////////////////////////////////////////////////////////////////////////////
2 //
3 //  IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
4 //
5 //  By downloading, copying, installing or using the software you agree to this license.
6 //  If you do not agree to this license, do not download, install,
7 //  copy or use the software.
8 //
9 //
10 //                        Intel License Agreement
11 //                For Open Source Computer Vision Library
12 //
13 // Copyright (C) 2000, Intel Corporation, all rights reserved.
14 // Third party copyrights are property of their respective owners.
15 //
16 // Redistribution and use in source and binary forms, with or without modification,
17 // are permitted provided that the following conditions are met:
18 //
19 //   * Redistribution's of source code must retain the above copyright notice,
20 //     this list of conditions and the following disclaimer.
21 //
22 //   * Redistribution's in binary form must reproduce the above copyright notice,
23 //     this list of conditions and the following disclaimer in the documentation
24 //     and/or other materials provided with the distribution.
25 //
26 //   * The name of Intel Corporation may not be used to endorse or promote products
27 //     derived from this software without specific prior written permission.
28 //
29 // This software is provided by the copyright holders and contributors "as is" and
30 // any express or implied warranties, including, but not limited to, the implied
31 // warranties of merchantability and fitness for a particular purpose are disclaimed.
32 // In no event shall the Intel Corporation or contributors be liable for any direct,
33 // indirect, incidental, special, exemplary, or consequential damages
34 // (including, but not limited to, procurement of substitute goods or services;
35 // loss of use, data, or profits; or business interruption) however caused
36 // and on any theory of liability, whether in contract, strict liability,
37 // or tort (including negligence or otherwise) arising in any way out of
38 // the use of this software, even if advised of the possibility of such damage.
39 //
40 //M*/
41 #include "_cv.h"
42 #include <float.h>
43 #include <stdio.h>
44
45 namespace cv
46 {
47
48 void calcOpticalFlowPyrLK( const Mat& prevImg, const Mat& nextImg,
49                            const vector<Point2f>& prevPts,
50                            vector<Point2f>& nextPts,
51                            vector<uchar>& status, vector<float>& err,
52                            Size winSize, int maxLevel,
53                            TermCriteria criteria,
54                            double derivLambda,
55                            int flags )
56 {
57     derivLambda = std::min(std::max(derivLambda, 0.), 1.);
58     double lambda1 = 1. - derivLambda, lambda2 = derivLambda;
59     const int derivKernelSize = 3;
60     const float deriv1Scale = 0.5f/4.f;
61     const float deriv2Scale = 0.25f/4.f;
62     const int derivDepth = CV_32F;
63     Point2f halfWin((winSize.width-1)*0.5f, (winSize.height-1)*0.5f);
64
65     CV_Assert( maxLevel >= 0 && winSize.width > 2 && winSize.height > 2 );
66     CV_Assert( prevImg.size() == nextImg.size() &&
67         prevImg.type() == nextImg.type() );
68
69     size_t npoints = prevPts.size();
70     nextPts.resize(npoints);
71     status.resize(npoints);
72     for( size_t i = 0; i < npoints; i++ )
73         status[i] = true;
74     err.resize(npoints);
75
76     if( npoints == 0 )
77         return;
78     
79     vector<Mat> prevPyr, nextPyr;
80
81     int cn = prevImg.channels();
82     buildPyramid( prevImg, prevPyr, maxLevel );
83     buildPyramid( nextImg, nextPyr, maxLevel );
84     // I, dI/dx ~ Ix, dI/dy ~ Iy, d2I/dx2 ~ Ixx, d2I/dxdy ~ Ixy, d2I/dy2 ~ Iyy
85     Mat derivIBuf((prevImg.rows + winSize.height*2),
86                   (prevImg.cols + winSize.width*2),
87                   CV_MAKETYPE(derivDepth, cn*6));
88     // J, dJ/dx ~ Jx, dJ/dy ~ Jy
89     Mat derivJBuf((prevImg.rows + winSize.height*2),
90                   (prevImg.cols + winSize.width*2),
91                   CV_MAKETYPE(derivDepth, cn*3));
92     Mat tempDerivBuf(prevImg.size(), CV_MAKETYPE(derivIBuf.type(), cn));
93     Mat derivIWinBuf(winSize, derivIBuf.type());
94
95     if( (criteria.type & TermCriteria::COUNT) == 0 )
96         criteria.maxCount = 30;
97     else
98         criteria.maxCount = std::min(std::max(criteria.maxCount, 0), 100);
99     if( (criteria.type & TermCriteria::EPS) == 0 )
100         criteria.epsilon = 0.01;
101     else
102         criteria.epsilon = std::min(std::max(criteria.epsilon, 0.), 10.);
103     criteria.epsilon *= criteria.epsilon;
104
105     for( int level = maxLevel; level >= 0; level-- )
106     {
107         int k;
108         Size imgSize = prevPyr[level].size();
109         Mat tempDeriv( imgSize, tempDerivBuf.type(), tempDerivBuf.data );
110         Mat _derivI( imgSize.height + winSize.height*2,
111             imgSize.width + winSize.width*2,
112             derivIBuf.type(), derivIBuf.data );
113         Mat _derivJ( imgSize.height + winSize.height*2,
114             imgSize.width + winSize.width*2,
115             derivJBuf.type(), derivJBuf.data );
116         Mat derivI(_derivI, Rect(winSize.width, winSize.height, imgSize.width, imgSize.height));
117         Mat derivJ(_derivJ, Rect(winSize.width, winSize.height, imgSize.width, imgSize.height));
118         CvMat cvderivI = _derivI;
119         cvZero(&cvderivI);
120         CvMat cvderivJ = _derivJ;
121         cvZero(&cvderivJ);
122
123         vector<int> fromTo(cn*2);
124         for( k = 0; k < cn; k++ )
125             fromTo[k*2] = k;
126
127         prevPyr[level].convertTo(tempDeriv, derivDepth);
128         for( k = 0; k < cn; k++ )
129             fromTo[k*2+1] = k*6;
130         mixChannels(&tempDeriv, 1, &derivI, 1, &fromTo[0], cn);
131
132         // compute spatial derivatives and merge them together
133         Sobel(prevPyr[level], tempDeriv, derivDepth, 1, 0, derivKernelSize, deriv1Scale );
134         for( k = 0; k < cn; k++ )
135             fromTo[k*2+1] = k*6 + 1;
136         mixChannels(&tempDeriv, 1, &derivI, 1, &fromTo[0], cn);
137
138         Sobel(prevPyr[level], tempDeriv, derivDepth, 0, 1, derivKernelSize, deriv1Scale );
139         for( k = 0; k < cn; k++ )
140             fromTo[k*2+1] = k*6 + 2;
141         mixChannels(&tempDeriv, 1, &derivI, 1, &fromTo[0], cn);
142
143         Sobel(prevPyr[level], tempDeriv, derivDepth, 2, 0, derivKernelSize, deriv2Scale );
144         for( k = 0; k < cn; k++ )
145             fromTo[k*2+1] = k*6 + 3;
146         mixChannels(&tempDeriv, 1, &derivI, 1, &fromTo[0], cn);
147
148         Sobel(prevPyr[level], tempDeriv, derivDepth, 1, 1, derivKernelSize, deriv2Scale );
149         for( k = 0; k < cn; k++ )
150             fromTo[k*2+1] = k*6 + 4;
151         mixChannels(&tempDeriv, 1, &derivI, 1, &fromTo[0], cn);
152
153         Sobel(prevPyr[level], tempDeriv, derivDepth, 0, 2, derivKernelSize, deriv2Scale );
154         for( k = 0; k < cn; k++ )
155             fromTo[k*2+1] = k*6 + 5;
156         mixChannels(&tempDeriv, 1, &derivI, 1, &fromTo[0], cn);
157
158         nextPyr[level].convertTo(tempDeriv, derivDepth);
159         for( k = 0; k < cn; k++ )
160             fromTo[k*2+1] = k*3;
161         mixChannels(&tempDeriv, 1, &derivJ, 1, &fromTo[0], cn);
162
163         Sobel(nextPyr[level], tempDeriv, derivDepth, 1, 0, derivKernelSize, deriv1Scale );
164         for( k = 0; k < cn; k++ )
165             fromTo[k*2+1] = k*3 + 1;
166         mixChannels(&tempDeriv, 1, &derivJ, 1, &fromTo[0], cn);
167
168         Sobel(nextPyr[level], tempDeriv, derivDepth, 0, 1, derivKernelSize, deriv1Scale );
169         for( k = 0; k < cn; k++ )
170             fromTo[k*2+1] = k*3 + 2;
171         mixChannels(&tempDeriv, 1, &derivJ, 1, &fromTo[0], cn);
172
173         /*copyMakeBorder( derivI, _derivI, winSize.height, winSize.height,
174             winSize.width, winSize.width, BORDER_CONSTANT );
175         copyMakeBorder( derivJ, _derivJ, winSize.height, winSize.height,
176             winSize.width, winSize.width, BORDER_CONSTANT );*/
177
178         for( size_t ptidx = 0; ptidx < npoints; ptidx++ )
179         {
180             Point2f prevPt = prevPts[ptidx]*(float)(1./(1 << level));
181             Point2f nextPt;
182             if( level == maxLevel )
183             {
184                 if( flags & OPTFLOW_USE_INITIAL_FLOW )
185                     nextPt = nextPts[ptidx]*(float)(1./(1 << level));
186                 else
187                     nextPt = prevPt;
188             }
189             else
190                 nextPt = nextPts[ptidx]*2.f;
191             nextPts[ptidx] = nextPt;
192             
193             Point2i iprevPt, inextPt;
194             prevPt -= halfWin;
195             iprevPt.x = cvFloor(prevPt.x);
196             iprevPt.y = cvFloor(prevPt.y);
197
198             if( iprevPt.x < -winSize.width || iprevPt.x >= derivI.cols ||
199                 iprevPt.y < -winSize.height || iprevPt.y >= derivI.rows )
200             {
201                 if( level == 0 )
202                 {
203                     status[ptidx] = false;
204                     err[ptidx] = FLT_MAX;
205                 }
206                 continue;
207             }
208             
209             float a = prevPt.x - iprevPt.x;
210             float b = prevPt.y - iprevPt.y;
211             float w00 = (1.f - a)*(1.f - b), w01 = a*(1.f - b);
212             float w10 = (1.f - a)*b, w11 = a*b;
213             size_t stepI = derivI.step/derivI.elemSize1();
214             size_t stepJ = derivJ.step/derivJ.elemSize1();
215             int cnI = cn*6, cnJ = cn*3;
216             double A11 = 0, A12 = 0, A22 = 0;
217             double iA11 = 0, iA12 = 0, iA22 = 0;
218             
219             // extract the patch from the first image
220             int x, y;
221             for( y = 0; y < winSize.height; y++ )
222             {
223                 const float* src = (const float*)(derivI.data +
224                     (y + iprevPt.y)*derivI.step) + iprevPt.x*cnI;
225                 float* dst = (float*)(derivIWinBuf.data + y*derivIWinBuf.step);
226
227                 for( x = 0; x < winSize.width*cnI; x += cnI, src += cnI )
228                 {
229                     float I = src[0]*w00 + src[cnI]*w01 + src[stepI]*w10 + src[stepI+cnI]*w11;
230                     dst[x] = I;
231                     
232                     float Ix = src[1]*w00 + src[cnI+1]*w01 + src[stepI+1]*w10 + src[stepI+cnI+1]*w11;
233                     float Iy = src[2]*w00 + src[cnI+2]*w01 + src[stepI+2]*w10 + src[stepI+cnI+2]*w11;
234                     dst[x+1] = Ix; dst[x+2] = Iy;
235                     
236                     float Ixx = src[3]*w00 + src[cnI+3]*w01 + src[stepI+3]*w10 + src[stepI+cnI+3]*w11;
237                     float Ixy = src[4]*w00 + src[cnI+4]*w01 + src[stepI+4]*w10 + src[stepI+cnI+4]*w11;
238                     float Iyy = src[5]*w00 + src[cnI+5]*w01 + src[stepI+5]*w10 + src[stepI+cnI+5]*w11;
239                     dst[x+3] = Ixx; dst[x+4] = Ixy; dst[x+5] = Iyy;
240
241                     iA11 += (double)Ix*Ix;
242                     iA12 += (double)Ix*Iy;
243                     iA22 += (double)Iy*Iy;
244
245                     A11 += (double)Ixx*Ixx + (double)Ixy*Ixy;
246                     A12 += Ixy*((double)Ixx + Iyy);
247                     A22 += (double)Ixy*Ixy + (double)Iyy*Iyy;
248                 }
249             }
250
251             A11 = lambda1*iA11 + lambda2*A11;
252             A12 = lambda1*iA12 + lambda2*A12;
253             A22 = lambda1*iA22 + lambda2*A22;
254
255             double D = A11*A22 - A12*A12;
256             double minEig = (A22 + A11 - std::sqrt((A11-A22)*(A11-A22) +
257                 4.*A12*A12))/(2*winSize.width*winSize.height);
258             err[ptidx] = (float)minEig;
259
260             if( D < DBL_EPSILON )
261             {
262                 if( level == 0 )
263                     status[ptidx] = false;
264                 continue;
265             }
266             
267             D = 1./D;
268
269             nextPt -= halfWin;
270             Point2f prevDelta;
271
272             for( int j = 0; j < criteria.maxCount; j++ )
273             {
274                 inextPt.x = cvFloor(nextPt.x);
275                 inextPt.y = cvFloor(nextPt.y);
276
277                 if( inextPt.x < -winSize.width || inextPt.x >= derivJ.cols ||
278                     inextPt.y < -winSize.height || inextPt.y >= derivJ.rows )
279                 {
280                     if( level == 0 )
281                         status[ptidx] = false;
282                     break;
283                 }
284
285                 a = nextPt.x - inextPt.x;
286                 b = nextPt.y - inextPt.y;
287                 w00 = (1.f - a)*(1.f - b); w01 = a*(1.f - b);
288                 w10 = (1.f - a)*b; w11 = a*b;
289
290                 double b1 = 0, b2 = 0, ib1 = 0, ib2 = 0;
291
292                 for( y = 0; y < winSize.height; y++ )
293                 {
294                     const float* src = (const float*)(derivJ.data +
295                         (y + inextPt.y)*derivJ.step) + inextPt.x*cnJ;
296                     const float* Ibuf = (float*)(derivIWinBuf.data + y*derivIWinBuf.step);
297
298                     for( x = 0; x < winSize.width; x++, src += cnJ, Ibuf += cnI )
299                     {
300                         double It = src[0]*w00 + src[cnJ]*w01 + src[stepJ]*w10 +
301                                     src[stepJ+cnJ]*w11 - Ibuf[0];
302                         double Ixt = src[1]*w00 + src[cnJ+1]*w01 + src[stepJ+1]*w10 +
303                                      src[stepJ+cnJ+1]*w11 - Ibuf[1];
304                         double Iyt = src[2]*w00 + src[cnJ+2]*w01 + src[stepJ+2]*w10 +
305                                      src[stepJ+cnJ+2]*w11 - Ibuf[2];
306                         b1 += Ixt*Ibuf[3] + Iyt*Ibuf[4];
307                         b2 += Ixt*Ibuf[4] + Iyt*Ibuf[5];
308                         ib1 += It*Ibuf[1];
309                         ib2 += It*Ibuf[2];
310                     }
311                 }
312
313                 b1 = lambda1*ib1 + lambda2*b1;
314                 b2 = lambda1*ib2 + lambda2*b2;
315                 Point2f delta( (float)((A12*b2 - A22*b1) * D),
316                                (float)((A12*b1 - A11*b2) * D));
317                 //delta = -delta;
318
319                 nextPt += delta;
320                 nextPts[ptidx] = nextPt + halfWin;
321
322                 if( delta.ddot(delta) <= criteria.epsilon )
323                     break;
324
325                 if( j > 0 && std::abs(delta.x + prevDelta.x) < 0.01 &&
326                     std::abs(delta.y + prevDelta.y) < 0.01 )
327                 {
328                     nextPts[ptidx] -= delta*0.5f;
329                     break;
330                 }
331                 prevDelta = delta;
332             }
333         }
334     }
335 }
336
337 }
338
339 static void
340 intersect( CvPoint2D32f pt, CvSize win_size, CvSize imgSize,
341            CvPoint* min_pt, CvPoint* max_pt )
342 {
343     CvPoint ipt;
344
345     ipt.x = cvFloor( pt.x );
346     ipt.y = cvFloor( pt.y );
347
348     ipt.x -= win_size.width;
349     ipt.y -= win_size.height;
350
351     win_size.width = win_size.width * 2 + 1;
352     win_size.height = win_size.height * 2 + 1;
353
354     min_pt->x = MAX( 0, -ipt.x );
355     min_pt->y = MAX( 0, -ipt.y );
356     max_pt->x = MIN( win_size.width, imgSize.width - ipt.x );
357     max_pt->y = MIN( win_size.height, imgSize.height - ipt.y );
358 }
359
360
361 static int icvMinimalPyramidSize( CvSize imgSize )
362 {
363     return cvAlign(imgSize.width,8) * imgSize.height / 3;
364 }
365
366
367 static void
368 icvInitPyramidalAlgorithm( const CvMat* imgA, const CvMat* imgB,
369                            CvMat* pyrA, CvMat* pyrB,
370                            int level, CvTermCriteria * criteria,
371                            int max_iters, int flags,
372                            uchar *** imgI, uchar *** imgJ,
373                            int **step, CvSize** size,
374                           double **scale, cv::AutoBuffer<uchar>* buffer )
375 {
376     const int ALIGN = 8;
377     int pyrBytes, bufferBytes = 0, elem_size;
378     int level1 = level + 1;
379
380     int i;
381     CvSize imgSize, levelSize;
382
383     *buffer = 0;
384     *imgI = *imgJ = 0;
385     *step = 0;
386     *scale = 0;
387     *size = 0;
388
389     /* check input arguments */
390     if( ((flags & CV_LKFLOW_PYR_A_READY) != 0 && !pyrA) ||
391         ((flags & CV_LKFLOW_PYR_B_READY) != 0 && !pyrB) )
392         CV_Error( CV_StsNullPtr, "Some of the precomputed pyramids are missing" );
393
394     if( level < 0 )
395         CV_Error( CV_StsOutOfRange, "The number of pyramid layers is negative" );
396
397     switch( criteria->type )
398     {
399     case CV_TERMCRIT_ITER:
400         criteria->epsilon = 0.f;
401         break;
402     case CV_TERMCRIT_EPS:
403         criteria->max_iter = max_iters;
404         break;
405     case CV_TERMCRIT_ITER | CV_TERMCRIT_EPS:
406         break;
407     default:
408         assert( 0 );
409         CV_Error( CV_StsBadArg, "Invalid termination criteria" );
410     }
411
412     /* compare squared values */
413     criteria->epsilon *= criteria->epsilon;
414
415     /* set pointers and step for every level */
416     pyrBytes = 0;
417
418     imgSize = cvGetSize(imgA);
419     elem_size = CV_ELEM_SIZE(imgA->type);
420     levelSize = imgSize;
421
422     for( i = 1; i < level1; i++ )
423     {
424         levelSize.width = (levelSize.width + 1) >> 1;
425         levelSize.height = (levelSize.height + 1) >> 1;
426
427         int tstep = cvAlign(levelSize.width,ALIGN) * elem_size;
428         pyrBytes += tstep * levelSize.height;
429     }
430
431     assert( pyrBytes <= imgSize.width * imgSize.height * elem_size * 4 / 3 );
432
433     /* buffer_size = <size for patches> + <size for pyramids> */
434     bufferBytes = (int)((level1 >= 0) * ((pyrA->data.ptr == 0) +
435         (pyrB->data.ptr == 0)) * pyrBytes +
436         (sizeof(imgI[0][0]) * 2 + sizeof(step[0][0]) +
437          sizeof(size[0][0]) + sizeof(scale[0][0])) * level1);
438
439     buffer->allocate( bufferBytes );
440
441     *imgI = (uchar **) (uchar*)(*buffer);
442     *imgJ = *imgI + level1;
443     *step = (int *) (*imgJ + level1);
444     *scale = (double *) (*step + level1);
445     *size = (CvSize *)(*scale + level1);
446
447     imgI[0][0] = imgA->data.ptr;
448     imgJ[0][0] = imgB->data.ptr;
449     step[0][0] = imgA->step;
450     scale[0][0] = 1;
451     size[0][0] = imgSize;
452
453     if( level > 0 )
454     {
455         uchar *bufPtr = (uchar *) (*size + level1);
456         uchar *ptrA = pyrA->data.ptr;
457         uchar *ptrB = pyrB->data.ptr;
458
459         if( !ptrA )
460         {
461             ptrA = bufPtr;
462             bufPtr += pyrBytes;
463         }
464
465         if( !ptrB )
466             ptrB = bufPtr;
467
468         levelSize = imgSize;
469
470         /* build pyramids for both frames */
471         for( i = 1; i <= level; i++ )
472         {
473             int levelBytes;
474             CvMat prev_level, next_level;
475
476             levelSize.width = (levelSize.width + 1) >> 1;
477             levelSize.height = (levelSize.height + 1) >> 1;
478
479             size[0][i] = levelSize;
480             step[0][i] = cvAlign( levelSize.width, ALIGN ) * elem_size;
481             scale[0][i] = scale[0][i - 1] * 0.5;
482
483             levelBytes = step[0][i] * levelSize.height;
484             imgI[0][i] = (uchar *) ptrA;
485             ptrA += levelBytes;
486
487             if( !(flags & CV_LKFLOW_PYR_A_READY) )
488             {
489                 prev_level = cvMat( size[0][i-1].height, size[0][i-1].width, CV_8UC1 );
490                 next_level = cvMat( size[0][i].height, size[0][i].width, CV_8UC1 );
491                 cvSetData( &prev_level, imgI[0][i-1], step[0][i-1] );
492                 cvSetData( &next_level, imgI[0][i], step[0][i] );
493                 cvPyrDown( &prev_level, &next_level );
494             }
495
496             imgJ[0][i] = (uchar *) ptrB;
497             ptrB += levelBytes;
498
499             if( !(flags & CV_LKFLOW_PYR_B_READY) )
500             {
501                 prev_level = cvMat( size[0][i-1].height, size[0][i-1].width, CV_8UC1 );
502                 next_level = cvMat( size[0][i].height, size[0][i].width, CV_8UC1 );
503                 cvSetData( &prev_level, imgJ[0][i-1], step[0][i-1] );
504                 cvSetData( &next_level, imgJ[0][i], step[0][i] );
505                 cvPyrDown( &prev_level, &next_level );
506             }
507         }
508     }
509 }
510
511
512 /* compute dI/dx and dI/dy */
513 static void
514 icvCalcIxIy_32f( const float* src, int src_step, float* dstX, float* dstY, int dst_step,
515                  CvSize src_size, const float* smooth_k, float* buffer0 )
516 {
517     int src_width = src_size.width, dst_width = src_size.width-2;
518     int x, height = src_size.height - 2;
519     float* buffer1 = buffer0 + src_width;
520
521     src_step /= sizeof(src[0]);
522     dst_step /= sizeof(dstX[0]);
523
524     for( ; height--; src += src_step, dstX += dst_step, dstY += dst_step )
525     {
526         const float* src2 = src + src_step;
527         const float* src3 = src + src_step*2;
528
529         for( x = 0; x < src_width; x++ )
530         {
531             float t0 = (src3[x] + src[x])*smooth_k[0] + src2[x]*smooth_k[1];
532             float t1 = src3[x] - src[x];
533             buffer0[x] = t0; buffer1[x] = t1;
534         }
535
536         for( x = 0; x < dst_width; x++ )
537         {
538             float t0 = buffer0[x+2] - buffer0[x];
539             float t1 = (buffer1[x] + buffer1[x+2])*smooth_k[0] + buffer1[x+1]*smooth_k[1];
540             dstX[x] = t0; dstY[x] = t1;
541         }
542     }
543 }
544
545
546 CV_IMPL void
547 cvCalcOpticalFlowPyrLK( const void* arrA, const void* arrB,
548                         void* pyrarrA, void* pyrarrB,
549                         const CvPoint2D32f * featuresA,
550                         CvPoint2D32f * featuresB,
551                         int count, CvSize winSize, int level,
552                         char *status, float *error,
553                         CvTermCriteria criteria, int flags )
554 {
555     cv::AutoBuffer<uchar> pyrBuffer;
556     cv::AutoBuffer<uchar> buffer;
557     cv::AutoBuffer<char> _status;
558
559     const int MAX_ITERS = 100;
560
561     CvMat stubA, *imgA = (CvMat*)arrA;
562     CvMat stubB, *imgB = (CvMat*)arrB;
563     CvMat pstubA, *pyrA = (CvMat*)pyrarrA;
564     CvMat pstubB, *pyrB = (CvMat*)pyrarrB;
565     CvSize imgSize;
566     static const float smoothKernel[] = { 0.09375, 0.3125, 0.09375 };  /* 3/32, 10/32, 3/32 */
567     
568     int bufferBytes = 0;
569     uchar **imgI = 0;
570     uchar **imgJ = 0;
571     int *step = 0;
572     double *scale = 0;
573     CvSize* size = 0;
574
575     int threadCount = cvGetNumThreads();
576     float* _patchI[CV_MAX_THREADS];
577     float* _patchJ[CV_MAX_THREADS];
578     float* _Ix[CV_MAX_THREADS];
579     float* _Iy[CV_MAX_THREADS];
580
581     int i, l;
582
583     CvSize patchSize = cvSize( winSize.width * 2 + 1, winSize.height * 2 + 1 );
584     int patchLen = patchSize.width * patchSize.height;
585     int srcPatchLen = (patchSize.width + 2)*(patchSize.height + 2);
586
587     imgA = cvGetMat( imgA, &stubA );
588     imgB = cvGetMat( imgB, &stubB );
589
590     if( CV_MAT_TYPE( imgA->type ) != CV_8UC1 )
591         CV_Error( CV_StsUnsupportedFormat, "" );
592
593     if( !CV_ARE_TYPES_EQ( imgA, imgB ))
594         CV_Error( CV_StsUnmatchedFormats, "" );
595
596     if( !CV_ARE_SIZES_EQ( imgA, imgB ))
597         CV_Error( CV_StsUnmatchedSizes, "" );
598
599     if( imgA->step != imgB->step )
600         CV_Error( CV_StsUnmatchedSizes, "imgA and imgB must have equal steps" );
601
602     imgSize = cvGetMatSize( imgA );
603
604     if( pyrA )
605     {
606         pyrA = cvGetMat( pyrA, &pstubA );
607
608         if( pyrA->step*pyrA->height < icvMinimalPyramidSize( imgSize ) )
609             CV_Error( CV_StsBadArg, "pyramid A has insufficient size" );
610     }
611     else
612     {
613         pyrA = &pstubA;
614         pyrA->data.ptr = 0;
615     }
616
617     if( pyrB )
618     {
619         pyrB = cvGetMat( pyrB, &pstubB );
620
621         if( pyrB->step*pyrB->height < icvMinimalPyramidSize( imgSize ) )
622             CV_Error( CV_StsBadArg, "pyramid B has insufficient size" );
623     }
624     else
625     {
626         pyrB = &pstubB;
627         pyrB->data.ptr = 0;
628     }
629
630     if( count == 0 )
631         return;
632
633     if( !featuresA || !featuresB )
634         CV_Error( CV_StsNullPtr, "Some of arrays of point coordinates are missing" );
635
636     if( count < 0 )
637         CV_Error( CV_StsOutOfRange, "The number of tracked points is negative or zero" );
638
639     if( winSize.width <= 1 || winSize.height <= 1 )
640         CV_Error( CV_StsBadSize, "Invalid search window size" );
641
642     for( i = 0; i < threadCount; i++ )
643         _patchI[i] = _patchJ[i] = _Ix[i] = _Iy[i] = 0;
644
645     icvInitPyramidalAlgorithm( imgA, imgB, pyrA, pyrB,
646         level, &criteria, MAX_ITERS, flags,
647         &imgI, &imgJ, &step, &size, &scale, &pyrBuffer );
648
649     if( !status )
650     {
651         _status.allocate(count);
652         status = _status;
653     }
654
655     /* buffer_size = <size for patches> + <size for pyramids> */
656     bufferBytes = (srcPatchLen + patchLen * 3) * sizeof( _patchI[0][0] ) * threadCount;
657     buffer.allocate(bufferBytes);
658
659     for( i = 0; i < threadCount; i++ )
660     {
661         _patchI[i] = i == 0 ? (float*)(uchar*)buffer : _Iy[i-1] + patchLen;
662         _patchJ[i] = _patchI[i] + srcPatchLen;
663         _Ix[i] = _patchJ[i] + patchLen;
664         _Iy[i] = _Ix[i] + patchLen;
665     }
666
667     memset( status, 1, count );
668     if( error )
669         memset( error, 0, count*sizeof(error[0]) );
670
671     if( !(flags & CV_LKFLOW_INITIAL_GUESSES) )
672         memcpy( featuresB, featuresA, count*sizeof(featuresA[0]));
673
674     /* do processing from top pyramid level (smallest image)
675        to the bottom (original image) */
676     for( l = level; l >= 0; l-- )
677     {
678         CvSize levelSize = size[l];
679         int levelStep = step[l];
680
681         {
682 #ifdef _OPENMP
683         #pragma omp parallel for num_threads(threadCount) schedule(dynamic) 
684 #endif // _OPENMP
685         /* find flow for each given point */
686         for( i = 0; i < count; i++ )
687         {
688             CvPoint2D32f v;
689             CvPoint minI, maxI, minJ, maxJ;
690             CvSize isz, jsz;
691             int pt_status;
692             CvPoint2D32f u;
693             CvPoint prev_minJ = { -1, -1 }, prev_maxJ = { -1, -1 };
694             double Gxx = 0, Gxy = 0, Gyy = 0, D = 0, minEig = 0;
695             float prev_mx = 0, prev_my = 0;
696             int j, x, y;
697             int threadIdx = cvGetThreadNum();
698             float* patchI = _patchI[threadIdx];
699             float* patchJ = _patchJ[threadIdx];
700             float* Ix = _Ix[threadIdx];
701             float* Iy = _Iy[threadIdx];
702
703             v.x = featuresB[i].x;
704             v.y = featuresB[i].y;
705             if( l < level )
706             {
707                 v.x += v.x;
708                 v.y += v.y;
709             }
710             else
711             {
712                 v.x = (float)(v.x * scale[l]);
713                 v.y = (float)(v.y * scale[l]);
714             }
715
716             pt_status = status[i];
717             if( !pt_status )
718                 continue;
719
720             minI = maxI = minJ = maxJ = cvPoint( 0, 0 );
721
722             u.x = (float) (featuresA[i].x * scale[l]);
723             u.y = (float) (featuresA[i].y * scale[l]);
724
725             intersect( u, winSize, levelSize, &minI, &maxI );
726             isz = jsz = cvSize(maxI.x - minI.x + 2, maxI.y - minI.y + 2);
727             u.x += (minI.x - (patchSize.width - maxI.x + 1))*0.5f;
728             u.y += (minI.y - (patchSize.height - maxI.y + 1))*0.5f;
729
730             if( isz.width < 3 || isz.height < 3 ||
731                 icvGetRectSubPix_8u32f_C1R( imgI[l], levelStep, levelSize,
732                     patchI, isz.width*sizeof(patchI[0]), isz, u ) < 0 )
733             {
734                 /* point is outside the image. take the next */
735                 status[i] = 0;
736                 continue;
737             }
738
739             icvCalcIxIy_32f( patchI, isz.width*sizeof(patchI[0]), Ix, Iy,
740                 (isz.width-2)*sizeof(patchI[0]), isz, smoothKernel, patchJ );
741
742             for( j = 0; j < criteria.max_iter; j++ )
743             {
744                 double bx = 0, by = 0;
745                 float mx, my;
746                 CvPoint2D32f _v;
747
748                 intersect( v, winSize, levelSize, &minJ, &maxJ );
749
750                 minJ.x = MAX( minJ.x, minI.x );
751                 minJ.y = MAX( minJ.y, minI.y );
752
753                 maxJ.x = MIN( maxJ.x, maxI.x );
754                 maxJ.y = MIN( maxJ.y, maxI.y );
755
756                 jsz = cvSize(maxJ.x - minJ.x, maxJ.y - minJ.y);
757
758                 _v.x = v.x + (minJ.x - (patchSize.width - maxJ.x + 1))*0.5f;
759                 _v.y = v.y + (minJ.y - (patchSize.height - maxJ.y + 1))*0.5f;
760
761                 if( jsz.width < 1 || jsz.height < 1 ||
762                     icvGetRectSubPix_8u32f_C1R( imgJ[l], levelStep, levelSize, patchJ,
763                                                 jsz.width*sizeof(patchJ[0]), jsz, _v ) < 0 )
764                 {
765                     /* point is outside image. take the next */
766                     pt_status = 0;
767                     break;
768                 }
769
770                 if( maxJ.x == prev_maxJ.x && maxJ.y == prev_maxJ.y &&
771                     minJ.x == prev_minJ.x && minJ.y == prev_minJ.y )
772                 {
773                     for( y = 0; y < jsz.height; y++ )
774                     {
775                         const float* pi = patchI +
776                             (y + minJ.y - minI.y + 1)*isz.width + minJ.x - minI.x + 1;
777                         const float* pj = patchJ + y*jsz.width;
778                         const float* ix = Ix +
779                             (y + minJ.y - minI.y)*(isz.width-2) + minJ.x - minI.x;
780                         const float* iy = Iy + (ix - Ix);
781
782                         for( x = 0; x < jsz.width; x++ )
783                         {
784                             double t0 = pi[x] - pj[x];
785                             bx += t0 * ix[x];
786                             by += t0 * iy[x];
787                         }
788                     }
789                 }
790                 else
791                 {
792                     Gxx = Gyy = Gxy = 0;
793                     for( y = 0; y < jsz.height; y++ )
794                     {
795                         const float* pi = patchI +
796                             (y + minJ.y - minI.y + 1)*isz.width + minJ.x - minI.x + 1;
797                         const float* pj = patchJ + y*jsz.width;
798                         const float* ix = Ix +
799                             (y + minJ.y - minI.y)*(isz.width-2) + minJ.x - minI.x;
800                         const float* iy = Iy + (ix - Ix);
801
802                         for( x = 0; x < jsz.width; x++ )
803                         {
804                             double t = pi[x] - pj[x];
805                             bx += (double) (t * ix[x]);
806                             by += (double) (t * iy[x]);
807                             Gxx += ix[x] * ix[x];
808                             Gxy += ix[x] * iy[x];
809                             Gyy += iy[x] * iy[x];
810                         }
811                     }
812
813                     D = Gxx * Gyy - Gxy * Gxy;
814                     if( D < DBL_EPSILON )
815                     {
816                         pt_status = 0;
817                         break;
818                     }
819
820                     // Adi Shavit - 2008.05
821                     if( flags & CV_LKFLOW_GET_MIN_EIGENVALS )
822                         minEig = (Gyy + Gxx - sqrt((Gxx-Gyy)*(Gxx-Gyy) + 4.*Gxy*Gxy))/(2*jsz.height*jsz.width);
823
824                     D = 1. / D;
825
826                     prev_minJ = minJ;
827                     prev_maxJ = maxJ;
828                 }
829
830                 mx = (float) ((Gyy * bx - Gxy * by) * D);
831                 my = (float) ((Gxx * by - Gxy * bx) * D);
832
833                 v.x += mx;
834                 v.y += my;
835
836                 if( mx * mx + my * my < criteria.epsilon )
837                     break;
838
839                 if( j > 0 && fabs(mx + prev_mx) < 0.01 && fabs(my + prev_my) < 0.01 )
840                 {
841                     v.x -= mx*0.5f;
842                     v.y -= my*0.5f;
843                     break;
844                 }
845                 prev_mx = mx;
846                 prev_my = my;
847             }
848
849             featuresB[i] = v;
850             status[i] = (char)pt_status;
851             if( l == 0 && error && pt_status )
852             {
853                 /* calc error */
854                 double err = 0;
855                 if( flags & CV_LKFLOW_GET_MIN_EIGENVALS )
856                     err = minEig;
857                 else
858                 {
859                     for( y = 0; y < jsz.height; y++ )
860                     {
861                         const float* pi = patchI +
862                             (y + minJ.y - minI.y + 1)*isz.width + minJ.x - minI.x + 1;
863                         const float* pj = patchJ + y*jsz.width;
864
865                         for( x = 0; x < jsz.width; x++ )
866                         {
867                             double t = pi[x] - pj[x];
868                             err += t * t;
869                         }
870                     }
871                     err = sqrt(err);
872                 }
873                 error[i] = (float)err;
874             }
875         } // end of point processing loop (i)
876         }
877     } // end of pyramid levels loop (l)
878 }
879
880
881 /* Affine tracking algorithm */
882
883 CV_IMPL void
884 cvCalcAffineFlowPyrLK( const void* arrA, const void* arrB,
885                        void* pyrarrA, void* pyrarrB,
886                        const CvPoint2D32f * featuresA,
887                        CvPoint2D32f * featuresB,
888                        float *matrices, int count,
889                        CvSize winSize, int level,
890                        char *status, float *error,
891                        CvTermCriteria criteria, int flags )
892 {
893     const int MAX_ITERS = 100;
894
895     cv::AutoBuffer<char> _status;
896     cv::AutoBuffer<uchar> buffer;
897     cv::AutoBuffer<uchar> pyr_buffer;
898
899     CvMat stubA, *imgA = (CvMat*)arrA;
900     CvMat stubB, *imgB = (CvMat*)arrB;
901     CvMat pstubA, *pyrA = (CvMat*)pyrarrA;
902     CvMat pstubB, *pyrB = (CvMat*)pyrarrB;
903
904     static const float smoothKernel[] = { 0.09375, 0.3125, 0.09375 };  /* 3/32, 10/32, 3/32 */
905
906     int bufferBytes = 0;
907
908     uchar **imgI = 0;
909     uchar **imgJ = 0;
910     int *step = 0;
911     double *scale = 0;
912     CvSize* size = 0;
913
914     float *patchI;
915     float *patchJ;
916     float *Ix;
917     float *Iy;
918
919     int i, j, k, l;
920
921     CvSize patchSize = cvSize( winSize.width * 2 + 1, winSize.height * 2 + 1 );
922     int patchLen = patchSize.width * patchSize.height;
923     int patchStep = patchSize.width * sizeof( patchI[0] );
924
925     CvSize srcPatchSize = cvSize( patchSize.width + 2, patchSize.height + 2 );
926     int srcPatchLen = srcPatchSize.width * srcPatchSize.height;
927     int srcPatchStep = srcPatchSize.width * sizeof( patchI[0] );
928     CvSize imgSize;
929     float eps = (float)MIN(winSize.width, winSize.height);
930
931     imgA = cvGetMat( imgA, &stubA );
932     imgB = cvGetMat( imgB, &stubB );
933
934     if( CV_MAT_TYPE( imgA->type ) != CV_8UC1 )
935         CV_Error( CV_StsUnsupportedFormat, "" );
936
937     if( !CV_ARE_TYPES_EQ( imgA, imgB ))
938         CV_Error( CV_StsUnmatchedFormats, "" );
939
940     if( !CV_ARE_SIZES_EQ( imgA, imgB ))
941         CV_Error( CV_StsUnmatchedSizes, "" );
942
943     if( imgA->step != imgB->step )
944         CV_Error( CV_StsUnmatchedSizes, "imgA and imgB must have equal steps" );
945
946     if( !matrices )
947         CV_Error( CV_StsNullPtr, "" );
948
949     imgSize = cvGetMatSize( imgA );
950
951     if( pyrA )
952     {
953         pyrA = cvGetMat( pyrA, &pstubA );
954
955         if( pyrA->step*pyrA->height < icvMinimalPyramidSize( imgSize ) )
956             CV_Error( CV_StsBadArg, "pyramid A has insufficient size" );
957     }
958     else
959     {
960         pyrA = &pstubA;
961         pyrA->data.ptr = 0;
962     }
963
964     if( pyrB )
965     {
966         pyrB = cvGetMat( pyrB, &pstubB );
967
968         if( pyrB->step*pyrB->height < icvMinimalPyramidSize( imgSize ) )
969             CV_Error( CV_StsBadArg, "pyramid B has insufficient size" );
970     }
971     else
972     {
973         pyrB = &pstubB;
974         pyrB->data.ptr = 0;
975     }
976
977     if( count == 0 )
978         return;
979
980     /* check input arguments */
981     if( !featuresA || !featuresB || !matrices )
982         CV_Error( CV_StsNullPtr, "" );
983
984     if( winSize.width <= 1 || winSize.height <= 1 )
985         CV_Error( CV_StsOutOfRange, "the search window is too small" );
986
987     if( count < 0 )
988         CV_Error( CV_StsOutOfRange, "" );
989
990     icvInitPyramidalAlgorithm( imgA, imgB,
991         pyrA, pyrB, level, &criteria, MAX_ITERS, flags,
992         &imgI, &imgJ, &step, &size, &scale, &pyr_buffer );
993
994     /* buffer_size = <size for patches> + <size for pyramids> */
995     bufferBytes = (srcPatchLen + patchLen*3)*sizeof(patchI[0]) + (36*2 + 6)*sizeof(double);
996
997     buffer.allocate(bufferBytes);
998
999     if( !status )
1000     {
1001         _status.allocate(count);
1002         status = _status;
1003     }
1004
1005     patchI = (float *)(uchar*)buffer;
1006     patchJ = patchI + srcPatchLen;
1007     Ix = patchJ + patchLen;
1008     Iy = Ix + patchLen;
1009
1010     if( status )
1011         memset( status, 1, count );
1012
1013     if( !(flags & CV_LKFLOW_INITIAL_GUESSES) )
1014     {
1015         memcpy( featuresB, featuresA, count * sizeof( featuresA[0] ));
1016         for( i = 0; i < count * 4; i += 4 )
1017         {
1018             matrices[i] = matrices[i + 3] = 1.f;
1019             matrices[i + 1] = matrices[i + 2] = 0.f;
1020         }
1021     }
1022
1023     for( i = 0; i < count; i++ )
1024     {
1025         featuresB[i].x = (float)(featuresB[i].x * scale[level] * 0.5);
1026         featuresB[i].y = (float)(featuresB[i].y * scale[level] * 0.5);
1027     }
1028
1029     /* do processing from top pyramid level (smallest image)
1030        to the bottom (original image) */
1031     for( l = level; l >= 0; l-- )
1032     {
1033         CvSize levelSize = size[l];
1034         int levelStep = step[l];
1035
1036         /* find flow for each given point at the particular level */
1037         for( i = 0; i < count; i++ )
1038         {
1039             CvPoint2D32f u;
1040             float Av[6];
1041             double G[36];
1042             double meanI = 0, meanJ = 0;
1043             int x, y;
1044             int pt_status = status[i];
1045             CvMat mat;
1046
1047             if( !pt_status )
1048                 continue;
1049
1050             Av[0] = matrices[i*4];
1051             Av[1] = matrices[i*4+1];
1052             Av[3] = matrices[i*4+2];
1053             Av[4] = matrices[i*4+3];
1054
1055             Av[2] = featuresB[i].x += featuresB[i].x;
1056             Av[5] = featuresB[i].y += featuresB[i].y;
1057
1058             u.x = (float) (featuresA[i].x * scale[l]);
1059             u.y = (float) (featuresA[i].y * scale[l]);
1060
1061             if( u.x < -eps || u.x >= levelSize.width+eps ||
1062                 u.y < -eps || u.y >= levelSize.height+eps ||
1063                 icvGetRectSubPix_8u32f_C1R( imgI[l], levelStep,
1064                 levelSize, patchI, srcPatchStep, srcPatchSize, u ) < 0 )
1065             {
1066                 /* point is outside the image. take the next */
1067                 if( l == 0 )
1068                     status[i] = 0;
1069                 continue;
1070             }
1071
1072             icvCalcIxIy_32f( patchI, srcPatchStep, Ix, Iy,
1073                 (srcPatchSize.width-2)*sizeof(patchI[0]), srcPatchSize,
1074                 smoothKernel, patchJ );
1075
1076             /* repack patchI (remove borders) */
1077             for( k = 0; k < patchSize.height; k++ )
1078                 memcpy( patchI + k * patchSize.width,
1079                         patchI + (k + 1) * srcPatchSize.width + 1, patchStep );
1080
1081             memset( G, 0, sizeof( G ));
1082
1083             /* calculate G matrix */
1084             for( y = -winSize.height, k = 0; y <= winSize.height; y++ )
1085             {
1086                 for( x = -winSize.width; x <= winSize.width; x++, k++ )
1087                 {
1088                     double ixix = ((double) Ix[k]) * Ix[k];
1089                     double ixiy = ((double) Ix[k]) * Iy[k];
1090                     double iyiy = ((double) Iy[k]) * Iy[k];
1091
1092                     double xx, xy, yy;
1093
1094                     G[0] += ixix;
1095                     G[1] += ixiy;
1096                     G[2] += x * ixix;
1097                     G[3] += y * ixix;
1098                     G[4] += x * ixiy;
1099                     G[5] += y * ixiy;
1100
1101                     // G[6] == G[1]
1102                     G[7] += iyiy;
1103                     // G[8] == G[4]
1104                     // G[9] == G[5]
1105                     G[10] += x * iyiy;
1106                     G[11] += y * iyiy;
1107
1108                     xx = x * x;
1109                     xy = x * y;
1110                     yy = y * y;
1111
1112                     // G[12] == G[2]
1113                     // G[13] == G[8] == G[4]
1114                     G[14] += xx * ixix;
1115                     G[15] += xy * ixix;
1116                     G[16] += xx * ixiy;
1117                     G[17] += xy * ixiy;
1118
1119                     // G[18] == G[3]
1120                     // G[19] == G[9]
1121                     // G[20] == G[15]
1122                     G[21] += yy * ixix;
1123                     // G[22] == G[17]
1124                     G[23] += yy * ixiy;
1125
1126                     // G[24] == G[4]
1127                     // G[25] == G[10]
1128                     // G[26] == G[16]
1129                     // G[27] == G[22]
1130                     G[28] += xx * iyiy;
1131                     G[29] += xy * iyiy;
1132
1133                     // G[30] == G[5]
1134                     // G[31] == G[11]
1135                     // G[32] == G[17]
1136                     // G[33] == G[23]
1137                     // G[34] == G[29]
1138                     G[35] += yy * iyiy;
1139
1140                     meanI += patchI[k];
1141                 }
1142             }
1143
1144             meanI /= patchSize.width*patchSize.height;
1145
1146             G[8] = G[4];
1147             G[9] = G[5];
1148             G[22] = G[17];
1149
1150             // fill part of G below its diagonal
1151             for( y = 1; y < 6; y++ )
1152                 for( x = 0; x < y; x++ )
1153                     G[y * 6 + x] = G[x * 6 + y];
1154
1155             cvInitMatHeader( &mat, 6, 6, CV_64FC1, G );
1156
1157             if( cvInvert( &mat, &mat, CV_SVD ) < 1e-4 )
1158             {
1159                 /* bad matrix. take the next point */
1160                 if( l == 0 )
1161                     status[i] = 0;
1162                 continue;
1163             }
1164
1165             for( j = 0; j < criteria.max_iter; j++ )
1166             {
1167                 double b[6] = {0,0,0,0,0,0}, eta[6];
1168                 double t0, t1, s = 0;
1169
1170                 if( Av[2] < -eps || Av[2] >= levelSize.width+eps ||
1171                     Av[5] < -eps || Av[5] >= levelSize.height+eps ||
1172                     icvGetQuadrangleSubPix_8u32f_C1R( imgJ[l], levelStep,
1173                     levelSize, patchJ, patchStep, patchSize, Av ) < 0 )
1174                 {
1175                     pt_status = 0;
1176                     break;
1177                 }
1178
1179                 for( y = -winSize.height, k = 0, meanJ = 0; y <= winSize.height; y++ )
1180                     for( x = -winSize.width; x <= winSize.width; x++, k++ )
1181                         meanJ += patchJ[k];
1182
1183                 meanJ = meanJ / (patchSize.width * patchSize.height) - meanI;
1184
1185                 for( y = -winSize.height, k = 0; y <= winSize.height; y++ )
1186                 {
1187                     for( x = -winSize.width; x <= winSize.width; x++, k++ )
1188                     {
1189                         double t = patchI[k] - patchJ[k] + meanJ;
1190                         double ixt = Ix[k] * t;
1191                         double iyt = Iy[k] * t;
1192
1193                         s += t;
1194
1195                         b[0] += ixt;
1196                         b[1] += iyt;
1197                         b[2] += x * ixt;
1198                         b[3] += y * ixt;
1199                         b[4] += x * iyt;
1200                         b[5] += y * iyt;
1201                     }
1202                 }
1203
1204                 icvTransformVector_64d( G, b, eta, 6, 6 );
1205
1206                 Av[2] = (float)(Av[2] + Av[0] * eta[0] + Av[1] * eta[1]);
1207                 Av[5] = (float)(Av[5] + Av[3] * eta[0] + Av[4] * eta[1]);
1208
1209                 t0 = Av[0] * (1 + eta[2]) + Av[1] * eta[4];
1210                 t1 = Av[0] * eta[3] + Av[1] * (1 + eta[5]);
1211                 Av[0] = (float)t0;
1212                 Av[1] = (float)t1;
1213
1214                 t0 = Av[3] * (1 + eta[2]) + Av[4] * eta[4];
1215                 t1 = Av[3] * eta[3] + Av[4] * (1 + eta[5]);
1216                 Av[3] = (float)t0;
1217                 Av[4] = (float)t1;
1218
1219                 if( eta[0] * eta[0] + eta[1] * eta[1] < criteria.epsilon )
1220                     break;
1221             }
1222
1223             if( pt_status != 0 || l == 0 )
1224             {
1225                 status[i] = (char)pt_status;
1226                 featuresB[i].x = Av[2];
1227                 featuresB[i].y = Av[5];
1228             
1229                 matrices[i*4] = Av[0];
1230                 matrices[i*4+1] = Av[1];
1231                 matrices[i*4+2] = Av[3];
1232                 matrices[i*4+3] = Av[4];
1233             }
1234
1235             if( pt_status && l == 0 && error )
1236             {
1237                 /* calc error */
1238                 double err = 0;
1239
1240                 for( y = 0, k = 0; y < patchSize.height; y++ )
1241                 {
1242                     for( x = 0; x < patchSize.width; x++, k++ )
1243                     {
1244                         double t = patchI[k] - patchJ[k] + meanJ;
1245                         err += t * t;
1246                     }
1247                 }
1248                 error[i] = (float)sqrt(err);
1249             }
1250         }
1251     }
1252 }
1253
1254
1255
1256 static void
1257 icvGetRTMatrix( const CvPoint2D32f* a, const CvPoint2D32f* b,
1258                 int count, CvMat* M, int full_affine )
1259 {
1260     if( full_affine )
1261     {
1262         double sa[36], sb[6];
1263         CvMat A = cvMat( 6, 6, CV_64F, sa ), B = cvMat( 6, 1, CV_64F, sb );
1264         CvMat MM = cvMat( 6, 1, CV_64F, M->data.db );
1265
1266         int i;
1267
1268         memset( sa, 0, sizeof(sa) );
1269         memset( sb, 0, sizeof(sb) );
1270
1271         for( i = 0; i < count; i++ )
1272         {
1273             sa[0] += a[i].x*a[i].x;
1274             sa[1] += a[i].y*a[i].x;
1275             sa[2] += a[i].x;
1276
1277             sa[6] += a[i].x*a[i].y;
1278             sa[7] += a[i].y*a[i].y;
1279             sa[8] += a[i].y;
1280
1281             sa[12] += a[i].x;
1282             sa[13] += a[i].y;
1283             sa[14] += 1;
1284
1285             sb[0] += a[i].x*b[i].x;
1286             sb[1] += a[i].y*b[i].x;
1287             sb[2] += b[i].x;
1288             sb[3] += a[i].x*b[i].y;
1289             sb[4] += a[i].y*b[i].y;
1290             sb[5] += b[i].y;
1291         }
1292
1293         sa[21] = sa[0];
1294         sa[22] = sa[1];
1295         sa[23] = sa[2];
1296         sa[27] = sa[6];
1297         sa[28] = sa[7];
1298         sa[29] = sa[8];
1299         sa[33] = sa[12];
1300         sa[34] = sa[13];
1301         sa[35] = sa[14];
1302
1303         cvSolve( &A, &B, &MM, CV_SVD );
1304     }
1305     else
1306     {
1307         double sa[16], sb[4], m[4], *om = M->data.db;
1308         CvMat A = cvMat( 4, 4, CV_64F, sa ), B = cvMat( 4, 1, CV_64F, sb );
1309         CvMat MM = cvMat( 4, 1, CV_64F, m );
1310
1311         int i;
1312
1313         memset( sa, 0, sizeof(sa) );
1314         memset( sb, 0, sizeof(sb) );
1315
1316         for( i = 0; i < count; i++ )
1317         {
1318             sa[0] += a[i].x*a[i].x + a[i].y*a[i].y;
1319             sa[1] += 0;
1320             sa[2] += a[i].x;
1321             sa[3] += a[i].y;
1322
1323             sa[4] += 0;
1324             sa[5] += a[i].x*a[i].x + a[i].y*a[i].y;
1325             sa[6] += -a[i].y;
1326             sa[7] += a[i].x;
1327
1328             sa[8] += a[i].x;
1329             sa[9] += -a[i].y;
1330             sa[10] += 1;
1331             sa[11] += 0;
1332
1333             sa[12] += a[i].y;
1334             sa[13] += a[i].x;
1335             sa[14] += 0;
1336             sa[15] += 1;
1337
1338             sb[0] += a[i].x*b[i].x + a[i].y*b[i].y;
1339             sb[1] += a[i].x*b[i].y - a[i].y*b[i].x;
1340             sb[2] += b[i].x;
1341             sb[3] += b[i].y;
1342         }
1343
1344         cvSolve( &A, &B, &MM, CV_SVD );
1345
1346         om[0] = om[4] = m[0];
1347         om[1] = -m[1];
1348         om[3] = m[1];
1349         om[2] = m[2];
1350         om[5] = m[3];
1351     }
1352 }
1353
1354
1355 CV_IMPL int
1356 cvEstimateRigidTransform( const CvArr* _A, const CvArr* _B, CvMat* _M, int full_affine )
1357 {
1358     const int COUNT = 15;
1359     const int WIDTH = 160, HEIGHT = 120;
1360     const int RANSAC_MAX_ITERS = 500;
1361     const int RANSAC_SIZE0 = 3;
1362     const double RANSAC_GOOD_RATIO = 0.5;
1363
1364     cv::Ptr<CvMat> sA, sB;
1365     cv::AutoBuffer<CvPoint2D32f> pA, pB;
1366     cv::AutoBuffer<int> good_idx;
1367     cv::AutoBuffer<char> status;
1368     cv::Ptr<CvMat> gray;
1369
1370     CvMat stubA, *A = cvGetMat( _A, &stubA );
1371     CvMat stubB, *B = cvGetMat( _B, &stubB );
1372     CvSize sz0, sz1;
1373     int cn, equal_sizes;
1374     int i, j, k, k1;
1375     int count_x, count_y, count;
1376     double scale = 1;
1377     CvRNG rng = cvRNG(-1);
1378     double m[6]={0};
1379     CvMat M = cvMat( 2, 3, CV_64F, m );
1380     int good_count = 0;
1381     CvRect brect;
1382
1383     if( !CV_IS_MAT(_M) )
1384         CV_Error( _M ? CV_StsBadArg : CV_StsNullPtr, "Output parameter M is not a valid matrix" );
1385
1386     if( !CV_ARE_SIZES_EQ( A, B ) )
1387         CV_Error( CV_StsUnmatchedSizes, "Both input images must have the same size" );
1388
1389     if( !CV_ARE_TYPES_EQ( A, B ) )
1390         CV_Error( CV_StsUnmatchedFormats, "Both input images must have the same data type" );
1391
1392     if( CV_MAT_TYPE(A->type) == CV_8UC1 || CV_MAT_TYPE(A->type) == CV_8UC3 )
1393     {
1394         cn = CV_MAT_CN(A->type);
1395         sz0 = cvGetSize(A);
1396         sz1 = cvSize(WIDTH, HEIGHT);
1397
1398         scale = MAX( (double)sz1.width/sz0.width, (double)sz1.height/sz0.height );
1399         scale = MIN( scale, 1. );
1400         sz1.width = cvRound( sz0.width * scale );
1401         sz1.height = cvRound( sz0.height * scale );
1402
1403         equal_sizes = sz1.width == sz0.width && sz1.height == sz0.height;
1404
1405         if( !equal_sizes || cn != 1 )
1406         {
1407             sA = cvCreateMat( sz1.height, sz1.width, CV_8UC1 );
1408             sB = cvCreateMat( sz1.height, sz1.width, CV_8UC1 );
1409
1410             if( cn != 1 )
1411             {
1412                 gray = cvCreateMat( sz0.height, sz0.width, CV_8UC1 );
1413                 cvCvtColor( A, gray, CV_BGR2GRAY );
1414                 cvResize( gray, sA, CV_INTER_AREA );
1415                 cvCvtColor( B, gray, CV_BGR2GRAY );
1416                 cvResize( gray, sB, CV_INTER_AREA );
1417                 gray.release();
1418             }
1419             else
1420             {
1421                 cvResize( A, sA, CV_INTER_AREA );
1422                 cvResize( B, sB, CV_INTER_AREA );
1423             }
1424            
1425             A = sA;
1426             B = sB;
1427         }
1428
1429         count_y = COUNT;
1430         count_x = cvRound((double)COUNT*sz1.width/sz1.height);
1431         count = count_x * count_y;
1432
1433         pA.allocate(count);
1434         pB.allocate(count);
1435         status.allocate(count);
1436
1437         for( i = 0, k = 0; i < count_y; i++ )
1438             for( j = 0; j < count_x; j++, k++ )
1439             {
1440                 pA[k].x = (j+0.5f)*sz1.width/count_x;
1441                 pA[k].y = (i+0.5f)*sz1.height/count_y;
1442             }
1443
1444         // find the corresponding points in B
1445         cvCalcOpticalFlowPyrLK( A, B, 0, 0, pA, pB, count, cvSize(10,10), 3,
1446                                 status, 0, cvTermCriteria(CV_TERMCRIT_ITER,40,0.1), 0 );
1447
1448         // repack the remained points
1449         for( i = 0, k = 0; i < count; i++ )
1450             if( status[i] )
1451             {
1452                 if( i > k )
1453                 {
1454                     pA[k] = pA[i];
1455                     pB[k] = pB[i];
1456                 }
1457                 k++;
1458             }
1459
1460         count = k;
1461     }
1462     else if( CV_MAT_TYPE(A->type) == CV_32FC2 || CV_MAT_TYPE(A->type) == CV_32SC2 )
1463     {
1464         count = A->cols*A->rows;
1465         CvMat _pA, _pB;
1466         pA.allocate(count);
1467         pB.allocate(count);
1468         _pA = cvMat( A->rows, A->cols, CV_32FC2, pA );
1469         _pB = cvMat( B->rows, B->cols, CV_32FC2, pB );
1470         cvConvert( A, &_pA );
1471         cvConvert( B, &_pB );
1472     }
1473     else
1474         CV_Error( CV_StsUnsupportedFormat, "Both input images must have either 8uC1 or 8uC3 type" );
1475
1476     good_idx.allocate(count);
1477
1478     if( count < RANSAC_SIZE0 )
1479         return 0;
1480     
1481     CvMat _pB = cvMat(1, count, CV_32FC2, pB);    
1482     brect = cvBoundingRect(&_pB, 1);
1483
1484     // RANSAC stuff:
1485     // 1. find the consensus
1486     for( k = 0; k < RANSAC_MAX_ITERS; k++ )
1487     {
1488         int idx[RANSAC_SIZE0];
1489         CvPoint2D32f a[3];
1490         CvPoint2D32f b[3];
1491
1492         memset( a, 0, sizeof(a) );
1493         memset( b, 0, sizeof(b) );
1494
1495         // choose random 3 non-complanar points from A & B
1496         for( i = 0; i < RANSAC_SIZE0; i++ )
1497         {
1498             for( k1 = 0; k1 < RANSAC_MAX_ITERS; k1++ )
1499             {
1500                 idx[i] = cvRandInt(&rng) % count;
1501                 
1502                 for( j = 0; j < i; j++ )
1503                 {
1504                     if( idx[j] == idx[i] )
1505                         break;
1506                     // check that the points are not very close one each other
1507                     if( fabs(pA[idx[i]].x - pA[idx[j]].x) +
1508                         fabs(pA[idx[i]].y - pA[idx[j]].y) < FLT_EPSILON )
1509                         break;
1510                     if( fabs(pB[idx[i]].x - pB[idx[j]].x) +
1511                         fabs(pB[idx[i]].y - pB[idx[j]].y) < FLT_EPSILON )
1512                         break;
1513                 }
1514
1515                 if( j < i )
1516                     continue;
1517
1518                 if( i+1 == RANSAC_SIZE0 )
1519                 {
1520                     // additional check for non-complanar vectors
1521                     a[0] = pA[idx[0]];
1522                     a[1] = pA[idx[1]];
1523                     a[2] = pA[idx[2]];
1524
1525                     b[0] = pB[idx[0]];
1526                     b[1] = pB[idx[1]];
1527                     b[2] = pB[idx[2]];
1528                     
1529                     double dax1 = a[1].x - a[0].x, day1 = a[1].y - a[0].y;
1530                     double dax2 = a[2].x - a[0].x, day2 = a[2].y - a[0].y;
1531                     double dbx1 = b[1].x - b[0].y, dby1 = b[1].y - b[0].y;
1532                     double dbx2 = b[2].x - b[0].x, dby2 = b[2].y - b[0].y;
1533                     const double eps = 0.01;
1534
1535                     if( fabs(dax1*day2 - day1*dax2) < eps*sqrt(dax1*dax1+day1*day1)*sqrt(dax2*dax2+day2*day2) ||
1536                         fabs(dbx1*dby2 - dby1*dbx2) < eps*sqrt(dbx1*dbx1+dby1*dby1)*sqrt(dbx2*dbx2+dby2*dby2) )
1537                         continue;
1538                 }
1539                 break;
1540             }
1541
1542             if( k1 >= RANSAC_MAX_ITERS )
1543                 break;
1544         }
1545
1546         if( i < RANSAC_SIZE0 )
1547             continue;
1548
1549         // estimate the transformation using 3 points
1550         icvGetRTMatrix( a, b, 3, &M, full_affine );
1551
1552         for( i = 0, good_count = 0; i < count; i++ )
1553         {
1554             if( fabs( m[0]*pA[i].x + m[1]*pA[i].y + m[2] - pB[i].x ) +
1555                 fabs( m[3]*pA[i].x + m[4]*pA[i].y + m[5] - pB[i].y ) < MAX(brect.width,brect.height)*0.05 )
1556                 good_idx[good_count++] = i;
1557         }
1558
1559         if( good_count >= count*RANSAC_GOOD_RATIO )
1560             break;
1561     }
1562
1563     if( k >= RANSAC_MAX_ITERS )
1564         return 0;
1565
1566     if( good_count < count )
1567     {
1568         for( i = 0; i < good_count; i++ )
1569         {
1570             j = good_idx[i];
1571             pA[i] = pA[j];
1572             pB[i] = pB[j];
1573         }
1574     }
1575
1576     icvGetRTMatrix( pA, pB, good_count, &M, full_affine );
1577     m[2] /= scale;
1578     m[5] /= scale;
1579     cvConvert( &M, _M );
1580     
1581     return 1;
1582 }
1583
1584 namespace cv
1585 {
1586
1587 Mat estimateRigidTransform( const Mat& A,
1588                             const Mat& B,
1589                             bool fullAffine )
1590 {
1591     Mat M(2, 3, CV_64F);
1592     CvMat _A = A, _B = B, _M = M;
1593     cvEstimateRigidTransform(&_A, &_B, &_M, fullAffine);
1594     return M;
1595 }
1596 }
1597
1598 /* End of file. */