HomeSort by relevance Sort by last modified time
    Searched refs:ConvY (Results 1 - 2 of 2) sorted by null

  /external/opencv/cv/src/
cvoptflowhs.cpp 104 float ConvX, ConvY;
250 ConvY = CONV( imgA[Line3], imgA[Line3], imgA[Line3 + 1] );
252 GradY = (ConvY - MemY[memYline][0]) * 0.125f;
255 MemY[memYline][0] = ConvY;
273 ConvY = CONV( imgA[Line3 + j - 1], imgA[Line3 + j], imgA[Line3 + j + 1] );
275 GradY = (ConvY - MemY[memYline][j]) * 0.125f;
278 MemY[memYline][j] = ConvY;
296 ConvY = CONV( imgA[Line3 + imageWidth - 2], imgA[Line3 + imageWidth - 1],
300 GradY = (ConvY - MemY[memYline][imageWidth - 1]) * 0.125f;
303 MemY[memYline][imageWidth - 1] = ConvY;
    [all...]
cvoptflowlk.cpp 104 float ConvX, ConvY;
306 ConvY = CONV( imgA[Line3], imgA[Line3], imgA[Line3 + 1] );
308 GradY = ConvY - MemY[memYline][0];
311 MemY[memYline][0] = ConvY;
326 ConvY = CONV( imgA[Line3 + j - 1], imgA[Line3 + j], imgA[Line3 + j + 1] );
328 GradY = ConvY - MemY[memYline][j];
331 MemY[memYline][j] = ConvY;
348 ConvY = CONV( imgA[Line3 + imageWidth - 2], imgA[Line3 + imageWidth - 1],
352 GradY = ConvY - MemY[memYline][imageWidth - 1];
355 MemY[memYline][imageWidth - 1] = ConvY;
    [all...]

Completed in 77 milliseconds