/external/opencv/cvaux/src/ |
_cvvm.h | 144 CvSize imgSize, 150 CvSize imgSize, 156 CvSize imgSize, 165 CvSize imgSize, 171 CvStatus icvGetCrossEpilineFrame( CvSize imgSize, 180 CvSize imgSize, 190 CvSize imgSize, 201 CvSize imgSize, 207 CvSize imgSize, 213 CvSize imgSize, [all...] |
cvscanlines.cpp | 153 CvSize imgSize, 159 error = icvGetCoefficient( matrix, imgSize, scanlines_2, scanlines_1, numlines ); 261 CvSize imgSize, int *scanlines_1, int *scanlines_2, int *numlines ) 278 imgSize, scanlines_1, scanlines_2, numlines ); 309 imgSize, 320 imgSize, scanlines_1, scanlines_2, numlines ); 327 error = icvGetCoefficientDefault( matrix, imgSize, scanlines_1, scanlines_2, numlines ); 336 CvSize imgSize, int *scanlines_1, int *scanlines_2, int *numlines ) 341 *numlines = imgSize.height; 347 for( y = 0; y < imgSize.height; y++ [all...] |
cvcalibfilter.cpp | 74 imgSize = cvSize(0,0); 285 imgSize, points[i], buffer, 290 cameraParams[i].imgSize[0] = (float)imgSize.width; 291 cameraParams[i].imgSize[1] = (float)imgSize.height; 321 imgSize, 386 if( size.width != imgSize.width || size.height != imgSize.height ) 388 imgSize = size [all...] |
cvepilines.cpp | [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
CanvasTransform.java | 125 * @param imgSize the size of the image being scaled 129 public void setSize(int imgSize, int fullSize, int clientSize) { 130 mImgSize = imgSize;
|
/external/opencv/cv/src/ |
cvoptflowbm.cpp | 89 // imgSize, // size of the image 105 int imgStep, CvSize imgSize, 311 NumberBlocksX = (int) imgSize.width / blockSize.width; 312 NumberBlocksY = (int) imgSize.height / blockSize.height; 315 BorderWidth = imgSize.width % blockSize.width; 321 BorderHeight = imgSize.height % blockSize.height; 442 if( Y2 + CurrentHeight >= imgSize.height ) 452 if( X2 + CurrentWidth >= imgSize.width )
|
cvoptflowhs.cpp | 64 // imgSize - size of the source image ROI 89 CvSize imgSize, 107 int imageWidth = imgSize.width; 108 int imageHeight = imgSize.height; 141 if( imgSize.width <= 0 ) 143 if( imgSize.height <= 0 ) 145 if( imgSize.width > imgStep ) 158 MemX[k] = (float *) cvAlloc( (imgSize.height) * sizeof( float )); 162 MemY[k] = (float *) cvAlloc( (imgSize.width) * sizeof( float ));
|
cvlkpyramid.cpp | 46 intersect( CvPoint2D32f pt, CvSize win_size, CvSize imgSize, 62 max_pt->x = MIN( win_size.width, imgSize.width - ipt.x ); 63 max_pt->y = MIN( win_size.height, imgSize.height - ipt.y ); 67 static int icvMinimalPyramidSize( CvSize imgSize ) 69 return cvAlign(imgSize.width,8) * imgSize.height / 3; 91 CvSize imgSize, levelSize; 128 imgSize = cvGetSize(imgA); 130 levelSize = imgSize; 141 assert( pyrBytes <= imgSize.width * imgSize.height * elem_size * 4 / 3 ) [all...] |
cvoptflowlk.cpp | 63 // imgSize, // size of the source image ROI 86 CvSize imgSize, 110 int imageWidth = imgSize.width; 111 int imageHeight = imgSize.height; 203 MemX[k] = (float *) cvAlloc( (imgSize.height) * sizeof( float )); 207 MemY[k] = (float *) cvAlloc( (imgSize.width) * sizeof( float ));
|
cvcalibration.cpp | [all...] |
/external/chromium_org/third_party/skia/third_party/ktx/ |
ktx.cpp | 254 uint32_t imgSize = this->readInt(&buf, &bytesLeft); 257 if (bytesLeft < imgSize) { 266 PixelData pd(buf, imgSize); 272 uint32_t imgSizePadded = (imgSize + 3) & ~3;
|
/external/skia/third_party/ktx/ |
ktx.cpp | 254 uint32_t imgSize = this->readInt(&buf, &bytesLeft); 257 if (bytesLeft < imgSize) { 266 PixelData pd(buf, imgSize); 272 uint32_t imgSizePadded = (imgSize + 3) & ~3;
|
/external/opencv/cvaux/include/ |
cvaux.h | 511 float imgSize[2]; /* size of the camera view, used during calibration */ [all...] |