Home | History | Annotate | Download | only in src

Lines Matching defs:velx

333         int* velx = (int*)velocityX, *vely = (int*)velocityY;
336 velx += velStep, vely += velStep )
341 velx[j] = vx; vely[j] = vy;
423 int VelX = 0;
475 VelX = ss[k].x;
482 VelX = ss[k].x;
488 VelX += ss[k].x;
495 VelX = VelY = 0;
502 VelocityX = VelX * temp;
507 VelocityX = VelX << 16;
530 int* velx = (int*)velocityX, *vely = (int*)velocityY;
533 velx += velStep, vely += velStep )
537 float vx = (float)velx[j]*back, vy = (float)vely[j]*back;
556 // velx, vely - destination image
573 CvMat stubx, *velx = (CvMat*)velarrx;
579 CV_CALL( velx = cvGetMat( velx, &stubx ));
585 if( !CV_ARE_TYPES_EQ( velx, vely ))
589 !CV_ARE_SIZES_EQ( velx, vely ) ||
590 (unsigned)(velx->width*blockSize.width - srcA->width) >= (unsigned)blockSize.width ||
591 (unsigned)(velx->height*blockSize.height - srcA->height) >= (unsigned)blockSize.height )
595 CV_MAT_TYPE( velx->type ) != CV_32FC1 )
599 if( srcA->step != srcB->step || velx->step != vely->step )
605 velx->data.fl, vely->data.fl, velx->step ));